/* ==========================================================
   TURNA — PREMIUM EDITORIAL × GLASSMORPHISM × BENTO
   ========================================================== */

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ===== Tokens — Sky Blue · Paper · Red Accent ===== */
:root {
    --navy: #0F2E4D;          /* deep blue navy (primary dark) */
    --navy-2: #154E7A;        /* deep clean blue */
    --navy-3: #1E6BA3;        /* mid blue */
    --cream: #FAFAFA;         /* off-white paper */
    --cream-2: #FFFFFF;       /* pure white */
    --cream-3: #F0F6FB;       /* subtle blue-tinted paper */
    --coral: #E63946;         /* signature red (logo beak) — used sparingly */
    --coral-dark: #C42836;
    --gold: #2D8BCB;          /* unified accent — clean blue replaces gold */
    --gold-light: #6BB1E1;    /* lighter blue for gradients */

    /* Sky / Cloud cleaning palette */
    --sky-50:  #F4FAFE;
    --sky-100: #E6F2FB;
    --sky-200: #CFE6F7;
    --sky-300: #A8D2EF;
    --sky-400: #6BB1E1;
    --sky-500: #2D8BCB;
    --sky-600: #1E6BA3;
    --sky-700: #154E7A;
    --sky-800: #0F2E4D;

    --text: #0F2E4D;
    --text-light: #4A6783;
    --text-muted: #7A93AB;
    --line: rgba(45, 139, 203, .14);
    --line-light: rgba(255, 255, 255, .18);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --shadow-sm: 0 1px 2px rgba(11, 24, 48, .06);
    --shadow: 0 6px 24px -6px rgba(11, 24, 48, .12);
    --shadow-md: 0 14px 40px -10px rgba(11, 24, 48, .18);
    --shadow-lg: 0 30px 60px -20px rgba(11, 24, 48, .25);
    --shadow-xl: 0 40px 80px -20px rgba(11, 24, 48, .35);
    --shadow-coral: 0 14px 40px -10px rgba(230, 57, 70, .45);

    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --t: .4s var(--ease);

    --container: 1320px;
    --serif: 'Fraunces', 'Times New Roman', serif;
    --sans: 'Inter', system-ui, sans-serif;
}

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Noise overlay ===== */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .01em;
    transition: var(--t);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--coral);
    color: #fff;
    box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 50px -10px rgba(230, 57, 70, .65);
}
.btn-primary svg { transition: transform .3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245, 239, 224, .25);
}
.btn-outline:hover {
    background: var(--cream);
    color: var(--navy);
    border-color: var(--cream);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: transparent;
}
.btn-ghost:hover { color: var(--coral); }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--t);
    padding: 16px 0;
}
.header.scrolled {
    background: rgba(245, 239, 224, .85);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 56px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    border-radius: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    padding-left: 14px;
    border-left: 1px solid var(--line);
}
.logo-name {
    display: none; /* logo image already contains TURNA wordmark */
}
.logo-sub {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 90px;
}
/* Footer logo on light bg */
.footer .logo-text { border-left-color: var(--line); }
/* Header scrolled state — same */

.nav-list {
    display: flex;
    gap: 4px;
    background: rgba(11, 24, 48, .04);
    padding: 6px;
    border-radius: 999px;
    border: 1px solid var(--line);
}
.nav-link {
    display: block;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--t);
}
.nav-link:hover { color: var(--navy); }
.nav-link.active {
    background: var(--navy);
    color: var(--cream);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(11, 24, 48, .06);
    gap: 5px;
    padding: 0 12px;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--t);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Eyebrow ===== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 28px;
}
.eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--coral);
    display: inline-block;
}
.eyebrow-dark { color: var(--navy); }
.eyebrow-dark .eyebrow-line { background: var(--gold); }
.eyebrow-light { color: #FFFFFF; }
.eyebrow-light .eyebrow-line { background: rgba(255, 255, 255, .8); }

/* ===== HERO — Clean Sky / Cloud Theme ===== */
:root {
    --sky-50:  #F4FAFE;   /* almost white sky */
    --sky-100: #E6F2FB;   /* very light sky */
    --sky-200: #CFE6F7;   /* light sky */
    --sky-300: #A8D2EF;   /* mid sky */
    --sky-400: #6BB1E1;   /* clear blue */
    --sky-500: #2D8BCB;   /* deep clean blue */
    --sky-600: #1E6BA3;   /* navy-ish blue */
    --sky-700: #154E7A;   /* deep blue text */
}

.hero {
    position: relative;
    background:
        radial-gradient(140% 80% at 50% 0%, #FFFFFF 0%, var(--sky-50) 35%, var(--sky-100) 70%, var(--sky-200) 100%);
    color: var(--sky-700);
    padding: 140px 0 0;
    overflow: hidden;
    isolation: isolate;
}

/* Soft sky gradient overlay for depth */
.hero-sky {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(60% 40% at 80% 10%, rgba(168, 210, 239, .55) 0%, transparent 60%),
        radial-gradient(50% 35% at 15% 25%, rgba(207, 230, 247, .7) 0%, transparent 65%),
        radial-gradient(45% 30% at 60% 90%, rgba(107, 177, 225, .25) 0%, transparent 70%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(30, 107, 163, .05) 1px, transparent 0);
    background-size: 28px 28px;
}

/* ----- Floating clouds ----- */
.hero-clouds {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.cloud {
    position: absolute;
    background: #fff;
    border-radius: 100px;
    filter: blur(2px);
    opacity: .85;
}
.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 50%;
}
.cloud-1 {
    width: 220px; height: 60px;
    top: 12%; left: -50px;
    opacity: .6;
    animation: cloud-drift 38s linear infinite;
}
.cloud-1::before { width: 100px; height: 100px; top: -45px; left: 30px; }
.cloud-1::after  { width: 80px;  height: 80px;  top: -32px; right: 40px; }

.cloud-2 {
    width: 280px; height: 70px;
    top: 65%; right: -80px;
    opacity: .5;
    animation: cloud-drift-rev 52s linear infinite;
}
.cloud-2::before { width: 130px; height: 130px; top: -60px; left: 60px; }
.cloud-2::after  { width: 90px;  height: 90px;  top: -38px; right: 50px; }

.cloud-3 {
    width: 160px; height: 45px;
    top: 38%; left: 8%;
    opacity: .35;
    animation: cloud-drift 60s linear infinite;
    animation-delay: -20s;
}
.cloud-3::before { width: 70px; height: 70px; top: -30px; left: 22px; }
.cloud-3::after  { width: 55px; height: 55px; top: -22px; right: 28px; }

.cloud-4 {
    width: 200px; height: 55px;
    top: 82%; left: 35%;
    opacity: .4;
    animation: cloud-drift 48s linear infinite;
    animation-delay: -10s;
}
.cloud-4::before { width: 90px; height: 90px; top: -40px; left: 35px; }
.cloud-4::after  { width: 70px; height: 70px; top: -28px; right: 42px; }

@keyframes cloud-drift {
    from { transform: translateX(0); }
    to   { transform: translateX(120vw); }
}
@keyframes cloud-drift-rev {
    from { transform: translateX(0); }
    to   { transform: translateX(-120vw); }
}

/* ----- Realistic soap bubbles ----- */
.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Bubble body: thin iridescent film with translucent center */
.bubble {
    position: absolute;
    border-radius: 50%;
    /* Translucent body with iridescent rim */
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .55) 6%, rgba(255, 255, 255, .15) 14%, transparent 24%),
        radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, .04) 0%,
            rgba(255, 255, 255, .02) 55%,
            rgba(168, 210, 239, .12) 78%,
            rgba(45, 139, 203, .25) 92%,
            rgba(45, 139, 203, .05) 100%);
    box-shadow:
        /* Inner rainbow film hint */
        inset 0 0 8px 1px rgba(186, 230, 253, .35),
        inset -2px -3px 6px rgba(199, 210, 254, .25),
        inset 4px 4px 8px rgba(254, 215, 226, .2),
        /* Outer glow */
        0 4px 18px rgba(45, 139, 203, .18),
        0 1px 3px rgba(45, 139, 203, .12);
    /* Crisp edge */
    border: 1px solid rgba(255, 255, 255, .55);
    opacity: 0;
    animation: bubble-rise 18s ease-in-out infinite, bubble-wobble 4s ease-in-out infinite;
    transform-origin: center;
    will-change: transform, opacity;
}

/* Primary highlight — bright soft spot top-left */
.bubble::before {
    content: '';
    position: absolute;
    top: 12%; left: 18%;
    width: 30%; height: 22%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .4) 50%, transparent 75%);
    border-radius: 50%;
    transform: rotate(-25deg);
    filter: blur(.5px);
    pointer-events: none;
}

/* Secondary glint — small sharp dot bottom-right */
.bubble::after {
    content: '';
    position: absolute;
    bottom: 22%; right: 24%;
    width: 8%; height: 8%;
    background: rgba(255, 255, 255, .85);
    border-radius: 50%;
    filter: blur(.5px);
    box-shadow: 0 0 6px rgba(255, 255, 255, .5);
    pointer-events: none;
}

