/* ════════════════════════════════════════════
   SONETARC GROUP — DESIGN SYSTEM
   World-Class Corporate Website Stylesheet
   ════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
    /* Brand palette */
    --c-navy: #0A2540;
    --c-navy-deep: #061a2f;
    --c-navy-light: #14375c;
    --c-orange: #FF6B35;
    --c-orange-hover: #ff5a1f;
    --c-orange-soft: rgba(255, 107, 53, 0.12);
    --c-emerald: #00B894;
    --c-emerald-soft: rgba(0, 184, 148, 0.12);
    --c-gold: #D4A574;
    --c-white: #FFFFFF;
    --c-cloud: #F7F9FC;
    --c-slate: #6B7280;
    --c-slate-light: #9CA3AF;
    --c-dark: #0F172A;
    --c-line: rgba(10, 37, 64, 0.08);
    --c-line-dark: rgba(255, 255, 255, 0.1);

    /* Type */
    --f-head: 'Plus Jakarta Sans', system-ui, sans-serif;
    --f-body: 'Inter', system-ui, sans-serif;
    --f-display: 'Space Grotesk', system-ui, sans-serif;

    /* Layout */
    --container: 1280px;
    --container-wide: 1440px;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.05);
    --shadow: 0 8px 24px rgba(10, 37, 64, 0.06), 0 2px 4px rgba(10, 37, 64, 0.04);
    --shadow-lg: 0 24px 60px rgba(10, 37, 64, 0.12), 0 4px 8px rgba(10, 37, 64, 0.06);
    --shadow-xl: 0 40px 80px rgba(10, 37, 64, 0.18);

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 200ms;
    --t: 400ms;
    --t-slow: 800ms;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-navy);
    background: var(--c-cloud);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
input, textarea { font: inherit; color: inherit; }

/* ─── ACCESSIBILITY ─── */
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--c-navy); color: var(--c-white);
    padding: 12px 20px; z-index: 10000; border-radius: 0 0 8px 0;
    font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
    outline: 3px solid var(--c-orange);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ─── TYPOGRAPHY HELPERS ─── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-orange);
    margin-bottom: 20px;
}
.section-eyebrow::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--c-orange);
    border-radius: 2px;
}
.eyebrow-light { color: var(--c-orange); }

.section-title {
    font-family: var(--f-head);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--c-navy);
    margin-bottom: 20px;
    max-width: 900px;
}
.section-head-light .section-title { color: var(--c-white); }
.section-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--c-slate);
    max-width: 640px;
    line-height: 1.6;
}
.section-head-light .section-sub { color: rgba(255,255,255,0.75); }

.text-accent { color: var(--c-orange); }
.text-orange { color: var(--c-orange); }

.section-head {
    text-align: center;
    margin: 0 auto 64px;
    max-width: 800px;
}
.section-head .section-eyebrow { justify-content: center; }
.section-head .section-eyebrow::before { display: none; }

