* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal: #4ECDC4;
    --teal-dark: #3BAFA8;
    --teal-soft: rgba(78, 205, 196, 0.08);
    --teal-glow: rgba(78, 205, 196, 0.15);
    --dark: #1a2332;
    --darker: #111820;
    --darkest: #0c1219;
    --text: #374151;
    --text-muted: #6b7280;
    --bg: #f0f2f5;
    --bg-card: #f7f8fa;
    --white: #ffffff;
    --border: #dfe3e8;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --max-w: 1440px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 48px;
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

/* ========================================
   NAV
   ======================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 80px;
    background: rgba(240,242,245,0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.logo-footer .logo-img {
    height: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-menu a {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all var(--transition);
}

.nav-menu a:hover {
    color: var(--dark);
    background: rgba(0,0,0,0.04);
}

.nav-cta {
    background: var(--dark) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--darker) !important;
}

.nav-active {
    color: var(--dark) !important;
    font-weight: 700 !important;
}

.nav-cta.nav-active {
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: var(--dark);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, var(--teal-glow) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(78,205,196,0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    padding: 0 48px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(78,205,196,0.12);
    border: 1px solid rgba(78,205,196,0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.hero--banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero--banner .hero-overlay {
    background: linear-gradient(180deg, rgba(12,18,25,0.6) 0%, rgba(12,18,25,0.45) 50%, rgba(12,18,25,0.65) 100%);
}

.hero--banner .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1.5px;
    max-width: 800px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-accent {
    background: var(--teal);
    color: var(--darkest);
}

.btn-accent:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(78,205,196,0.3);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: var(--darker);
    transform: translateY(-1px);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 88px 0;
}

.section-alt {
    background: var(--white);
}

.section-dark {
    background: var(--dark);
    color: #fff;
}

.section-accent-soft {
    background: var(--teal-soft);
}

.section-intro {
    margin-bottom: 48px;
    max-width: 680px;
}

.section-intro.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-intro--light h2,
.section-intro--light .intro-sub {
    color: #fff;
}

.section-intro--light .intro-sub {
    color: rgba(255,255,255,0.6);
}

.tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--teal-dark);
    margin-bottom: 14px;
}

.tag-light { color: rgba(78,205,196,0.7); }
.tag-dark { color: var(--teal-dark); }

h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-dark h2 { color: #fff; }

.intro-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 8px;
}

/* ========================================
   CONTENT BLOCKS (bordered containers)
   ======================================== */
.content-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
}

/* ========================================
   PAGE HEROES (sub-pages)
   ======================================== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, var(--teal-glow) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(78,205,196,0.06) 0%, transparent 50%);
}

.page-hero-content {
    position: relative;
    max-width: 780px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 600px;
}

.page-hero--short {
    padding: 150px 0 64px;
}

.page-hero--accent {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.page-hero--accent h1 {
    color: var(--dark);
}

.page-hero-sub-dark {
    color: var(--text-muted) !important;
}

.page-hero--banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.page-hero--banner .hero-overlay {
    background:
        linear-gradient(135deg, rgba(12,18,25,0.88) 0%, rgba(26,35,50,0.75) 50%, rgba(26,35,50,0.65) 100%),
        radial-gradient(ellipse at 60% 40%, var(--teal-glow) 0%, transparent 55%);
}

.page-hero--banner p {
    color: rgba(255,255,255,0.7);
}

/* ========================================
   TEASERS (homepage)
   ======================================== */
.teasers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.teaser-card {
    display: flex;
    flex-direction: column;
    padding: 40px 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}

.teaser-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.teaser-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-soft);
    border-radius: 12px;
    color: var(--teal-dark);
    margin-bottom: 20px;
}

.teaser-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.teaser-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

.teaser-link {
    margin-top: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-dark);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: inherit;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.cta-banner:not(.section-dark) .cta-content h2 {
    color: var(--dark);
}

.cta-banner:not(.section-dark) .cta-content p {
    color: var(--text-muted);
}

/* ========================================
   SPLIT LAYOUT (shared)
   ======================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.split-visual {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.split-text-content h2 {
    margin-bottom: 20px;
}

.split-text-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: var(--radius);
    color: #94a3b8;
}

.img-placeholder--large {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #dfe3e8 0%, #cdd3db 100%);
}

.img-placeholder span {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.split-img {
    width: 100%;
    max-height: 320px;
    border-radius: var(--radius);
    object-fit: contain;
    display: block;
    margin-top: 80px;
}

/* ========================================
   FEATURES (solution page)
   ======================================== */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-soft);
    border-radius: 10px;
    color: var(--teal-dark);
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.feature-card .feature-icon { margin-bottom: 16px; }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ========================================
   STEPS
   ======================================== */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
}