/* Per-bubble overrides — adds variety in size / position / timing */
.b1 { width: 34px; height: 34px; left: 6%;  bottom: -40px; animation-delay: 0s,   -1.2s; animation-duration: 18s, 5s; }
.b2 { width: 22px; height: 22px; left: 14%; bottom: -40px; animation-delay: 2.5s, -.6s;  animation-duration: 14s, 4.4s; }
.b3 { width: 52px; height: 52px; left: 22%; bottom: -60px; animation-delay: 5s,   -2s;   animation-duration: 22s, 6s; }
.b4 { width: 26px; height: 26px; left: 32%; bottom: -40px; animation-delay: 7s,   -.4s;  animation-duration: 16s, 4.8s; }
.b5 { width: 38px; height: 38px; left: 70%; bottom: -50px; animation-delay: 1s,   -1.6s; animation-duration: 20s, 5.2s; }
.b6 { width: 18px; height: 18px; left: 78%; bottom: -40px; animation-delay: 4s,   -.8s;  animation-duration: 12s, 3.8s; }
.b7 { width: 46px; height: 46px; left: 86%; bottom: -55px; animation-delay: 6.5s, -2.4s; animation-duration: 19s, 5.6s; }
.b8 { width: 28px; height: 28px; left: 92%; bottom: -40px; animation-delay: 9s,   -1s;   animation-duration: 14s, 4.2s; }

/* Slightly different iridescent tint per bubble for realism */
.b2 { box-shadow:
        inset 0 0 8px 1px rgba(252, 211, 232, .4),
        inset -2px -3px 6px rgba(186, 230, 253, .25),
        inset 4px 4px 8px rgba(255, 255, 255, .2),
        0 4px 18px rgba(45, 139, 203, .18); }
.b4 { box-shadow:
        inset 0 0 8px 1px rgba(192, 240, 222, .4),
        inset -2px -3px 6px rgba(199, 210, 254, .3),
        inset 4px 4px 8px rgba(254, 215, 226, .25),
        0 4px 18px rgba(45, 139, 203, .18); }
.b6 { box-shadow:
        inset 0 0 8px 1px rgba(232, 220, 255, .4),
        inset -2px -3px 6px rgba(186, 230, 253, .3),
        inset 4px 4px 8px rgba(255, 224, 224, .22),
        0 4px 18px rgba(45, 139, 203, .18); }

/* Rising path with gentle horizontal drift */
@keyframes bubble-rise {
    0%   { transform: translateY(0) translateX(0) scale(.5); opacity: 0; }
    8%   { opacity: .85; }
    25%  { transform: translateY(-25vh) translateX(18px) scale(1); }
    50%  { transform: translateY(-55vh) translateX(-14px) scale(1.02); opacity: .95; }
    75%  { transform: translateY(-80vh) translateX(22px) scale(1); opacity: .85; }
    95%  { opacity: .35; }
    100% { transform: translateY(-110vh) translateX(-10px) scale(.85); opacity: 0; }
}

/* Subtle organic wobble (squash/stretch like a real bubble) */
@keyframes bubble-wobble {
    0%, 100% { border-radius: 50% 50% 50% 50%; }
    25%      { border-radius: 52% 48% 49% 51%; }
    50%      { border-radius: 49% 51% 52% 48%; }
    75%      { border-radius: 51% 49% 48% 52%; }
}

@media (prefers-reduced-motion: reduce) {
    .cloud, .bubble { animation: none; }
    .bubble { opacity: .55; }
}

/* ----- Reusable bubble container for any blue section ----- */
.section-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.section-bubbles .bubble {
    /* Bright iridescent shadows for darker blue backgrounds */
    box-shadow:
        inset 0 0 10px 1px rgba(186, 230, 253, .55),
        inset -2px -3px 7px rgba(199, 210, 254, .4),
        inset 4px 4px 10px rgba(254, 215, 226, .3),
        0 4px 22px rgba(255, 255, 255, .2),
        0 1px 4px rgba(15, 46, 77, .2);
    border: 1px solid rgba(255, 255, 255, .7);
}
/* Tinted variants — sb1..sb4 cycle iridescent hues */
.section-bubbles .sb1 { box-shadow:
        inset 0 0 10px 1px rgba(186, 230, 253, .55),
        inset -2px -3px 7px rgba(199, 210, 254, .4),
        inset 4px 4px 10px rgba(254, 215, 226, .3),
        0 4px 22px rgba(255, 255, 255, .2); }
.section-bubbles .sb2 { box-shadow:
        inset 0 0 10px 1px rgba(252, 211, 232, .55),
        inset -2px -3px 7px rgba(186, 230, 253, .4),
        inset 4px 4px 10px rgba(255, 255, 255, .25),
        0 4px 22px rgba(255, 255, 255, .2); }
.section-bubbles .sb3 { box-shadow:
        inset 0 0 10px 1px rgba(192, 240, 222, .55),
        inset -2px -3px 7px rgba(199, 210, 254, .4),
        inset 4px 4px 10px rgba(254, 215, 226, .3),
        0 4px 22px rgba(255, 255, 255, .2); }
.section-bubbles .sb4 { box-shadow:
        inset 0 0 10px 1px rgba(232, 220, 255, .55),
        inset -2px -3px 7px rgba(186, 230, 253, .4),
        inset 4px 4px 10px rgba(255, 224, 224, .28),
        0 4px 22px rgba(255, 255, 255, .2); }

/* Make sure section content stays above bubbles */
.service-process > .container,
.service-cta-box > .service-cta-content,
.service-cta-box > .service-cta-actions {
    position: relative;
    z-index: 2;
}
.section-bubbles { z-index: 0; }

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    padding-bottom: 80px;
}

.hero-left { padding-top: 8px; }

/* Eyebrow inside hero — switch to deep blue */
.hero .eyebrow { color: var(--coral); }
.hero .eyebrow-line { background: var(--coral); }

.hero-title {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.035em;
    color: var(--sky-700);
    margin-bottom: 28px;
}
.hero-title em {
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(135deg, var(--sky-400) 0%, var(--sky-600) 60%, var(--coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lede {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(21, 78, 122, .78);
    max-width: 480px;
    margin-bottom: 32px;
}

/* Trust badges row */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(45, 139, 203, .18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sky-700);
    letter-spacing: .01em;
    box-shadow: 0 2px 8px rgba(45, 139, 203, .08);
}
.hero-badge svg { color: var(--sky-500); }

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero-scoped button restyle for light bg */
.hero .btn-outline {
    background: rgba(255, 255, 255, .7);
    color: var(--sky-700);
    border-color: rgba(45, 139, 203, .25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero .btn-outline:hover {
    background: var(--sky-700);
    color: #fff;
    border-color: var(--sky-700);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(45, 139, 203, .15);
}
.hero-avatars {
    display: flex;
}
.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--sans);
    color: #fff;
    border: 2px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(45, 139, 203, .15);
}
.avatar:first-child { margin-left: 0; }
.avatar-1 { background: linear-gradient(135deg, var(--sky-400), var(--sky-600)); }
.avatar-2 { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.avatar-3 { background: linear-gradient(135deg, var(--sky-500), var(--sky-700)); }
.avatar-4 { background: #fff; color: var(--sky-600); }

.hero-trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    color: rgba(21, 78, 122, .72);
}
.hero-trust-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
}
.hero-trust-text strong {
    color: var(--sky-700);
    font-weight: 700;
}

/* Hero service thumbnails (left side) */
.hero-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 32px;
    max-width: 440px;
}
.hero-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--t);
    cursor: pointer;
    display: block;
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 6px 18px rgba(45, 139, 203, .12);
}
.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.hero-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(21, 78, 122, .85) 100%);
    transition: var(--t);
}
.hero-thumb span {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    z-index: 2;
    letter-spacing: -.01em;
}
.hero-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(45, 139, 203, .22);
}
.hero-thumb:hover img { transform: scale(1.1); }
.hero-thumb-more {
    background: linear-gradient(135deg, rgba(45, 139, 203, .12), rgba(255, 255, 255, .8));
    border: 1px dashed rgba(45, 139, 203, .45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.hero-thumb-more::after { display: none; }
.hero-thumb-plus {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--sky-600);
    line-height: 1;
    position: static !important;
}
.hero-thumb-more span:last-child {
    position: static !important;
    color: var(--sky-700);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
}

/* Hero Right */
.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Vertical side tag — hidden by default for cleaner layout */
.vertical-tag {
    display: none;
}
.vt-sep {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(250, 250, 250, .3);
}

.hero-image-wrapper {
    position: relative;
    overflow: visible;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 5 / 5;
    box-shadow:
        0 30px 70px -20px rgba(21, 78, 122, .35),
        0 8px 24px -8px rgba(45, 139, 203, .25);
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .9);
}
.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s var(--ease), visibility 0s linear 1.1s;
    will-change: opacity, transform;
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.1s var(--ease), visibility 0s linear 0s;
    z-index: 1;
}
.hero-slide .hero-main-image {
    transform: scale(1);
}
.hero-slide.is-active .hero-main-image {
    animation: heroKenBurns 7s var(--ease) forwards;
}
@keyframes heroKenBurns {
    from { transform: scale(1.02); }
    to   { transform: scale(1.09); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-slide.is-active .hero-main-image { animation: none; transform: none; }
    .hero-slide { transition: opacity .3s linear, visibility 0s linear .3s; }
    .hero-slide.is-active { transition: opacity .3s linear; }
}

/* Slider dots / progress */
.hero-slider-nav {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(21, 78, 122, .18);
}
.hero-dot {
    appearance: none;
    border: 0;
    padding: 0;
    width: 22px;
    height: 6px;
    border-radius: 999px;
    background: rgba(21, 78, 122, .25);
    cursor: pointer;
    transition: background .35s var(--ease), width .45s var(--ease);
}
.hero-dot:hover { background: rgba(21, 78, 122, .45); }
.hero-dot.is-active {
    width: 36px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--sky-700) 100%);
}