/* ─── LAYOUT ─── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1280px) { .container { padding: 0 48px; } }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--t) var(--ease);
    border: 1.5px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform var(--t-slow) var(--ease);
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
    background: var(--c-orange);
    color: var(--c-white);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}
.btn-primary:hover {
    background: var(--c-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 107, 53, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--c-white);
}

.btn-text {
    background: transparent;
    color: var(--c-orange);
    padding: 12px 0;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    transition: all var(--t) var(--ease);
}
.btn-text:hover {
    border-bottom-color: var(--c-orange);
    gap: 12px;
}
.btn-text-light { color: var(--c-white); }
.btn-text-light:hover { border-bottom-color: var(--c-white); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ─── LOADER ─── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--c-navy);
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity 600ms var(--ease), visibility 600ms;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-mark {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
}
.loader-ring {
    transform-origin: center;
    animation: spin 2s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text {
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--c-white);
    margin-bottom: 20px;
}
.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}
.loader-progress {
    height: 100%;
    background: var(--c-orange);
    width: 0;
    animation: load 1.8s var(--ease) forwards;
}
@keyframes load { to { width: 100%; } }

/* ═══════════ NAVIGATION ═══════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: all var(--t) var(--ease);
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--c-line), 0 8px 20px rgba(10, 37, 64, 0.04);
    padding: 12px 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}
.logo-mark { width: 36px; height: 36px; transition: transform var(--t) var(--ease); }
.nav-logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
    font-family: var(--f-head);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.02em;
    color: var(--c-white);
    transition: color var(--t) var(--ease);
}
.logo-sub {
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
    transition: color var(--t) var(--ease);
}
.nav.scrolled .logo-main { color: var(--c-navy); }
.nav.scrolled .logo-sub { color: var(--c-slate); }

.nav-menu { display: none; }
@media (min-width: 1024px) {
    .nav-menu { display: block; }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transition: all var(--t) var(--ease);
    position: relative;
}
.nav.scrolled .nav-link { color: var(--c-navy); }
.nav-link:hover { color: var(--c-orange); }
.nav-link .chev { transition: transform var(--t) var(--ease); }
.has-mega:hover .nav-link .chev,
.has-mega.active .nav-link .chev { transform: rotate(180deg); }

.nav-cta {
    display: none;
}
@media (min-width: 1024px) {
    .nav-cta { display: inline-flex; }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    padding: 0;
    position: relative;
    z-index: 1001;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all var(--t) var(--ease);
    transform-origin: center;
}
.nav.scrolled .nav-toggle span { background: var(--c-navy); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--c-navy); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--c-navy); }

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--c-white);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--c-line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all var(--t) var(--ease);
    padding: 40px 0;
}
.mega-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.mega-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--c-line);
    transition: all var(--t) var(--ease);
    position: relative;
}
.mega-card:hover {
    border-color: var(--c-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.mega-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--c-orange-soft);
    color: var(--c);
    display: grid;
    place-items: center;
}
.mega-icon svg { width: 22px; height: 22px; }
.mega-name {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--c-navy);
    margin-bottom: 4px;
}
.mega-desc { font-size: 13px; color: var(--c-slate); line-height: 1.5; }
.mega-arrow {
    position: absolute;
    top: 20px; right: 20px;
    color: var(--c-slate-light);
    transition: all var(--t) var(--ease);
}
.mega-card:hover .mega-arrow { color: var(--c-orange); transform: translate(2px, -2px); }
.mega-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--c-line);
    font-size: 13px;
    color: var(--c-slate);
    font-weight: 500;
}
.mega-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-orange);
    font-weight: 600;
}
.mega-all:hover { gap: 10px; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--c-white);
    z-index: 999;
    padding: 88px 32px 32px;
    transition: right var(--t) var(--ease);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-menu.open { right: 0; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }
.mobile-menu-head {
    position: absolute;
    top: 18px; left: 32px; right: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-menu .nav-logo .logo-main,
.mobile-menu .nav-logo .logo-sub { color: var(--c-navy); }
.mobile-menu .nav-logo .logo-sub { color: var(--c-slate); }
.mobile-close {
    width: 40px; height: 40px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--c-navy);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 24px;
}
.mobile-nav a, .mobile-expand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-family: var(--f-head);
    font-size: 22px;
    font-weight: 600;
    color: var(--c-navy);
    border-bottom: 1px solid var(--c-line);
    text-align: left;
    width: 100%;
}
.mobile-nav a:hover, .mobile-expand:hover { color: var(--c-orange); }
.mobile-sub {
    display: none;
    flex-direction: column;
    padding: 8px 0 16px 16px;
    border-bottom: 1px solid var(--c-line);
}
.mobile-sub.open { display: flex; }
.mobile-sub a {
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: none;
    color: var(--c-slate);
}
.mobile-cta {
    margin-top: 24px;
    width: 100%;
}
.mobile-contact {
    margin-top: auto;
    padding-top: 32px;
    font-size: 13px;
    color: var(--c-slate);
    line-height: 1.8;
}

/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--c-white);
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--c-navy);
}
.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1611348586804-61bf6c080437?auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.75) 40%, rgba(0, 184, 148, 0.2) 100%),
        linear-gradient(to bottom, rgba(10, 37, 64, 0.3) 0%, rgba(10, 37, 64, 0.9) 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1' d='M0 40 Q 20 20 40 40 T 80 40'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1' d='M0 20 Q 20 0 40 20 T 80 20 M0 60 Q 20 40 40 60 T 80 60'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    opacity: 0.6;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 12s ease-in-out infinite;
}
.hero-glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--c-orange), transparent 70%);
    top: -100px; right: -100px;
}
.hero-glow-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--c-emerald), transparent 70%);
    bottom: -200px; left: -200px;
    animation-delay: -6s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .hero-container { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--c-orange);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}
.eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--c-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.hero-headline {
    font-family: var(--f-head);
    font-size: clamp(40px, 7vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--c-white);
}
.hero-headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: wordUp 1s var(--ease) forwards;
    margin-right: 0.2em;
}
.hero-headline .word:nth-child(1) { animation-delay: 0.1s; }
.hero-headline .word:nth-child(2) { animation-delay: 0.25s; }
.hero-headline .word:nth-child(3) { animation-delay: 0.4s; }
.hero-headline .word:nth-child(4) { animation-delay: 0.55s; }
@keyframes wordUp {
    to { opacity: 1; transform: translateY(0); }
}
.hero-headline .highlight {
    background: linear-gradient(120deg, var(--c-orange), var(--c-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero-rotator {
    font-size: clamp(15px, 1.4vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.6;
}
.rotator-static {
    display: block;
    font-weight: 700;
    color: var(--c-white);
    font-family: var(--f-head);
    margin-bottom: 8px;
    font-size: clamp(18px, 1.8vw, 22px);
}
.rotator-dynamic {
    position: relative;
    height: 1.6em;
    overflow: hidden;
    display: block;
}
.rotator-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 600ms var(--ease);
}
.rotator-item.active { opacity: 1; transform: translateY(0); }
.rotator-item.leaving { opacity: 0; transform: translateY(-20px); }

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 600px;
}
.meta-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.meta-item strong {
    color: var(--c-white);
    font-weight: 700;
    margin-right: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
}
.meta-divider {
    width: 4px; height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}
.stat-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all var(--t) var(--ease);
    opacity: 0;
    transform: translateY(20px);
    animation: cardUp 1s var(--ease) forwards;
}
.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-4px);
}
.stat-card-1 { animation-delay: 0.7s; }
.stat-card-2 { animation-delay: 0.85s; }
.stat-card-3 { animation-delay: 1s; }
.stat-card-4 { animation-delay: 1.15s; }
@keyframes cardUp {
    to { opacity: 1; transform: translateY(0); }
}
.stat-num {
    font-family: var(--f-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--c-orange);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}
.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    line-height: 1.4;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
@media (max-width: 768px) { .hero-scroll { display: none; } }
.scroll-line {
    width: 1px; height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.scroll-dot {
    position: absolute;
    width: 1px; height: 16px;
    background: var(--c-orange);
    top: 0;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -16px; }
    100% { top: 60px; }
}

/* ═══════════ TRUST STRIP ═══════════ */
.trust-strip {
    padding: 60px 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-line);
    overflow: hidden;
}
.trust-title {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-slate);
    margin-bottom: 40px;
}
.trust-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.trust-track {
    display: flex;
    gap: 80px;
    animation: scroll 40s linear infinite;
    width: max-content;
}
.trust-logo {
    font-family: var(--f-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--c-slate);
    opacity: 0.5;
    white-space: nowrap;
    transition: opacity var(--t) var(--ease);
    letter-spacing: 0.05em;
}
.trust-logo:hover { opacity: 1; color: var(--c-navy); }
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ═══════════ ABOUT INTRO ═══════════ */
.about-intro {
    padding: 120px 0;
    background: var(--c-cloud);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}