.step {
    flex: 1;
    text-align: center;
    max-width: 260px;
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--teal-soft);
    color: var(--teal-dark);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    color: var(--dark);
    padding-top: 40px;
}

/* ========================================
   CHECKLIST
   ======================================== */
.checklist {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-item svg {
    flex-shrink: 0;
    color: var(--teal-dark);
}

.check-item span {
    font-size: 0.9rem;
    color: var(--text);
}

.section-dark .check-item span {
    color: rgba(255,255,255,0.7);
}

.section-dark .check-item svg {
    color: rgba(255,255,255,0.4);
}

/* ========================================
   VALUE CARDS (operators page)
   ======================================== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 72px;
}

.value-card {
    padding: 40px 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.value-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-soft);
    border-radius: 12px;
    color: var(--teal-dark);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ========================================
   COMMITMENT (operators page)
   ======================================== */
.commitment-block {
    padding: 56px;
    background: var(--dark);
    border-radius: var(--radius);
}

.commitment-block h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 36px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.commitment-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.commitment-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.commitment-item p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.commitment-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.commitment-card {
    padding: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
}

.commitment-card .commitment-number {
    display: inline-block;
    margin-bottom: 12px;
}

.commitment-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.commitment-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ========================================
   ABOUT STATS
   ======================================== */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-stat-card {
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}

.about-stat-card .about-stat-number,
.about-stat .about-stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -2px;
    line-height: 1;
}

.about-stat-card .about-stat-unit,
.about-stat .about-stat-unit {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    margin-bottom: 12px;
}

.about-stat-card p,
.about-stat p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   MISSION CARDS
   ======================================== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mission-card {
    padding: 40px 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.mission-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   PARTNER CARDS
   ======================================== */
.partner-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-card {
    padding: 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
}

.partner-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.partner-card > span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.partner-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    line-height: 1.6;
}

/* ========================================
   SUSTAIN PILLARS
   ======================================== */
.sustain-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-soft);
    border-radius: 14px;
    color: var(--teal-dark);
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.pillar-card p:last-child { margin-bottom: 0; }

/* ========================================
   SUSTAIN ITEMS (inline)
   ======================================== */
.sustain-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sustain-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.sustain-item svg {
    flex-shrink: 0;
    color: var(--teal-dark);
    margin-top: 2px;
}

.sustain-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.sustain-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info-side h2 {
    margin-bottom: 16px;
}

.contact-info-side > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-block h4 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-block p,
.contact-block a {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}

.contact-block a:hover {
    color: var(--teal-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    background: var(--bg);
    outline: none;
    color: var(--dark);
    transition: all var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--teal-soft);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .btn {
    align-self: flex-start;
}

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.contact-note h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-note ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-note li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.contact-note li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--teal);
    border-radius: 50%;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
    max-width: 800px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 56px;
}

.legal-updated {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.15rem;
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 8px 0 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-content li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.legal-content a {
    color: var(--teal-dark);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darkest);
    color: rgba(255,255,255,0.5);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h5 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--teal); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-note { font-style: italic; }

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .split-layout { grid-template-columns: 1fr; gap: 48px; }
    .sustain-pillars { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .nav-inner { padding: 0 32px; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px; left: 0; right: 0;
        background: rgba(240,242,245,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active { display: flex; }
    .nav-toggle { display: flex; }
    .nav-inner { padding: 0 24px; }

    .nav-cta { text-align: center; margin-top: 8px; }

    .hero { padding: 130px 24px 72px; }
    .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-content { padding: 0; }

    .value-grid { grid-template-columns: 1fr; }
    .commitment-grid { grid-template-columns: 1fr; }
    .commitment-block { padding: 36px 28px; }

    .teasers-grid { grid-template-columns: 1fr; }
    .features-grid-4 { grid-template-columns: 1fr; }
    .about-stats-row { grid-template-columns: 1fr; gap: 16px; }
    .mission-grid { grid-template-columns: 1fr; }
    .commitment-grid-full { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }
    .page-hero { padding: 130px 0 60px; }

    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-form { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .section { padding: 80px 0; }
    .content-block { padding: 32px; }
}