/* Subtle tint — keep image bright; just hide AI text artifacts */
.hero-image-tint {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, transparent 55%, rgba(21, 78, 122, .35) 100%),
        linear-gradient(90deg, rgba(45, 139, 203, .08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Image corner ribbon badge */
.img-corner-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(45, 139, 203, .15);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sky-700);
    box-shadow: 0 8px 20px rgba(21, 78, 122, .15);
}
.ribbon-num {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--coral);
    letter-spacing: -.02em;
}
.ribbon-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--sky-700);
}

/* Decorative geometric shapes around image — bubble themed */
.deco-shape {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
.deco-shape-1 {
    top: -30px;
    right: -50px;
    width: 110px;
    height: 110px;
    background:
        radial-gradient(circle at 32% 30%, rgba(255,255,255,.85) 0%, rgba(207, 230, 247, .4) 40%, rgba(45, 139, 203, .15) 100%);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    box-shadow:
        inset -6px -6px 18px rgba(45, 139, 203, .15),
        inset 8px 8px 18px rgba(255, 255, 255, .7),
        0 8px 24px rgba(45, 139, 203, .15);
    opacity: .9;
    animation: float 6s ease-in-out infinite;
}
.deco-shape-2 {
    bottom: 40px;
    left: -60px;
    width: 80px;
    height: 80px;
    background:
        radial-gradient(circle at 32% 30%, rgba(255,255,255,.85) 0%, rgba(207, 230, 247, .4) 40%, rgba(45, 139, 203, .12) 100%);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    box-shadow:
        inset -4px -4px 12px rgba(45, 139, 203, .12),
        inset 6px 6px 14px rgba(255, 255, 255, .6),
        0 6px 18px rgba(45, 139, 203, .12);
    opacity: .85;
    transform: none;
    filter: none;
    animation: float 5s ease-in-out 1s infinite;
}

/* Glass cards */
.glass-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius);
    box-shadow:
        0 20px 50px -12px rgba(21, 78, 122, .28),
        0 4px 12px rgba(45, 139, 203, .12);
    border: 1px solid rgba(255, 255, 255, .9);
    z-index: 10;
    white-space: nowrap;
}
.glass-card strong {
    display: block;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--sky-700);
    line-height: 1.1;
    margin-bottom: 2px;
}
.glass-card span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .03em;
}
.glass-icon {
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}
.glass-icon-coral { background: linear-gradient(135deg, var(--sky-400), var(--sky-600)); }
.glass-card-tl {
    top: 60px;
    left: -40px;
    animation: float 4s ease-in-out infinite;
}
.glass-card-br {
    bottom: 60px;
    right: -32px;
    animation: float 4s ease-in-out 1s infinite;
}
.glass-stat-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
}
.glass-stat-line strong {
    display: inline;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--coral);
    margin: 0 4px;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot-live {
    background: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .25);
    animation: pulse 1.5s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Hero stats strip */
.hero-stats-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: var(--radius-md);
    box-shadow:
        0 14px 36px -12px rgba(21, 78, 122, .2),
        0 4px 10px rgba(45, 139, 203, .08);
}
.hs-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hs-num {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--sky-700);
    line-height: 1;
}
.hs-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(21, 78, 122, .55);
    font-weight: 600;
}
.hs-divider {
    width: 1px;
    height: 36px;
    background: rgba(45, 139, 203, .2);
}

/* ===== Marquee — over hero, blends with sky ===== */
.marquee {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 35%, var(--sky-50) 100%);
    color: var(--sky-700);
    padding: 28px 0;
    overflow: hidden;
    position: relative;
    margin-top: -10px;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -.01em;
    animation: marquee 40s linear infinite;
    width: max-content;
}
.marquee-track span:nth-child(odd) { color: var(--sky-700); }
.marquee-track span:nth-child(even) { color: var(--coral); font-size: 16px; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== Section Head ===== */
.section-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.03em;
    color: var(--navy);
}
.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--coral);
}
.section-title-light { color: #FFFFFF; }
.section-title-light em {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFE9C7 50%, var(--coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 300;
}
.section-head-right {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    padding-bottom: 12px;
    max-width: 420px;
}
.section-head-light-text { color: rgba(245, 239, 224, .7); }

/* ===== SERVICES BENTO ===== */
.services {
    padding: 140px 0;
    background:
        radial-gradient(80% 50% at 50% 0%, rgba(207, 230, 247, .4) 0%, transparent 55%),
        radial-gradient(70% 50% at 50% 100%, rgba(207, 230, 247, .35) 0%, transparent 55%),
        linear-gradient(180deg, var(--sky-50) 0%, var(--cream) 50%, var(--sky-50) 100%);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(207, 230, 247, .55) 0%, transparent 100%);
    pointer-events: none;
}
.services::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(180deg, transparent 0%, rgba(207, 230, 247, .55) 80%, rgba(168, 210, 239, .4) 100%);
    pointer-events: none;
}
.services > * { position: relative; z-index: 1; }

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

.bento-card {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--navy);
    isolation: isolate;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    box-shadow: var(--shadow);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.bento-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
    z-index: 0;
}
.bento-card:hover .bento-img { transform: scale(1.08); }

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 46, 77, .12) 0%,
        rgba(15, 46, 77, .55) 55%,
        rgba(15, 46, 77, .94) 100%);
    z-index: 1;
    transition: var(--t);
}
.bento-card:hover .bento-overlay {
    background: linear-gradient(180deg,
        rgba(15, 46, 77, .25) 0%,
        rgba(15, 46, 77, .7) 55%,
        rgba(15, 46, 77, .96) 100%);
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--cream);
}
.bento-num {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--coral);
    z-index: 3;
}
.bento-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 8px;
}
.bento-desc {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(250, 250, 250, .82);
    margin-bottom: 14px;
}
.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--cream);
    transition: var(--t);
    align-self: flex-start;
    padding: 9px 16px;
    background: rgba(250, 250, 250, .1);
    border: 1px solid rgba(250, 250, 250, .25);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}
.bento-link:hover {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
    gap: 10px;
}

/* CTA Card — last slot, same size as others, red bg */
.bento-cta {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    position: relative;
    aspect-ratio: auto;
    min-height: 220px;
    grid-column: 1 / -1;
    display: block;
}
.bento-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0,0,0,.15) 0%, transparent 50%);
    pointer-events: none;
}
.bento-cta::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 50%;
    pointer-events: none;
}
.bento-cta-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}
.bento-cta-eyebrow {
    position: absolute;
    top: 22px;
    left: 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}
.bento-cta-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 12px;
}
.bento-cta-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,.88);
}
.bento-cta-desc {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
}
.bento-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    color: var(--coral);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--t);
    align-self: flex-start;
}
.bento-cta:hover .bento-cta-btn {
    transform: translateX(4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.bento-cta:hover .bento-cta-btn svg { transform: translateX(2px); }
.bento-cta-btn svg { transition: transform .3s var(--ease); }

/* ===== Feature Strip — softer mid-blue ===== */
.feature-strip {
    background: linear-gradient(135deg, var(--sky-500) 0%, var(--sky-600) 50%, var(--sky-700) 100%);
    color: var(--cream);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.feature-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 20% 50%, rgba(255, 255, 255, .14) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 80% 50%, rgba(255, 255, 255, .1) 0%, transparent 70%);
    pointer-events: none;
}
/* Soft top blend with previous section */
.feature-strip::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(168, 210, 239, .35) 0%, transparent 100%);
    pointer-events: none;
}
.feature-strip > * { position: relative; z-index: 1; }
.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.fs-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.fs-icon {
    width: 56px; height: 56px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 18px rgba(45, 139, 203, .4)) drop-shadow(0 2px 4px rgba(0, 0, 0, .25));
    transition: transform .35s cubic-bezier(.2, .9, .3, 1.2), filter .35s ease;
}
.fs-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.fs-item:hover .fs-icon {
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 12px 22px rgba(107, 177, 225, .55)) drop-shadow(0 2px 4px rgba(0, 0, 0, .25));
}
.fs-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 2px;
}
.fs-item span {
    display: block;
    font-size: 12px;
    color: rgba(245, 239, 224, .55);
}

/* ===== WHY US ===== */
.why-us {
    padding: 140px 0;
    background:
        radial-gradient(60% 40% at 100% 20%, rgba(168, 210, 239, .35) 0%, transparent 60%),
        radial-gradient(50% 35% at 0% 80%, rgba(207, 230, 247, .55) 0%, transparent 60%),
        linear-gradient(180deg, var(--sky-100) 0%, var(--cream-2) 35%, var(--cream-2) 75%, var(--sky-50) 100%);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(45, 139, 203, .15) 0%, transparent 100%);
    pointer-events: none;
}
.why-us::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(180deg, transparent 0%, rgba(207, 230, 247, .45) 100%);
    pointer-events: none;
}
.why-us > * { position: relative; z-index: 1; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ===== Why Us — Editorial Layout (visual + reasons list) ===== */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: start;
    margin-top: 64px;
}