@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1.1fr 1fr; gap: 100px; }
}
.about-headline {
    font-family: var(--f-head);
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 32px;
}
.about-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.about-point {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--c-line);
    opacity: 0;
    transform: translateY(20px);
    transition: all 800ms var(--ease);
}
.about-point:last-child { border-bottom: 1px solid var(--c-line); }
.about-point.revealed {
    opacity: 1;
    transform: translateY(0);
}
.about-num {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--c-orange);
    flex-shrink: 0;
    padding-top: 2px;
}
.about-point h4 {
    font-family: var(--f-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 6px;
}
.about-point p {
    font-size: 15px;
    color: var(--c-slate);
    line-height: 1.6;
}

/* ═══════════ BUSINESSES ═══════════ */
.businesses {
    padding: 120px 0;
    background: var(--c-white);
}
.biz-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) { .biz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .biz-grid { grid-template-columns: repeat(3, 1fr); } }

.biz-card {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    background: var(--c-white);
    border: 1px solid var(--c-line);
    overflow: hidden;
    transition: all var(--t) var(--ease);
    opacity: 0;
    transform: translateY(40px);
}
.biz-card.revealed {
    opacity: 1;
    transform: translateY(0);
}
.biz-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.biz-card-inner {
    position: relative;
    z-index: 2;
    padding: 36px 28px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.biz-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}