/* --- Left: editorial visual --- */
.why-visual {
    position: sticky;
    top: 100px;
}
.why-visual-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    isolation: isolate;
}
.why-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.why-visual-frame:hover img { transform: scale(1.04); }
.why-visual-tint {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 46, 77, 0) 40%, rgba(15, 46, 77, .55) 100%),
        linear-gradient(0deg, rgba(15, 46, 77, .15) 0%, transparent 50%);
    pointer-events: none;
}

/* "Sahada · 23 Aktif Ekip" pill */
.why-visual-mark {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(15, 46, 77, .65);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    color: var(--cream);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    border: 1px solid rgba(107, 177, 225, .25);
    z-index: 2;
}
.why-visual-mark-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, .25);
    animation: wvm-pulse 2s ease-in-out infinite;
}
@keyframes wvm-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(230, 57, 70, .25); }
    50%      { box-shadow: 0 0 0 6px rgba(230, 57, 70, 0); }
}

/* Floating glass badges over the image */
.why-visual-badge {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: var(--radius);
    box-shadow: 0 20px 40px -12px rgba(10, 10, 10, .35);
    padding: 18px 22px;
}

.why-visual-badge-rating {
    bottom: 22px;
    left: 22px;
    min-width: 200px;
}
.wvb-stars {
    color: var(--coral);
    font-size: 14px;
    letter-spacing: .12em;
    margin-bottom: 4px;
}
.wvb-rating-num {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--serif);
    color: var(--navy);
    line-height: 1;
}
.wvb-rating-num strong { font-size: 30px; font-weight: 600; }
.wvb-rating-num span   { font-size: 14px; color: var(--text-muted); font-family: var(--sans); }
.wvb-rating-label {
    margin-top: 6px;
    font-size: 11.5px;
    color: var(--text-light);
    letter-spacing: .01em;
}

.why-visual-badge-stat {
    top: 22px;
    right: 22px;
    text-align: right;
    background: linear-gradient(135deg, rgba(15, 46, 77, .92) 0%, rgba(21, 78, 122, .9) 100%);
    border-color: rgba(107, 177, 225, .25);
    color: var(--cream);
}
.wvb-stat-num {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 600;
    color: var(--cream);
    line-height: 1;
}
.wvb-stat-num span { color: var(--coral); }
.wvb-stat-label {
    margin-top: 4px;
    font-size: 11px;
    color: rgba(250, 250, 250, .7);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Caption strip below image */
.why-visual-caption {
    margin-top: 24px;
    padding: 22px 24px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 22px;
    position: relative;
    overflow: hidden;
}
.why-visual-caption::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--coral);
}
.wvc-num {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.02em;
}
.wvc-num sup {
    font-size: 18px;
    color: var(--coral);
    font-weight: 500;
    margin-left: 2px;
    vertical-align: super;
    top: -.4em;
}
.wvc-text { display: flex; flex-direction: column; gap: 2px; }
.wvc-text strong {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -.005em;
}
.wvc-text span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- Right: reasons list --- */
.why-list {
    display: grid;
    gap: 4px;
}
.why-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    transition: background .4s var(--ease), padding .4s var(--ease);
    position: relative;
}
.why-row:last-child { border-bottom: 1px solid var(--line); }
.why-row::before {
    content: '';
    position: absolute;
    left: -24px; top: 0; bottom: 0;
    width: 3px;
    background: var(--coral);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .5s var(--ease);
}
.why-row:hover {
    background: linear-gradient(90deg, rgba(230, 57, 70, .035) 0%, transparent 60%);
    padding-left: 16px;
    padding-right: 16px;
}
.why-row:hover::before { transform: scaleY(1); }

.why-row-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(230, 57, 70, .08) 0%, rgba(230, 57, 70, .02) 100%);
    border: 1px solid rgba(230, 57, 70, .15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
    transition: var(--t);
}
.why-row-icon svg {
    width: 26px;
    height: 26px;
    transition: transform .5s var(--ease);
}
.why-row:hover .why-row-icon {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--cream);
    box-shadow: 0 8px 24px -6px rgba(230, 57, 70, .45);
}
.why-row:hover .why-row-icon svg { transform: scale(1.08) rotate(-3deg); }

.why-row-body { padding-top: 4px; }
.why-row-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
}
.why-row-num {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 600;
    color: var(--coral);
    letter-spacing: .12em;
    line-height: 1;
}
.why-row-body h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -.01em;
    color: var(--navy);
    line-height: 1.2;
    margin: 0;
}
.why-row-body p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
    max-width: 56ch;
}

.glass {
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, .6);
}
.glass-dark {
    background:
        radial-gradient(circle at 0% 0%, rgba(230, 57, 70, .08) 0%, transparent 55%),
        linear-gradient(155deg, rgba(28, 28, 28, .92) 0%, rgba(18, 18, 18, .94) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, .55),
        inset 0 1px 0 rgba(255, 255, 255, .04);
}

.why-card {
    padding: 36px 32px;
    border-radius: var(--radius-md);
    transition: var(--t);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, .08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .5s var(--ease);
    pointer-events: none;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 57, 70, .25);
}
.why-card:hover::before { opacity: 1; }

.why-num {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--coral);
    margin-bottom: 24px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(230, 57, 70, .1);
    border-radius: 999px;
}
.why-card h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -.01em;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}
.why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== ABOUT — Editorial ===== */
.about {
    padding: 140px 0;
    background:
        radial-gradient(70% 50% at 50% 100%, rgba(168, 210, 239, .4) 0%, transparent 60%),
        radial-gradient(60% 40% at 0% 30%, rgba(207, 230, 247, .35) 0%, transparent 60%),
        linear-gradient(180deg, var(--sky-50) 0%, var(--cream) 40%, var(--sky-100) 100%);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(207, 230, 247, .4) 0%, transparent 100%);
    pointer-events: none;
}
.about::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(180deg, transparent 0%, rgba(168, 210, 239, .55) 100%);
    pointer-events: none;
    z-index: 0;
}
.about > * { position: relative; z-index: 1; }
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    aspect-ratio: 1 / 1.15;
}
.about-image-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
.about-image-sub {
    position: absolute;
    bottom: -32px;
    right: -40px;
    width: 45%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
    z-index: 2;
}

.about-quote {
    position: absolute;
    top: -24px;
    left: -32px;
    background: linear-gradient(135deg, var(--sky-700) 0%, var(--sky-800) 100%);
    color: var(--cream);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    max-width: 280px;
    box-shadow: 0 30px 60px -20px rgba(15, 46, 77, .45);
    z-index: 3;
    border: 1px solid rgba(107, 177, 225, .2);
}
.about-quote-mark {
    font-family: var(--serif);
    font-size: 60px;
    font-style: italic;
    line-height: .5;
    color: var(--coral);
    display: block;
    margin-bottom: -8px;
}
.about-quote p {
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
    line-height: 1.4;
    color: var(--cream);
}

.about-headline {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--navy);
    margin-bottom: 28px;
}
.about-headline em {
    font-style: italic;
    color: var(--coral);
    font-weight: 300;
}
.about-para {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}
.about-features {
    margin: 36px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.af-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
}
.af-check {
    width: 28px; height: 28px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== CONTACT — Professional sky blue ===== */
.contact {
    padding: 140px 0 160px;
    background: linear-gradient(180deg, var(--sky-500) 0%, var(--sky-600) 55%, var(--sky-700) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.contact-grain {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 70% 50% at 15% 20%, rgba(255, 255, 255, .18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 85%, rgba(255, 255, 255, .12) 0%, transparent 60%),
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .04) 1px, transparent 0);
    background-size: auto, auto, 28px 28px;
    pointer-events: none;
}

/* Soft top blend with previous section */
.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(168, 210, 239, .55) 0%, rgba(107, 177, 225, .2) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.contact::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 46, 77, .35) 100%);
    pointer-events: none;
    z-index: 0;
}
/* Cloud wisps inside contact */
.contact-cloud-a,
.contact-cloud-b {
    position: absolute;
    border-radius: 100px;
    filter: blur(32px);
    pointer-events: none;
    z-index: 0;
}
.contact-cloud-a {
    top: 10%; left: -80px;
    width: 320px; height: 80px;
    background: rgba(255, 255, 255, .2);
}
.contact-cloud-b {
    bottom: 20%; right: -100px;
    width: 380px; height: 90px;
    background: rgba(255, 255, 255, .15);
}
.contact .container { position: relative; z-index: 2; }

/* ----- Floating bubbles in contact section ----- */
.contact-bubbles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.contact-bubbles .bubble {
    /* Slightly stronger highlight on darker blue bg */
    box-shadow:
        inset 0 0 10px 1px rgba(186, 230, 253, .5),
        inset -2px -3px 7px rgba(199, 210, 254, .35),
        inset 4px 4px 10px rgba(254, 215, 226, .28),
        0 4px 22px rgba(255, 255, 255, .18),
        0 1px 4px rgba(15, 46, 77, .18);
    border: 1px solid rgba(255, 255, 255, .7);
}
.cb1  { width: 38px; height: 38px; left: 4%;  bottom: -50px; animation-delay: 0s,    -1.4s; animation-duration: 22s, 5.4s; }
.cb2  { width: 24px; height: 24px; left: 11%; bottom: -40px; animation-delay: 3s,    -.7s;  animation-duration: 16s, 4.2s; }
.cb3  { width: 56px; height: 56px; left: 18%; bottom: -70px; animation-delay: 6s,    -2.2s; animation-duration: 26s, 6.4s; }
.cb4  { width: 22px; height: 22px; left: 26%; bottom: -40px; animation-delay: 9s,    -.5s;  animation-duration: 14s, 3.8s; }
.cb5  { width: 32px; height: 32px; left: 38%; bottom: -45px; animation-delay: 1.5s,  -1.8s; animation-duration: 20s, 5s; }
.cb6  { width: 44px; height: 44px; left: 58%; bottom: -55px; animation-delay: 4.5s,  -1.2s; animation-duration: 24s, 5.8s; }
.cb7  { width: 18px; height: 18px; left: 68%; bottom: -40px; animation-delay: 7s,    -.4s;  animation-duration: 12s, 3.6s; }
.cb8  { width: 36px; height: 36px; left: 76%; bottom: -50px; animation-delay: 2s,    -1.6s; animation-duration: 19s, 4.8s; }
.cb9  { width: 28px; height: 28px; left: 84%; bottom: -42px; animation-delay: 8s,    -.9s;  animation-duration: 17s, 4.4s; }
.cb10 { width: 48px; height: 48px; left: 93%; bottom: -60px; animation-delay: 5.5s,  -2.4s; animation-duration: 23s, 5.6s; }

/* Iridescent variations on contact bubbles for diversity */
.cb2 { box-shadow:
        inset 0 0 10px 1px rgba(252, 211, 232, .55),
        inset -2px -3px 7px rgba(186, 230, 253, .35),
        inset 4px 4px 10px rgba(255, 255, 255, .25),
        0 4px 22px rgba(255, 255, 255, .18); }
.cb5 { box-shadow:
        inset 0 0 10px 1px rgba(192, 240, 222, .55),
        inset -2px -3px 7px rgba(199, 210, 254, .4),
        inset 4px 4px 10px rgba(254, 215, 226, .3),
        0 4px 22px rgba(255, 255, 255, .18); }
.cb8 { box-shadow:
        inset 0 0 10px 1px rgba(232, 220, 255, .55),
        inset -2px -3px 7px rgba(186, 230, 253, .4),
        inset 4px 4px 10px rgba(255, 224, 224, .28),
        0 4px 22px rgba(255, 255, 255, .18); }
.cb10 { box-shadow:
        inset 0 0 10px 1px rgba(255, 230, 200, .5),
        inset -2px -3px 7px rgba(199, 210, 254, .35),
        inset 4px 4px 10px rgba(186, 230, 253, .3),
        0 4px 22px rgba(255, 255, 255, .18); }
.contact .container { position: relative; z-index: 1; }

.section-head-light .section-title { color: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(0, 1.5fr);
    gap: 40px;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-info-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: var(--radius);
    transition: var(--t);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 12px 32px -10px rgba(15, 46, 77, .35);
}
.contact-info-row:hover {
    background: #FFFFFF;
    border-color: var(--sky-300);
    transform: translateX(4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 18px 44px -10px rgba(15, 46, 77, .45);
}
.ci-icon {
    width: 48px; height: 48px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sky-400) 0%, var(--sky-600) 100%);
    border: none;
    border-radius: 14px;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(45, 139, 203, .35);
}
.ci-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--sky-500);
    margin-bottom: 4px;
}
.ci-value {
    display: block;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--sky-800);
    line-height: 1.35;
}
a.ci-value:hover { color: var(--coral); }

.contact-wa {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--radius);
    color: #fff;
    transition: var(--t);
    margin-top: 8px;
}
.contact-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px -10px rgba(37, 211, 102, .55);
}
.contact-wa strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}
.contact-wa span {
    font-size: 12px;
    opacity: .9;
}

.contact-form {
    padding: 0;
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow:
        0 40px 80px -20px rgba(15, 46, 77, .45),
        0 8px 20px -8px rgba(15, 46, 77, .25);
    overflow: hidden;
    color: var(--sky-800);
    position: relative;
    transition: max-height .55s var(--ease), box-shadow .35s var(--ease);
}

/* ---- Collapsed (preview) state ---- */
.contact-form.is-collapsed {
    max-height: 360px;
    cursor: pointer;
}
.contact-form.is-collapsed:hover {
    box-shadow:
        0 50px 90px -20px rgba(15, 46, 77, .55),
        0 12px 26px -8px rgba(15, 46, 77, .3);
}
/* Soft gradient mask at bottom when collapsed */
.contact-form.is-collapsed::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 75%);
    pointer-events: none;
    z-index: 2;
    transition: opacity .35s var(--ease);
}
.contact-form:not(.is-collapsed)::after {
    opacity: 0;
    pointer-events: none;
}
/* Hide all content past the head when collapsed */
.contact-form.is-collapsed > *:not(.contact-form-head):not(.contact-form-expand) {
    pointer-events: none;
}

/* Expand teaser button (visible only when collapsed) */
.contact-form-expand {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px 12px 22px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 500;
    cursor: pointer;
    box-shadow:
        0 14px 32px -8px rgba(230, 57, 70, .55),
        0 4px 10px rgba(230, 57, 70, .3);
    z-index: 3;
    transition: var(--t);
    white-space: nowrap;
    opacity: 1;
}
.contact-form-expand:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow:
        0 18px 40px -8px rgba(230, 57, 70, .65),
        0 4px 10px rgba(230, 57, 70, .35);
}
.contact-form-expand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    text-align: left;
}
.contact-form-expand-text strong {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .005em;
}
.contact-form-expand-text span {
    font-size: 11px;
    font-weight: 500;
    opacity: .85;
    margin-top: 2px;
    letter-spacing: .02em;
}
.contact-form-expand-icon {
    width: 36px; height: 36px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}
.contact-form-expand:hover .contact-form-expand-icon {
    background: rgba(255, 255, 255, .3);
    transform: translateY(2px);
}

/* When expanded, hide the teaser button */
.contact-form:not(.is-collapsed) .contact-form-expand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ---- Expanded state ---- */
.contact-form:not(.is-collapsed) {
    max-height: 3000px;
}

.contact-form-head {
    padding: 32px 36px 24px;
    background: linear-gradient(135deg, var(--sky-50) 0%, #FFFFFF 60%);
    border-bottom: 1px solid var(--line);
    position: relative;
}
.contact-form-pill {
    position: absolute;
    top: 28px;
    right: 32px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--sky-100), #FFFFFF);
    border: 1px solid var(--sky-200);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--sky-700);
    letter-spacing: .04em;
    text-transform: uppercase;
}
.contact-form-pill svg { color: var(--sky-500); }
.contact-form-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--sky-800);
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.contact-form-desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-light);
    margin-bottom: 0;
}
.contact-form-desc strong {
    color: var(--sky-700);
    font-weight: 700;
}
.contact-form > .form-step,
.contact-form > .form-row,
.contact-form > .form-group,
.contact-form > .form-prefer,
.contact-form > .form-consent,
.contact-form > .contact-submit-btn,
.contact-form > .form-trust-row,
.contact-form > .form-success {
    margin-left: 36px;
    margin-right: 36px;
}

/* Step header */
.form-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--line);
}
.form-step-num {
    width: 30px; height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-400) 0%, var(--sky-600) 100%);
    color: #FFFFFF;
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(45, 139, 203, .3);
}
.form-step-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--sky-700);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group {
    margin-bottom: 14px;
    position: relative;
}
.form-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sky-700);
    margin-bottom: 8px;
}
.form-req { color: var(--coral); font-weight: 700; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--sky-50);
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 15px;
    color: var(--sky-800);
    transition: var(--t);
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23154E7A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: .8;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--sky-300);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky-500);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(45, 139, 203, .15);
}
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.form-group select option { background: #FFFFFF; color: var(--sky-800); }
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--coral);
    background: rgba(230, 57, 70, .04);
}
.form-error {
    display: block;
    font-size: 12px;
    color: var(--coral);
    margin-top: 4px;
    min-height: 16px;
    font-weight: 500;
}

/* Preferred contact chips */
.form-prefer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 4px;
    padding: 16px 18px;
    background: var(--sky-50);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.form-prefer-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--sky-700);
    letter-spacing: .04em;
    margin-right: 4px;
}
.form-chip {
    cursor: pointer;
    user-select: none;
}
.form-chip input { position: absolute; opacity: 0; pointer-events: none; }
.form-chip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #FFFFFF;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sky-700);
    transition: var(--t);
}
.form-chip:hover span { border-color: var(--sky-400); color: var(--sky-600); }
.form-chip input:checked + span {
    background: linear-gradient(135deg, var(--sky-500) 0%, var(--sky-600) 100%);
    border-color: var(--sky-600);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(45, 139, 203, .3);
}