.biz-icon {
    width: 56px; height: 56px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(212, 165, 116, 0.12));
    border-radius: var(--radius);
    color: var(--c-navy);
    transition: all var(--t) var(--ease);
}
.biz-card:hover .biz-icon {
    background: linear-gradient(135deg, var(--c-orange), var(--c-gold));
    color: var(--c-white);
    transform: rotate(-6deg) scale(1.05);
}
.biz-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-slate);
    text-align: right;
    line-height: 1.4;
}
.biz-name {
    font-family: var(--f-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.biz-desc {
    font-size: 15px;
    color: var(--c-slate);
    line-height: 1.55;
    margin-bottom: 24px;
    flex-grow: 1;
}
.biz-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-orange);
    transition: gap var(--t) var(--ease);
}
.biz-card:hover .biz-link { gap: 10px; }
.biz-card-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.04), transparent);
    opacity: 0;
    transition: opacity var(--t) var(--ease);
}
.biz-card:hover .biz-card-glow { opacity: 1; }

/* ═══════════ IMPACT NUMBERS ═══════════ */
.impact {
    position: relative;
    padding: 120px 0;
    background: var(--c-navy);
    color: var(--c-white);
    overflow: hidden;
}
.impact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 184, 148, 0.15), transparent 50%);
}
.impact-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1' d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}
.impact .section-eyebrow { color: var(--c-orange); }
.impact .container { position: relative; z-index: 1; }
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
}
@media (min-width: 768px) { .impact-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .impact-grid { grid-template-columns: repeat(6, 1fr); } }
.impact-stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 800ms var(--ease);
}
.impact-stat.revealed { opacity: 1; transform: translateY(0); }
.impact-num {
    font-family: var(--f-display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    color: var(--c-white);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, var(--c-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.impact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ═══════════ SUSTAINABILITY ═══════════ */
.sustainability {
    padding: 120px 0;
    background: var(--c-cloud);
}
.sustain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) { .sustain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sustain-grid { grid-template-columns: repeat(4, 1fr); } }

.sustain-card {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--t) var(--ease);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.sustain-card.revealed { opacity: 1; transform: translateY(0); }
.sustain-card:nth-child(1) { transition-delay: 0s; }
.sustain-card:nth-child(2) { transition-delay: 0.05s; }
.sustain-card:nth-child(3) { transition-delay: 0.1s; }
.sustain-card:nth-child(4) { transition-delay: 0.15s; }
.sustain-card:nth-child(5) { transition-delay: 0.2s; }
.sustain-card:nth-child(6) { transition-delay: 0.25s; }
.sustain-card:nth-child(7) { transition-delay: 0.3s; }

.sustain-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--c-orange), var(--c-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t) var(--ease);
}
.sustain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.sustain-card:hover::before { transform: scaleX(1); }