/* KVKK consent */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 22px;
    padding: 14px 16px;
    background: rgba(45, 139, 203, .05);
    border: 1px solid rgba(45, 139, 203, .15);
    border-radius: var(--radius);
    cursor: pointer;
    user-select: none;
}
.form-consent input {
    margin-top: 2px;
    width: 18px; height: 18px;
    accent-color: var(--sky-600);
    flex-shrink: 0;
}
.form-consent span {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
}
.form-consent span strong {
    color: var(--sky-700);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}
.form-consent.error {
    background: rgba(230, 57, 70, .06);
    border-color: rgba(230, 57, 70, .35);
}

/* Submit button override for contact */
.contact-submit-btn {
    width: calc(100% - 72px);
    padding: 18px 32px;
    font-size: 15px;
    margin-top: 4px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    box-shadow: 0 14px 32px -8px rgba(230, 57, 70, .5);
}
.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -8px rgba(230, 57, 70, .65);
}

/* Trust row below submit */
.form-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 32px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.form-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: .01em;
}
.form-trust-item svg { color: #10B981; }

.form-success {
    margin-top: 16px;
    margin-bottom: 32px;
    padding: 14px 18px;
    background: rgba(16, 185, 129, .1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, .35);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: none;
}
.form-success.visible { display: block; }

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--sky-100) 0%, var(--sky-50) 25%, var(--cream) 100%);
    color: var(--navy);
    padding: 100px 0 24px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(168, 210, 239, .35) 0%, transparent 100%);
    pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }
.footer-mega {
    text-align: center;
    margin-bottom: 80px;
    overflow: hidden;
}
.footer-mega-text {
    font-family: var(--serif);
    font-size: clamp(120px, 22vw, 320px);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .85;
    background: linear-gradient(180deg, var(--navy) 0%, rgba(11, 24, 48, .15) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 64px;
    padding-top: 64px;
    border-top: 1px solid var(--line);
}

.footer-brand-col .logo { margin-bottom: 20px; }
.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 360px;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    background: rgba(11, 24, 48, .06);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--navy);
    transition: var(--t);
}
.footer-social a:hover {
    background: var(--navy);
    color: var(--cream);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--serif);
    color: var(--navy);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li {
    font-size: 14px;
    color: var(--text-light);
    transition: var(--t);
    line-height: 1.5;
}
.footer-col ul li a:hover { color: var(--coral); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}

/* ===== Floating ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 48px; height: 48px;
    background: var(--navy);
    color: var(--cream);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-lg);
    transition: var(--t);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 998;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--coral);
    transform: translateY(-4px);
}

.float-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px; height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px -5px rgba(37, 211, 102, .55);
    transition: var(--t);
    z-index: 999;
}
.float-wa::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: .8; }
    100% { transform: scale(1.7); opacity: 0; }
}
.float-wa:hover { transform: scale(1.1); }

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1200px) {
    .container { padding: 0 24px; }
    .hero-container { gap: 56px; }
    .section-head { gap: 56px; }

    /* Bento — 3 cols on tablet */
    .bento-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .bento-content { padding: 22px; }
    .bento-title { font-size: 22px; }
    .bento-card { min-height: 320px; }
    .bento-cta { min-height: 220px; }
}

@media (max-width: 900px) {
    /* Bento — 2 cols */
    .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .bento-card { min-height: 320px; }
}

@media (max-width: 960px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .header-actions .btn-ghost span { display: none; }
    .header-actions .btn-ghost { padding: 10px; }

    .nav.active {
        display: block;
        position: absolute;
        top: 76px;
        left: 16px; right: 16px;
        background: var(--cream);
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        padding: 16px;
    }
    .nav.active .nav-list {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 4px;
    }
    .nav.active .nav-link {
        padding: 14px 18px;
        font-size: 16px;
        text-align: left;
    }

    .hero { padding: 110px 0 0; min-height: auto; }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 64px;
        padding-bottom: 60px;
    }
    .hero-image-frame { aspect-ratio: 4 / 4; }
    .glass-card-tl { left: 12px; top: 32px; }
    .glass-card-br { right: 12px; bottom: 32px; }
    .vertical-tag { display: none; }
    .deco-shape-1, .deco-shape-2 { display: none; }
    .hero-thumbs { max-width: 100%; }

    .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
    .section-head-right { padding-bottom: 0; }

    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-content { grid-template-columns: 1fr; gap: 56px; margin-top: 40px; }
    .why-visual { position: static; max-width: 560px; margin: 0 auto; width: 100%; }
    .why-visual-frame { aspect-ratio: 16 / 11; }

    .feature-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    .about-container { grid-template-columns: 1fr; gap: 80px; }
    .about-visual { max-width: 480px; margin: 0 auto; width: 100%; }

    .contact-grid { grid-template-columns: 1fr; gap: 32px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 640px) {
    .container { padding: 0 16px; }

    .services, .why-us, .about, .contact { padding: 80px 0; }
    .section-head { margin-bottom: 40px; }

    .header { padding: 12px 0; }
    .logo-img { width: 40px; height: 40px; }
    .logo-name { font-size: 18px; }
    .logo-sub { font-size: 9px; }

    .hero { padding: 100px 0 0; }
    .hero-title { font-size: 44px; }
    .hero-lede { font-size: 15px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { flex-wrap: wrap; gap: 12px; }
    .hero-stats-strip { flex-direction: column; gap: 16px; padding: 20px; }
    .hs-divider { display: none; }
    .hs-item { flex-direction: row; align-items: baseline; gap: 12px; }

    .glass-card { padding: 10px 14px; gap: 10px; }
    .glass-icon { width: 36px; height: 36px; font-size: 16px; }
    .glass-card strong { font-size: 14px; }
    .glass-card span { font-size: 10px; }
    .hero-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .hero-thumb span { font-size: 11px; bottom: 6px; left: 8px; }
    .img-corner-badge { padding: 6px 10px; gap: 6px; top: 12px; left: 12px; }
    .ribbon-num { font-size: 13px; }
    .ribbon-text { font-size: 9px; }

    .marquee-track { font-size: 22px; gap: 28px; }

    /* Bento → 1 column */
    .bento-grid { grid-template-columns: 1fr; gap: 14px; }
    .bento-card, .bento-cta { aspect-ratio: 16 / 11; min-height: 320px; }
    .bento-content, .bento-cta-inner { padding: 22px; }
    .bento-title { font-size: 22px; }
    .bento-cta-title { font-size: 24px; }

    .feature-strip-grid { grid-template-columns: 1fr; gap: 20px; }

    .why-grid { grid-template-columns: 1fr; gap: 14px; }
    .why-card { padding: 28px 24px; }
    .why-card h3 { font-size: 22px; }
    .why-content { gap: 40px; margin-top: 32px; }
    .why-visual-frame { aspect-ratio: 4 / 5; }
    .why-visual-mark { top: 14px; left: 14px; padding: 7px 13px; font-size: 11px; }
    .why-visual-badge { padding: 14px 16px; }
    .why-visual-badge-rating { bottom: 14px; left: 14px; min-width: 168px; }
    .wvb-rating-num strong { font-size: 26px; }
    .why-visual-badge-stat { top: 14px; right: 14px; }
    .wvb-stat-num { font-size: 30px; }
    .why-visual-caption { padding: 18px 20px; gap: 16px; }
    .wvc-num { font-size: 36px; }
    .wvc-text strong { font-size: 15px; }
    .wvc-text span { font-size: 12.5px; }
    .why-row { grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; }
    .why-row:hover { padding-left: 0; padding-right: 0; }
    .why-row-icon { width: 44px; height: 44px; border-radius: 12px; }
    .why-row-icon svg { width: 22px; height: 22px; }
    .why-row-body h3 { font-size: 18px; }
    .why-row-body p { font-size: 14px; }
    .why-row-head { gap: 10px; margin-bottom: 6px; }

    .about-image-stack { aspect-ratio: 1 / 1.1; }
    .about-image-sub { right: -12px; bottom: -16px; width: 50%; border-width: 4px; }
    .about-quote { left: -12px; top: -12px; padding: 18px 20px; max-width: 220px; }
    .about-quote p { font-size: 14px; }
    .about-features { grid-template-columns: 1fr; }

    .contact-form-head { padding: 24px 22px 18px; }
    .contact-form > .form-step,
    .contact-form > .form-row,
    .contact-form > .form-group,
    .contact-form > .form-prefer,
    .contact-form > .form-consent,
    .contact-form > .contact-submit-btn,
    .contact-form > .form-trust-row,
    .contact-form > .form-success {
        margin-left: 22px;
        margin-right: 22px;
    }
    .contact-submit-btn { width: calc(100% - 44px); }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-title { font-size: 22px; }
    .form-prefer { padding: 14px; gap: 8px; }
    .form-prefer-label { width: 100%; margin-bottom: 4px; }
    .form-trust-row { gap: 12px 16px; }

    .footer { padding: 60px 0 20px; }
    .footer-mega { margin-bottom: 48px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-bottom-links { gap: 16px; flex-wrap: wrap; justify-content: center; }

    .float-wa { width: 52px; height: 52px; bottom: 20px; right: 20px; }
    .float-wa svg { width: 24px; height: 24px; }
    .back-to-top { bottom: 88px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 380px) {
    .hero-title { font-size: 36px; }
    .section-title { font-size: 32px; }
    .about-headline { font-size: 32px; }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== Focus ===== */
:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
    border-radius: 4px;
}
::selection {
    background: var(--coral);
    color: var(--cream);
}

/* ==========================================================
   === NAV MEGA DROPDOWN ===
   ========================================================== */
.nav-list .has-dropdown { position: relative; }
.nav-link .nav-caret {
    display: inline-block;
    margin-left: 4px;
    transition: transform .3s var(--ease);
    vertical-align: -1px;
}
.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 720px;
    max-width: calc(100vw - 40px);
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .3s var(--ease);
    z-index: 1000;
}
.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: var(--cream-2);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 2px;
}
.nav-dropdown::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}
.nav-dd-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background .25s var(--ease);
}
.nav-dd-item:hover { background: rgba(230, 57, 70, .06); }
.nav-dd-item:hover .nav-dd-num { background: var(--coral); color: var(--cream); }
.nav-dd-num {
    flex-shrink: 0;
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 600;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream-3);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    letter-spacing: 0;
}
.nav-dd-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav-dd-text strong {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -.005em;
}
.nav-dd-text span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-dd-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--navy);
    color: var(--cream);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    transition: var(--t);
}
.nav-dd-cta:hover { background: var(--coral); }
.nav-dd-cta strong {
    font-weight: 600;
    color: var(--gold-light);
    transition: color .25s var(--ease);
}
.nav-dd-cta:hover strong { color: var(--cream); }

/* Mobile: dropdown becomes inline expanded list */
@media (max-width: 980px) {
    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 8px 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s var(--ease), padding .35s var(--ease);
    }
    .nav-dropdown::before, .nav-dropdown::after { display: none; }
    .has-dropdown.open .nav-dropdown { max-height: 1000px; padding: 8px 0 16px; }
    .has-dropdown:not(.open) .nav-dropdown { max-height: 0; padding: 0; }
    .nav-dropdown-grid { grid-template-columns: 1fr; gap: 0; }
    .nav-dd-item { padding: 10px 16px; }
    .nav-dd-text strong { color: var(--cream); }
    .nav-dd-text span { color: rgba(250, 250, 250, .6); }
    .nav-dd-num { background: rgba(255, 255, 255, .08); color: var(--cream); }
    .nav-dd-cta { display: none; }
    .has-dropdown .nav-link { display: inline-flex; align-items: center; }
}

/* ==========================================================
   === SERVICE DETAIL PAGES ===
   ========================================================== */

/* ===== Service Hero (compact) ===== */
.service-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--sky-50) 0%, var(--cream) 100%);
    overflow: hidden;
}
.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(107, 177, 225, .25) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 80%, rgba(168, 210, 239, .22) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(230, 57, 70, .04) 0%, transparent 60%);
    pointer-events: none;
}
.service-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.service-breadcrumb a {
    color: var(--text-light);
    transition: color .3s var(--ease);
}
.service-breadcrumb a:hover { color: var(--coral); }
.service-breadcrumb-sep { opacity: .4; }
.service-breadcrumb-current { color: var(--text); font-weight: 500; }

.service-hero h1.hero-title {
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.05;
    margin: 16px 0 20px;
    color: var(--text);
}
.service-hero-lede {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}
.service-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.service-hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.service-hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.service-hero-meta-item strong {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--text);
    font-weight: 600;
}
.service-hero-meta-item span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.service-hero-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-hero-image-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(15, 46, 77, .82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--cream);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.service-hero-image-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
}

/* ===== Service Intro ===== */
.service-intro {
    padding: 80px 0;
    background: var(--cream);
}
.service-intro-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 64px;
    align-items: start;
}
.service-intro-text h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -.02em;
}
.service-intro-text h2 em {
    font-style: italic;
    color: var(--coral);
}
.service-intro-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 18px;
}
.service-detail-card {
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}
.service-detail-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.service-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
}
.service-detail-row:last-child { border-bottom: 0; }
.service-detail-row span:first-child { color: var(--text-muted); }
.service-detail-row span:last-child { color: var(--text); font-weight: 500; }

/* ===== Scope (Alt Hizmetler) ===== */
.service-scope {
    padding: 100px 0;
    background: var(--cream-3);
    position: relative;
}
.service-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.scope-card {
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}
.scope-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, .03), transparent);
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.scope-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, .3);
    box-shadow: var(--shadow);
}
.scope-card:hover::before { opacity: 1; }
.scope-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, .08);
    color: var(--coral);
    border-radius: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    font-size: 22px;
}
.scope-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -.01em;
    position: relative;
    z-index: 1;
}
.scope-card p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== Equipment & Method Section ===== */
.service-equipment {
    padding: 90px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.service-equipment::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--line);
}
.equipment-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}
.equipment-text h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.15;
    font-weight: 500;
    margin: 16px 0 20px;
    letter-spacing: -.02em;
}
.equipment-text h2 em {
    font-style: italic;
    color: var(--coral);
}
.equipment-text p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 14px;
}
.equipment-text p strong {
    color: var(--text);
    font-weight: 600;
}
.equipment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.eq-feature {
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    transition: var(--t);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
}
.eq-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--coral);
    transform: translateX(-4px);
    transition: transform .3s var(--ease);
}
.eq-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(230, 57, 70, .25);
}
.eq-feature:hover::before { transform: translateX(0); }
.eq-feature strong {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -.01em;
}
.eq-feature span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
}

@media (max-width: 1024px) {
    .equipment-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
    .service-equipment { padding: 70px 0; }
    .equipment-features { grid-template-columns: 1fr; gap: 12px; }
    .eq-feature { padding: 18px 16px; }
    .eq-feature strong { font-size: 18px; }
}

/* ===== Process Strip — softer mid-blue ===== */
.service-process {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--sky-500) 0%, var(--sky-600) 50%, var(--sky-700) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.service-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 0% 0%, rgba(255, 255, 255, .18) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 100%, rgba(255, 255, 255, .12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(230, 57, 70, .05) 0%, transparent 70%);
    pointer-events: none;
}
.service-process::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(168, 210, 239, .35) 0%, transparent 100%);
    pointer-events: none;
}
.service-process .container { position: relative; z-index: 1; }
.service-process .section-title { color: var(--cream); }
.service-process .eyebrow { color: rgba(250, 250, 250, .7); }
.service-process .eyebrow-line { background: var(--coral); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
}
.process-step {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--t);
}
.process-step:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(230, 57, 70, .4);
    transform: translateY(-4px);
}
.process-num {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(135deg, var(--sky-300) 0%, var(--sky-500) 50%, var(--coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    display: block;
}
.process-step h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 10px;
}
.process-step p {
    color: rgba(250, 250, 250, .7);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ===== FAQ Accordion ===== */
.service-faq {
    padding: 100px 0;
    background:
        radial-gradient(80% 50% at 50% 0%, rgba(207, 230, 247, .4) 0%, transparent 60%),
        linear-gradient(180deg, var(--sky-50) 0%, var(--cream) 50%, var(--sky-50) 100%);
    position: relative;
    overflow: hidden;
}
.service-faq::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(168, 210, 239, .35) 0%, transparent 100%);
    pointer-events: none;
}
.service-faq > * { position: relative; z-index: 1; }
.faq-list {
    max-width: 880px;
    margin: 48px auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
    transition: color .3s var(--ease);
    background: transparent;
    border: 0;
    cursor: pointer;
}
.faq-question:hover { color: var(--coral); }
.faq-question .faq-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(230, 57, 70, .08);
    color: var(--coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    transition: transform .4s var(--ease);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease);
}
.faq-answer-inner {
    padding: 0 0 28px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 760px;
}