.sustain-num {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--c-orange);
    letter-spacing: 0.05em;
}
.sustain-icon {
    width: 56px; height: 56px;
    margin: 16px 0 20px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(0, 184, 148, 0.08));
    border-radius: var(--radius);
    color: var(--c-navy);
    transition: all var(--t) var(--ease);
}
.sustain-card:hover .sustain-icon {
    background: linear-gradient(135deg, var(--c-orange), var(--c-emerald));
    color: var(--c-white);
}
.sustain-icon svg { width: 100%; height: 100%; }
.sustain-card h3 {
    font-family: var(--f-head);
    font-size: 19px;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.sustain-card p {
    font-size: 14px;
    color: var(--c-slate);
    line-height: 1.55;
}

/* ═══════════ WHY CHOOSE ═══════════ */
.why-choose {
    padding: 120px 0;
    background: var(--c-white);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}
@media (min-width: 1024px) {
    .why-grid { grid-template-columns: 1fr 1.4fr; gap: 80px; }
}
.why-intro .section-title { margin-bottom: 24px; }
.why-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .why-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1023px) {
    .why-intro { text-align: center; max-width: 600px; margin: 0 auto; }
}
.why-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--c-cloud);
    transition: all var(--t) var(--ease);
    opacity: 0;
    transform: translateY(30px);
}
.why-card.revealed { opacity: 1; transform: translateY(0); }
.why-card:hover {
    background: var(--c-white);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.why-icon {
    width: 72px; height: 72px;
    margin-bottom: 20px;
    color: var(--c-orange);
}
.why-card:nth-child(2) .why-icon { color: var(--c-emerald); }
.why-card:nth-child(3) .why-icon { color: var(--c-gold); }
.why-card h3 {
    font-family: var(--f-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: var(--c-slate);
    line-height: 1.6;
}

/* ═══════════ CASE STUDIES ═══════════ */
.case-studies {
    padding: 120px 0;
    background: var(--c-cloud);
}
.case-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .case-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .case-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.case-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: all var(--t) var(--ease);
    opacity: 0;
    transform: translateY(30px);
}
@media (min-width: 1024px) {
    .case-card-lg { min-height: 540px; grid-row: span 1; }
}
.case-card.revealed { opacity: 1; transform: translateY(0); }
.case-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease);
}
.case-card:hover .case-bg { transform: scale(1.08); }
.case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 37, 64, 0.6) 40%, rgba(10, 37, 64, 0.95) 100%);
}
.case-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: var(--c-white);
    width: 100%;
}
.case-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.5);
    color: var(--c-orange);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.case-card h3 {
    font-family: var(--f-head);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}
.case-card-lg h3 { font-size: clamp(24px, 2.4vw, 32px); }
.case-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 480px;
}
.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-orange);
    transition: gap var(--t) var(--ease);
}
.case-card:hover .case-link { gap: 10px; }
.case-foot {
    text-align: center;
    margin-top: 48px;
}

/* ═══════════ NEWSROOM ═══════════ */
.newsroom {
    padding: 120px 0;
    background: var(--c-white);
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-line);
    transition: all var(--t) var(--ease);
    opacity: 0;
    transform: translateY(30px);
}
.news-card.revealed { opacity: 1; transform: translateY(0); }
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.news-img {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.news-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease);
}
.news-card:hover .news-img-bg { transform: scale(1.06); }
.news-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.3));
}
.news-body { padding: 24px 24px 28px; }
.news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-slate);
}
.news-cat {
    color: var(--c-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.news-dot { opacity: 0.4; }
.news-card h3 {
    font-family: var(--f-head);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color var(--t) var(--ease);
}
.news-card h3 a:hover { color: var(--c-orange); }
.news-card p {
    font-size: 14px;
    color: var(--c-slate);
    line-height: 1.6;
    margin-bottom: 16px;
}
.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-orange);
    transition: gap var(--t) var(--ease);
}
.news-card:hover .news-link { gap: 10px; }
.news-foot { text-align: center; margin-top: 48px; }

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
    padding: 120px 0;
    background: var(--c-cloud);
    overflow: hidden;
}
.testimonial-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}
.testimonial-wrap.revealed { opacity: 1; transform: translateY(0); transition: all 1s var(--ease); }

.testimonial-track {
    position: relative;
    min-height: 360px;
}
.testimonial-slide {
    position: absolute;
    inset: 0;
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 60px 60px 48px;
    border: 1px solid var(--c-line);
    opacity: 0;
    transform: translateX(40px);
    transition: all 800ms var(--ease);
    pointer-events: none;
}
@media (max-width: 768px) { .testimonial-slide { padding: 40px 28px; } }
.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}
.testimonial-slide.leaving { transform: translateX(-40px); }
.quote-mark {
    position: absolute;
    top: 32px; left: 32px;
    width: 80px; height: 64px;
    color: var(--c-orange);
}
.testimonial-slide blockquote {
    font-family: var(--f-head);
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.4;
    font-weight: 500;
    color: var(--c-navy);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    padding-top: 32px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.author-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--c-white);
    box-shadow: 0 0 0 2px var(--c-orange);
}
.author-info { flex: 1; min-width: 180px; }
.author-info strong {
    display: block;
    font-family: var(--f-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--c-navy);
}
.author-info span {
    font-size: 13px;
    color: var(--c-slate);
}
.author-tag {
    padding: 6px 12px;
    background: var(--c-orange-soft);
    color: var(--c-orange);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}