/* ===== Service CTA Strip ===== */
.service-cta {
    padding: 80px 0;
    background:
        radial-gradient(70% 50% at 50% 100%, rgba(168, 210, 239, .4) 0%, transparent 60%),
        linear-gradient(180deg, var(--sky-50) 0%, var(--cream-3) 100%);
    position: relative;
}
.service-cta-box {
    background: linear-gradient(135deg, var(--sky-500) 0%, var(--sky-600) 50%, var(--sky-700) 100%);
    color: var(--cream);
    border-radius: var(--radius-lg);
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(107, 177, 225, .2);
}
.service-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 100% 0%, rgba(107, 177, 225, .3) 0%, transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(45, 139, 203, .2) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(230, 57, 70, .08) 0%, transparent 70%);
}
.service-cta-content { position: relative; z-index: 1; }
.service-cta-content .eyebrow { color: rgba(250, 250, 250, .7); }
.service-cta-content .eyebrow-line { background: var(--coral); }
.service-cta-content h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 500;
    line-height: 1.15;
    margin: 16px 0 16px;
    letter-spacing: -.02em;
}
.service-cta-content h2 em {
    font-style: italic;
    color: var(--gold-light);
}
.service-cta-content p {
    color: rgba(250, 250, 250, .75);
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 480px;
}
.service-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-cta-actions .btn { justify-content: center; }
.service-cta-call {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    color: var(--cream);
    transition: var(--t);
}
.service-cta-call:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(230, 57, 70, .5);
}
.service-cta-call-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-cta-call-text {
    display: flex;
    flex-direction: column;
}
.service-cta-call-text strong {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .01em;
}
.service-cta-call-text span {
    font-size: 12px;
    color: rgba(250, 250, 250, .6);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ===== Related Services ===== */
.service-related {
    padding: 80px 0 100px;
    background:
        radial-gradient(60% 40% at 0% 100%, rgba(207, 230, 247, .4) 0%, transparent 60%),
        linear-gradient(180deg, var(--cream-3) 0%, var(--sky-50) 100%);
    position: relative;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.related-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    color: var(--cream);
}
.related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.related-card:hover img { transform: scale(1.06); }
.related-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 46, 77, .9) 100%);
}
.related-card-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
}
.related-card-content h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: -.01em;
}
.related-card-content span {
    font-size: 13px;
    color: rgba(250, 250, 250, .8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ===== Service Page Responsive ===== */
@media (max-width: 1024px) {
    .service-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .service-hero { padding: 120px 0 60px; }
    .service-hero-image { aspect-ratio: 16/12; max-width: 600px; margin: 0 auto; }
    .service-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .service-detail-card { position: static; }
    .service-scope-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .service-cta-box { grid-template-columns: 1fr; padding: 48px 32px; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .service-hero { padding: 100px 0 48px; }
    .service-hero h1.hero-title { font-size: 38px; }
    .service-hero-meta { gap: 16px; }
    .service-hero-meta-item strong { font-size: 18px; }
    .service-intro { padding: 60px 0; }
    .service-scope { padding: 70px 0; }
    .service-scope-grid { grid-template-columns: 1fr; }
    .service-process { padding: 70px 0; }
    .process-grid { grid-template-columns: 1fr; gap: 16px; }
    .process-step { padding: 24px; }
    .process-num { font-size: 44px; }
    .service-faq { padding: 70px 0; }
    .faq-question { font-size: 17px; padding: 22px 0; }
    .service-cta { padding: 60px 0; }
    .service-cta-box { padding: 36px 24px; }
    .related-grid { grid-template-columns: 1fr; }
    .service-related { padding: 60px 0 80px; }
}

/* ==========================================================
   TURNA FORMATION — background crane silhouettes per section
   Zigzag alternating direction, lead crane has coral beak
   ========================================================== */

.turna-symbol-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Make sure light sections are positioned for absolute formations */
.services { position: relative; overflow: hidden; }
.about    { position: relative; overflow: hidden; }

/* Lift section content above the formation */
.services > .container,
.why-us   > .container,
.about    > .container { position: relative; z-index: 1; }

.turna-formation {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.turna-icon {
    position: absolute;
    display: block;
    color: var(--navy);                 /* body / neck / legs color */
    aspect-ratio: 200 / 320;
    height: auto;
    transition: opacity .6s var(--ease);
    will-change: transform;
}

.turna-icon.lead {
    --turna-beak: var(--coral);         /* signature red beak on lead crane */
}

/* === RTL formation: top-right → bottom-left (descending shooting-star trail) === */
.turna-formation--rtl .t1 { top: 2%;   right: 4%;   width: 220px; opacity: .11; }
.turna-formation--rtl .t2 { top: 22%;  right: 22%;  width: 150px; opacity: .085; }
.turna-formation--rtl .t3 { top: 44%;  right: 42%;  width: 110px; opacity: .065; }
.turna-formation--rtl .t4 { top: 64%;  right: 60%;  width: 80px;  opacity: .05; }
.turna-formation--rtl .t5 { top: 82%;  right: 78%;  width: 58px;  opacity: .04; }

/* === LTR formation: top-left → bottom-right (mirror) === */
.turna-formation--ltr .turna-icon { transform: scaleX(-1); }
.turna-formation--ltr .t1 { top: 2%;   left: 4%;    width: 220px; opacity: .11; }
.turna-formation--ltr .t2 { top: 22%;  left: 22%;   width: 150px; opacity: .085; }
.turna-formation--ltr .t3 { top: 44%;  left: 42%;   width: 110px; opacity: .065; }
.turna-formation--ltr .t4 { top: 64%;  left: 60%;   width: 80px;  opacity: .05; }
.turna-formation--ltr .t5 { top: 82%;  left: 78%;   width: 58px;  opacity: .04; }

/* === Dark sections: invert color and dial opacity for legibility === */
.hero    .turna-icon,
.contact .turna-icon { color: var(--cream); }

.hero    .turna-formation--rtl .t1 { opacity: .08; }
.hero    .turna-formation--rtl .t2 { opacity: .055; }
.hero    .turna-formation--rtl .t3 { opacity: .04; }
.hero    .turna-formation--rtl .t4 { opacity: .03; }
.hero    .turna-formation--rtl .t5 { opacity: .025; }

.contact .turna-formation--rtl .t1 { opacity: .09; }
.contact .turna-formation--rtl .t2 { opacity: .06; }
.contact .turna-formation--rtl .t3 { opacity: .045; }
.contact .turna-formation--rtl .t4 { opacity: .035; }
.contact .turna-formation--rtl .t5 { opacity: .028; }

/* Subtle drift animation for the lead crane only — gentle, performance-cheap */
@keyframes turna-drift {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%      { transform: translate3d(0, -8px, 0); }
}
@keyframes turna-drift-mirror {
    0%, 100% { transform: scaleX(-1) translate3d(0, 0, 0); }
    50%      { transform: scaleX(-1) translate3d(0, -8px, 0); }
}
.turna-formation--rtl .turna-icon.lead { animation: turna-drift 9s ease-in-out infinite; }
.turna-formation--ltr .turna-icon.lead { animation: turna-drift-mirror 9s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
    .turna-formation--rtl .turna-icon.lead,
    .turna-formation--ltr .turna-icon.lead { animation: none; }
}

/* Responsive: scale down formation on smaller screens */
@media (max-width: 1024px) {
    .turna-formation--rtl .t1,
    .turna-formation--ltr .t1 { width: 160px; }
    .turna-formation--rtl .t2,
    .turna-formation--ltr .t2 { width: 110px; }
    .turna-formation--rtl .t3,
    .turna-formation--ltr .t3 { width: 82px; }
    .turna-formation--rtl .t4,
    .turna-formation--ltr .t4 { width: 60px; }
    .turna-formation--rtl .t5,
    .turna-formation--ltr .t5 { width: 44px; }
}

@media (max-width: 640px) {
    /* Reduce on mobile — keep only 3 cranes per formation */
    .turna-formation .t4,
    .turna-formation .t5 { display: none; }
    .turna-formation--rtl .t1,
    .turna-formation--ltr .t1 { width: 120px; }
    .turna-formation--rtl .t2,
    .turna-formation--ltr .t2 { width: 80px; }
    .turna-formation--rtl .t3,
    .turna-formation--ltr .t3 { width: 56px; }
}

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 60;
    margin-right: 6px;
}
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px 7px 8px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(11,24,48,0.12);
    border-radius: 999px;
    font: 600 12.5px/1 'Inter', system-ui, sans-serif;
    color: #0B1830;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.lang-toggle:hover {
    background: #fff;
    border-color: rgba(11,24,48,0.25);
}
.lang-toggle:focus-visible {
    outline: 2px solid var(--coral, #C81D2C);
    outline-offset: 2px;
}
.lang-current-flag {
    width: 22px;
    height: 14.6px;
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(11,24,48,0.08);
    flex-shrink: 0;
}
.lang-current-flag svg {
    display: block;
    width: 100%;
    height: 100%;
}
.lang-current-code {
    font-weight: 700;
    font-size: 12px;
}
.lang-caret {
    opacity: 0.55;
    transition: transform .18s ease;
}
.lang-switcher.open .lang-caret {
    transform: rotate(180deg);
}
.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    padding: 6px;
    background: #fff;
    border: 1px solid rgba(11,24,48,0.1);
    border-radius: 12px;
    box-shadow: 0 18px 40px -10px rgba(11,24,48,0.22), 0 4px 12px -4px rgba(11,24,48,0.1);
    display: none;
    flex-direction: column;
    gap: 2px;
}
.lang-switcher.open .lang-menu {
    display: flex;
    animation: langFade .18s ease;
}
@keyframes langFade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lang-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    font: 500 13.5px/1 'Inter', system-ui, sans-serif;
    color: #0B1830;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: background .14s ease;
}
.lang-option:hover {
    background: rgba(11,24,48,0.06);
}
.lang-option.is-active {
    background: rgba(200,29,44,0.08);
    color: var(--coral, #C81D2C);
    font-weight: 600;
}
.lang-flag {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(11,24,48,0.08);
    flex-shrink: 0;
}
.lang-flag svg {
    display: block;
    width: 100%;
    height: 100%;
}
.lang-name {
    flex: 1;
}

/* Header dark variant — when used over dark areas */
.header.is-scrolled .lang-toggle,
.header .lang-toggle {
    /* Keep readable on the existing white-ish header surface */
}

@media (max-width: 720px) {
    .lang-toggle {
        padding: 6px 8px;
    }
    .lang-current-code {
        display: none;
    }
    .lang-menu {
        right: -4px;
        min-width: 170px;
    }
}