.t-arrow {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    display: grid;
    place-items: center;
    color: var(--c-navy);
    transition: all var(--t) var(--ease);
}
.t-arrow:hover {
    background: var(--c-orange);
    border-color: var(--c-orange);
    color: var(--c-white);
    transform: scale(1.05);
}
.t-dots {
    display: flex;
    gap: 8px;
}
.t-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-line);
    transition: all var(--t) var(--ease);
    cursor: pointer;
}
.t-dot.active {
    background: var(--c-orange);
    width: 24px;
    border-radius: 4px;
}

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
    position: relative;
    padding: 120px 0;
    color: var(--c-white);
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.4), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(0, 184, 148, 0.3), transparent 60%),
        linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
}
.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
}
.cta-container { position: relative; z-index: 1; }
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.cta-content h2 {
    font-family: var(--f-head);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--c-white);
    margin: 20px 0 24px;
}
.cta-content p {
    font-size: clamp(16px, 1.6vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
    background: var(--c-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr; gap: 40px; } }

.footer-brand { max-width: 360px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-logo .logo-main { color: var(--c-white); }
.footer-logo .logo-sub { color: rgba(255, 255, 255, 0.5); }
.footer-tag {
    font-family: var(--f-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 16px;
}
.footer-about {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--t) var(--ease);
}
.footer-social a:hover {
    background: var(--c-orange);
    color: var(--c-white);
    transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: var(--c-orange); }

.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 14px;
    color: var(--c-white);
    transition: all var(--t) var(--ease);
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-form input:focus {
    outline: none;
    border-color: var(--c-orange);
    background: rgba(255, 255, 255, 0.1);
}
.newsletter-form button {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--c-orange);
    color: var(--c-white);
    display: grid;
    place-items: center;
    transition: all var(--t) var(--ease);
    flex-shrink: 0;
}
.newsletter-form button:hover {
    background: var(--c-orange-hover);
    transform: scale(1.05);
}
.newsletter-success {
    font-size: 13px;
    color: var(--c-emerald);
    margin-top: -20px;
    margin-bottom: 32px;
    display: none;
}
.newsletter-success.show { display: block; }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}
.contact-item svg { color: var(--c-orange); flex-shrink: 0; }

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom-links a:hover { color: var(--c-orange); }

/* ═══════════ COOKIE BANNER ═══════════ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 1000;
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 20px 24px;
    transform: translateY(150%);
    transition: transform var(--t) var(--ease);
    max-width: 560px;
    margin-left: auto;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-content p {
    font-size: 13px;
    color: var(--c-slate);
    line-height: 1.5;
    flex: 1;
    min-width: 240px;
}
.cookie-buttons { display: flex; gap: 8px; }

/* ═══════════ REVEAL ANIMATION ═══════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1000ms var(--ease), transform 1000ms var(--ease);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ SUBSIDIARY PAGE ═══════════ */
.sub-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--c-navy);
    color: var(--c-white);
    overflow: hidden;
}
.sub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.3), transparent 50%);
}
.sub-hero .container { position: relative; z-index: 1; }
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}
.breadcrumb a { color: var(--c-orange); }
.breadcrumb-sep { opacity: 0.5; }
.group-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.sub-headline {
    font-family: var(--f-head);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--c-white);
    max-width: 900px;
}
.sub-sub {
    font-size: clamp(16px, 1.6vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-top: 24px;
    line-height: 1.6;
}

/* Responsive helpers */
@media (max-width: 1023px) {
    section { padding: 80px 0 !important; }
    .hero { padding: 120px 0 60px !important; }
}
@media (max-width: 640px) {
    .hero-meta { gap: 12px; }
    .meta-divider { display: none; }
}
