/* ==========================================================================
   MetroSehat — Landing Page Styles
   Dominan putih, profesional, modern.
   ========================================================================== */

:root {
    /* Brand */
    --blue-50:  #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --sky-500:  #0ea5e9;
    --teal-500: #14b6a6;
    --green-500:#10b981;

    /* Neutrals */
    --ink:      #0f172a;
    --ink-soft: #334155;
    --muted:    #64748b;
    --line:     #e6ebf2;
    --line-soft:#eef2f7;
    --bg:       #ffffff;
    --bg-tint:  #f6f9fc;
    --bg-tintr: #f0f7ff;

    --grad: linear-gradient(120deg, var(--blue-600), var(--sky-500));
    --grad-soft: linear-gradient(120deg, #eaf2ff, #e8f8ff);

    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --shadow-xs: 0 1px 2px rgba(15,23,42,.06);
    --shadow-sm: 0 4px 14px rgba(15,23,42,.06);
    --shadow:    0 12px 30px rgba(15,23,42,.08);
    --shadow-lg: 0 28px 60px rgba(15,23,42,.12);
    --shadow-blue: 0 16px 40px rgba(37,99,235,.28);

    --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --container: 1200px;
    --nav-h: 74px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
    font-family: var(--font-body);
    color: var(--ink-soft);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; font-weight: 700; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.text-gradient {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
    --pad-y: 12px; --pad-x: 22px;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-head); font-weight: 600; font-size: .96rem;
    padding: var(--pad-y) var(--pad-x);
    border-radius: 999px; border: 1.5px solid transparent;
    cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
    white-space: nowrap;
}
.btn svg { transition: transform .25s; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(37,99,235,.38); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { border-color: var(--blue-200); color: var(--blue-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--sm { --pad-y: 9px; --pad-x: 18px; font-size: .9rem; }
.btn--lg { --pad-y: 15px; --pad-x: 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: linear-gradient(90deg, var(--blue-50), #f4faff 55%, var(--blue-50)); color: var(--ink-soft); font-size: .82rem; border-bottom: 1px solid var(--line-soft); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); font-weight: 500; transition: color .2s; }
.topbar__contact a:hover { color: var(--blue-700); }
.topbar__contact svg { color: var(--blue-600); }
.topbar__meta { display: flex; align-items: center; gap: 18px; }
.topbar__badge { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-700); background: #fff; padding: 4px 14px; border-radius: 999px; font-weight: 600; border: 1px solid var(--blue-100); box-shadow: var(--shadow-xs); }
.topbar__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px rgba(16,185,129,.18); }
.topbar__social { display: flex; gap: 8px; }
.topbar__social a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; color: var(--blue-600); background: rgba(37,99,235,.07); transition: color .2s, background .2s, transform .2s; }
.topbar__social a:hover { color: #fff; background: var(--grad); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.88);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 1px 0 rgba(15,23,42,.02), 0 6px 20px -8px rgba(37,99,235,.14);
    transition: box-shadow .35s ease, border-color .35s ease, background .35s ease;
    overflow: visible;
}
.navbar.is-scrolled {
    background: rgba(255,255,255,.94);
    border-color: transparent;
    box-shadow:
        0 1px 0 rgba(255,255,255,.6) inset,
        0 4px 12px -4px rgba(15,23,42,.08),
        0 16px 32px -12px rgba(37,99,235,.22);
}
.navbar.has-mega-open {
    background: rgba(255,255,255,.98);
    box-shadow:
        0 1px 0 rgba(255,255,255,.6) inset,
        0 8px 24px -8px rgba(37,99,235,.18);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: 20px; position: relative; z-index: 2; }

/* Jembatan tak terlihat — menutup celah antara navbar dan submenu */
.mega-hover-bridge {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: calc(100% - 2px);
    height: 52px;
    z-index: 119;
    pointer-events: auto;
}
.navbar.has-mega-open .mega-hover-bridge { display: block; }

.brand { display: inline-flex; align-items: center; gap: 12px; position: relative; z-index: 125; }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 6px 14px rgba(37,99,235,.35)); }
.brand__text { font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--ink); line-height: 1; display: flex; flex-direction: column; gap: 3px; letter-spacing: -.03em; }
.brand__text small { font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.brand--light .brand__text { color: #fff; }

.navbar__menu { display: flex; align-items: center; gap: 8px; }
.navbar__menu > ul { display: flex; align-items: center; gap: 4px; }
.navbar__menu > ul a { display: block; padding: 9px 15px; border-radius: 999px; font-weight: 500; font-size: .95rem; color: var(--ink-soft); transition: color .2s, background .2s; position: relative; z-index: 130; }
.navbar__menu > ul > li > a:hover { color: var(--blue-700); background: var(--blue-50); }
.navbar__menu-actions { display: none; }

/* ---------- Mega submenu (slide dropdown) ---------- */
.has-mega { position: static; }
.has-mega__trigger {
    display: inline-flex !important; align-items: center; gap: 5px;
    position: relative;
}
.has-mega__trigger .chev { transition: transform .35s cubic-bezier(.16,1,.3,1); margin-top: 1px; opacity: .65; }
.has-mega:hover .has-mega__trigger,
.has-mega.is-open .has-mega__trigger,
.has-mega.is-active .has-mega__trigger {
    color: var(--blue-700); background: var(--blue-50);
}
.has-mega:hover .has-mega__trigger .chev,
.has-mega.is-open .has-mega__trigger .chev,
.has-mega.is-active .has-mega__trigger .chev { transform: rotate(180deg); opacity: 1; }

/* slide underline on trigger */
.has-mega__trigger::after {
    content: ""; position: absolute; left: 50%; bottom: 4px;
    width: 0; height: 2px; border-radius: 2px;
    background: var(--grad);
    transform: translateX(-50%);
    transition: width .35s cubic-bezier(.16,1,.3,1);
}
.has-mega:hover .has-mega__trigger::after,
.has-mega.is-open .has-mega__trigger::after,
.has-mega.is-active .has-mega__trigger::after { width: calc(100% - 24px); }

.mega {
    position: absolute; left: 0; right: 0;
    top: 100%;
    margin-top: -1px;
    padding: 0 24px 28px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(4px);
    transition: opacity .25s cubic-bezier(.16,1,.3,1), transform .25s cubic-bezier(.16,1,.3,1), visibility .25s;
    z-index: 110;
}
/* Zona hover transparan penuh lebar — menutup celah ke panel putih */
.mega::before {
    content: "";
    position: absolute;
    top: -48px;
    left: 0;
    right: 0;
    height: 52px;
}
.has-mega.is-active .mega,
.has-mega.is-open .mega {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}

.mega__inner {
    width: min(100%, var(--container));
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1.45fr 1fr; gap: 20px;
    background: #fff;
    border: 1px solid rgba(226,235,247,.9);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    box-shadow:
        0 1px 0 rgba(255,255,255,1) inset,
        0 2px 4px rgba(15,23,42,.04),
        0 12px 28px -8px rgba(15,23,42,.1),
        0 32px 64px -20px rgba(37,99,235,.18);
    position: relative; overflow: visible;
}

.mega__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 14px; }
.mega__item {
    display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border-radius: 16px;
    position: relative; overflow: hidden; min-height: 78px;
    opacity: 0; transform: translateX(-14px);
    transition: background .28s, transform .28s, box-shadow .28s, opacity .28s;
    transition-delay: calc(var(--i, 0) * 55ms + 40ms);
}
.has-mega:hover .mega__item,
.has-mega.is-open .mega__item,
.has-mega.is-active .mega__item {
    opacity: 1; transform: translateX(0);
}
.mega__item::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(120deg, var(--blue-50), transparent 65%);
    opacity: 0; transition: opacity .28s;
}
.mega__item:hover { background: var(--bg-tint); box-shadow: 0 6px 18px -10px rgba(37,99,235,.2); transform: translateX(4px); }
.mega__item:hover::before { opacity: 1; }

.mega__ic {
    width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px;
    display: grid; place-items: center; color: #fff;
    position: relative; z-index: 1;
    transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.mega__item:hover .mega__ic { transform: scale(1.06) rotate(-4deg); }
.mega__ic--blue { background: var(--grad); box-shadow: 0 10px 22px -8px rgba(37,99,235,.55); }
.mega__ic--teal { background: linear-gradient(120deg, var(--teal-500), var(--sky-500)); box-shadow: 0 10px 22px -8px rgba(20,182,166,.55); }
.mega__ic--green { background: linear-gradient(120deg, var(--green-500), #34d399); box-shadow: 0 10px 22px -8px rgba(16,185,129,.55); }

.mega__text { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; position: relative; z-index: 1; }
.mega__text strong { font-family: var(--font-head); font-size: .98rem; color: var(--ink); font-weight: 700; letter-spacing: -.01em; line-height: 1.35; }
.mega__text small { font-size: .8rem; color: var(--muted); line-height: 1.45; }

.mega__arrow {
    margin-left: auto; color: var(--blue-600);
    opacity: 0; transform: translateX(-8px);
    transition: opacity .28s, transform .28s;
    flex-shrink: 0; position: relative; z-index: 1;
}
.mega__item:hover .mega__arrow { opacity: 1; transform: translateX(0); }

.mega__promo {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: center; gap: 10px;
    padding: 22px 24px; border-radius: 18px;
    background: linear-gradient(165deg, #f8fbff 0%, #fff 55%, #f4f9ff 100%);
    border: 1px solid var(--line-soft);
    box-shadow:
        0 1px 0 rgba(255,255,255,1) inset,
        0 8px 24px -12px rgba(15,23,42,.08);
    opacity: 0; transform: translateY(16px);
    transition: opacity .4s .12s, transform .4s .12s, box-shadow .3s, border-color .3s;
}
.has-mega.is-active .mega__promo,
.has-mega.is-open .mega__promo { opacity: 1; transform: translateY(0); }
.mega__promo:hover {
    border-color: var(--blue-100);
    box-shadow:
        0 1px 0 rgba(255,255,255,1) inset,
        0 14px 32px -14px rgba(37,99,235,.2);
}

.mega__promo-deco {
    position: absolute; top: 18px; right: 18px;
    width: 72px; height: 72px; pointer-events: none;
}
.mega__promo-ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 1.5px dashed var(--blue-200);
    opacity: .55;
    animation: promoSpin 18s linear infinite;
}
.mega__promo-icon {
    position: absolute; inset: 14px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--blue-50);
    color: var(--blue-600);
    box-shadow: 0 6px 16px -8px rgba(37,99,235,.35);
}
@keyframes promoSpin { to { transform: rotate(360deg); } }

.mega__promo-badge {
    position: relative; align-self: flex-start;
    font-family: var(--font-head); font-weight: 700; font-size: .68rem;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--blue-700);
    background: var(--blue-50); border: 1px solid var(--blue-100);
    padding: 4px 11px; border-radius: 999px;
}
.mega__promo strong {
    position: relative; max-width: 85%;
    font-family: var(--font-head); font-size: 1.1rem; line-height: 1.3;
    color: var(--ink); letter-spacing: -.02em;
}
.mega__promo small {
    position: relative; max-width: 90%;
    font-size: .84rem; color: var(--muted); flex: 1; line-height: 1.55;
}
.mega__promo-cta {
    position: relative; display: inline-flex; align-items: center; gap: 8px;
    margin-top: 6px; font-family: var(--font-head); font-weight: 600; font-size: .9rem;
    color: #fff; background: var(--grad);
    padding: 10px 18px; border-radius: 999px; align-self: flex-start;
    box-shadow: 0 10px 22px -10px rgba(37,99,235,.55);
    transition: transform .25s, box-shadow .25s;
}
.mega__promo:hover .mega__promo-cta { transform: translateX(3px); box-shadow: 0 14px 28px -10px rgba(37,99,235,.6); }
.mega__promo-cta svg { transition: transform .25s; }
.mega__promo:hover .mega__promo-cta svg { transform: translateX(4px); }

.mega__inner--promo-minimal {
    width: min(980px, 100%);
    max-width: 980px;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}
.mega__inner--promo-minimal .mega__grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 12px 16px;
}
.mega__promo--minimal {
    background: none; border: none; box-shadow: none;
    padding: 8px 0 8px 28px;
    margin-left: 0;
    border-left: 1px solid var(--line-soft);
    overflow: visible;
    flex-shrink: 0;
    align-items: center; justify-content: center;
    align-self: stretch;
}
.mega__promo--minimal:hover { border: none; border-left: 1px solid var(--line-soft); box-shadow: none; }
.mega__promo--minimal .mega__promo-cta {
    margin-top: 0; align-self: center;
    white-space: nowrap;
    padding: 12px 22px;
    font-size: .92rem;
}

/* backdrop saat submenu terbuka (desktop) */
.nav-mega-backdrop {
    position: fixed; inset: 0; z-index: 90;
    background: rgba(15,23,42,.12);
    backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .35s, visibility .35s;
}
.nav-mega-backdrop.is-visible { opacity: 1; visibility: visible; pointer-events: none; }

.navbar__actions { display: flex; align-items: center; gap: 14px; position: relative; z-index: 125; }
.navbar__login { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink); transition: color .2s; }
.navbar__login:hover { color: var(--blue-700); }

.navbar__toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.navbar__toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.navbar__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-active span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Pill / eyebrow ---------- */
.pill {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--blue-50); color: var(--blue-700);
    border: 1px solid var(--blue-100);
    padding: 7px 16px; border-radius: 999px;
    font-size: .85rem; font-weight: 600; font-family: var(--font-head);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(16,185,129,.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,.18);} 50% { box-shadow: 0 0 0 7px rgba(16,185,129,0);} }

.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 14px; }
.eyebrow--light { color: #bfdbfe; }

/* ---------- Section base ---------- */
.section { padding: 96px 0; position: relative; }
.section--tint { background: var(--bg-tint); }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__head--light .section__title, .section__head--light .section__lead { color: #fff; }
.section__head--light .section__lead { color: #cbd5e1; }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.section__lead { font-size: 1.08rem; color: var(--muted); }
.section__lead a { color: var(--blue-600); font-weight: 600; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-600); font-family: var(--font-head); font-weight: 600; font-size: .95rem; transition: gap .2s, color .2s; }
.link-arrow:hover { gap: 11px; color: var(--blue-700); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding: 36px 0 40px; overflow: visible; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob--1 { width: 520px; height: 520px; background: radial-gradient(circle, #bfdbfe, transparent 70%); top: -160px; right: -120px; }
.blob--2 { width: 460px; height: 460px; background: radial-gradient(circle, #cffafe, transparent 70%); bottom: -180px; left: -140px; }
.grid-pattern {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(37,99,235,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,.045) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 78%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 78%);
}
.hero__inner { position: relative; z-index: 1; padding-block: 12px 32px; }
.hero__slider { position: relative; }

/* Layout paten hero — kolom teks tetap, gambar tidak mempengaruhi judul */
.hero__slide {
    display: none;
    grid-template-columns: 540px minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    min-height: 460px;
    animation: heroFade .45s ease;
    position: relative;
    overflow: visible;
}
.hero__slide.is-active { display: grid; }
@keyframes heroFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.hero__content {
    width: 540px;
    max-width: 540px;
    flex-shrink: 0;
    align-self: center;
    position: relative;
    z-index: 2;
}

/* Stage kanan — overflow visible agar mockup & float card tidak terpotong */
.hero__visual-stage {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hero__visual-stage--default {
    padding: 36px 32px 36px 48px;
}
.hero__visual-stage--custom {
    grid-column: 1 / -1;
    grid-row: 1;
    position: absolute;
    top: 50%;
    left: 30%;
    right: -8%;
    transform: translateY(-50%);
    width: auto;
    min-height: 480px;
    padding: 0;
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

/* Hero image custom — penuh & cerah ala Zi.Care, fade tipis di kiri saja */
.hero__visual-stage--custom .hero__visual {
    max-width: none;
    width: 100%;
    margin: 0;
}

.hero__visual--image {
    position: relative;
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
.hero__visual--image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--bg) 0%,
        rgba(255, 255, 255, .94) 8%,
        rgba(255, 255, 255, .42) 18%,
        rgba(255, 255, 255, .08) 28%,
        transparent 38%
    );
    z-index: 2;
    pointer-events: none;
}
.hero-image__img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(80vh, 780px);
    margin: 0 0 0 auto;
    object-fit: contain;
    object-position: right center;
    background: transparent !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: filter .45s ease;
    animation: none;
    filter: saturate(1.12) brightness(1.06) contrast(1.02);
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, .55) 12%,
        #000 24%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, .55) 12%,
        #000 24%
    );
}
.hero__visual--image:hover .hero-image__img {
    filter: saturate(1.16) brightness(1.08) contrast(1.03);
    transform: none;
}

/* Rotator gambar hero — slide + zoom halus */
.hero__image-rotator {
    position: relative;
    width: 100%;
    min-height: min(80vh, 780px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}
.hero__image-frame {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transform: translateX(56px) scale(0.94);
    transition:
        transform .95s cubic-bezier(.22, 1, .32, 1),
        opacity .72s ease,
        visibility .72s ease,
        filter .72s ease;
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
}
.hero__image-frame.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}
.hero__image-frame.is-exit-left {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-52px) scale(1.03);
    z-index: 1;
    filter: blur(2px);
}
.hero__image-frame.is-exit-right {
    opacity: 0;
    visibility: hidden;
    transform: translateX(52px) scale(0.92);
    z-index: 1;
    filter: blur(2px);
}
.hero__image-frame.is-enter-left {
    transform: translateX(-56px) scale(0.94);
}
.hero__image-frame.is-enter-right {
    transform: translateX(56px) scale(0.94);
}
.hero__image-frame.is-active .hero-image__img {
    animation: heroImageKenBurns 5s ease-in-out forwards;
}
@keyframes heroImageKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.045); }
}
.hero__image-frame .hero__visual--image {
    width: 100%;
    height: 100%;
}
.hero__image-frame .hero__visual--image::after {
    transition: opacity .6s ease;
}
.hero__image-frame:not(.is-active) .hero__visual--image::after {
    opacity: 0;
}
.hero__image-dots {
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: flex;
    gap: 7px;
    z-index: 3;
    pointer-events: auto;
}
.hero__image-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgba(37, 99, 235, .22);
    cursor: pointer;
    padding: 0;
    transition: width .25s ease, background .25s ease;
}
.hero__image-dot.is-active {
    width: 22px;
    background: var(--blue-600);
}
.hero__image-dot:hover {
    background: rgba(37, 99, 235, .45);
}

.hero__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}
.hero__arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    display: grid; place-items: center;
    cursor: pointer;
    transition: border-color .2s, color .2s, box-shadow .2s;
}
.hero__arrow:hover { border-color: var(--blue-200); color: var(--blue-600); box-shadow: var(--shadow-sm); }
.hero__dots { display: flex; gap: 8px; }
.hero__dot {
    width: 10px; height: 10px;
    border-radius: 999px;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: width .25s, background .25s;
}
.hero__dot.is-active { width: 28px; background: var(--blue-600); }

.hero__title {
    font-size: 3.15rem;
    font-weight: 800;
    margin: 16px 0 18px;
    line-height: 1.1;
    width: 100%;
    max-width: 540px;
}
.hero__title-line {
    display: block;
    white-space: normal;
    overflow: visible;
}
.hero__title-line:not(:last-child) {
    margin-bottom: 0.02em;
}
.hero__title .text-gradient {
    white-space: nowrap;
}
.hero__subtitle {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 540px;
    width: 100%;
}
.hero__subtitle strong { color: var(--ink-soft); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 26px; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.hero__trust svg { color: var(--green-500); }

/* Dashboard mockup — muat penuh dalam kolom kanan */
.hero__visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}
.hero__visual-stage--default .hero__visual {
    max-width: 540px;
}
.dashboard {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); overflow: hidden;
    width: 100%;
    transform: perspective(1600px) rotateY(-8deg) rotateX(3deg);
    transform-origin: center right;
    transition: transform .5s;
}
.hero__visual-stage--default:hover .dashboard {
    transform: perspective(1600px) rotateY(-4deg) rotateX(1deg);
}
.dashboard__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); background: var(--bg-tint); }
.dashboard__bar > span { width: 11px; height: 11px; border-radius: 50%; background: #e2e8f0; }
.dashboard__bar > span:nth-child(1){ background:#ff5f57;} .dashboard__bar > span:nth-child(2){ background:#febc2e;} .dashboard__bar > span:nth-child(3){ background:#28c840;}
.dashboard__url { margin-left: 10px; flex: 1; font-size: .74rem; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 5px 12px; text-align: center; }
.dashboard__body { display: grid; grid-template-columns: 62px 1fr; min-height: 320px; }
.dashboard__side { background: var(--bg-tint); border-right: 1px solid var(--line-soft); padding: 18px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.dashboard__logo { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); margin-bottom: 8px; }
.dashboard__nav { width: 30px; height: 30px; border-radius: 9px; background: #e5edf7; }
.dashboard__nav.is-active { background: var(--blue-100); box-shadow: inset 0 0 0 2px var(--blue-500); }
.dashboard__main { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.dashboard__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mini-card { background: var(--bg-tint); border: 1px solid var(--line-soft); border-radius: 14px; padding: 13px; display: flex; flex-direction: column; gap: 3px; }
.mini-card__label { font-size: .68rem; color: var(--muted); }
.mini-card__value { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.mini-card__trend { font-size: .66rem; font-weight: 600; color: var(--muted); }
.mini-card__trend.up { color: var(--green-500); }
.dashboard__chart { background: var(--bg-tint); border: 1px solid var(--line-soft); border-radius: 16px; padding: 16px; flex: 1; }
.chart-head { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--ink); font-weight: 600; margin-bottom: 14px; }
.chart-legend { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 500; }
.chart-legend i { width: 9px; height: 9px; border-radius: 3px; background: var(--blue-600); }
.chart-bars { display: flex; align-items: flex-end; gap: 10px; height: 120px; }
.chart-bars span { flex: 1; height: var(--h); background: var(--grad); border-radius: 6px 6px 3px 3px; opacity: .85; transform-origin: bottom; animation: growBar 1s ease forwards; }
@keyframes growBar { from { transform: scaleY(0);} to { transform: scaleY(1);} }

.float-card { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 12px 15px; display: flex; align-items: center; gap: 11px; animation: floaty 4s ease-in-out infinite; }
.float-card strong { display: block; font-family: var(--font-head); font-size: .84rem; color: var(--ink); }
.float-card small { font-size: .72rem; color: var(--muted); }
.float-card__icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.float-card__icon.ok { background: var(--green-500); }
.float-card__icon.beat { background: var(--sky-500); }
.float-card--1 { top: 24px; left: -34px; animation-delay: .2s; }
.float-card--2 { bottom: 34px; right: -26px; animation-delay: 1.4s; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

/* logos strip */
.hero__logos { position: relative; z-index: 1; text-align: center; margin-top: 50px; padding-top: 34px; border-top: 1px solid var(--line-soft); }
.hero__logos p { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 22px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 44px; }
.logo-item { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: #94a3b8; letter-spacing: -.02em; transition: color .25s, transform .25s; cursor: default; }
.logo-item:hover { color: var(--blue-600); transform: translateY(-2px); }

/* ==========================================================================
   SOLUSI
   ========================================================================== */
.solutions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.solution-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 34px 30px; box-shadow: var(--shadow-xs);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative; overflow: hidden;
}
.solution-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.solution-card:hover::before { transform: scaleX(1); }
.solution-card--feature { background: linear-gradient(160deg, #fff, var(--bg-tintr)); border-color: var(--blue-100); }
.solution-card__icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; background: var(--grad); color: #fff; margin-bottom: 22px; box-shadow: var(--shadow-blue); }
.solution-card__icon--teal { background: linear-gradient(120deg, var(--teal-500), var(--sky-500)); box-shadow: 0 16px 40px rgba(20,182,166,.28); }
.solution-card__icon--green { background: linear-gradient(120deg, var(--green-500), #34d399); box-shadow: 0 16px 40px rgba(16,185,129,.28); }
.solution-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.solution-card p { color: var(--muted); margin-bottom: 18px; }
.solution-card__list { margin-bottom: 22px; display: flex; flex-direction: column; gap: 10px; }
.solution-card__list li { position: relative; padding-left: 26px; font-size: .95rem; color: var(--ink-soft); }
.solution-card__list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: var(--blue-50); border: 2px solid var(--blue-500); }
.solution-card__list li::after { content: ""; position: absolute; left: 5px; top: 11px; width: 5px; height: 8px; border-right: 2px solid var(--blue-600); border-bottom: 2px solid var(--blue-600); transform: rotate(40deg); }

/* ==========================================================================
   FITUR GRID
   ========================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-item {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 22px; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.feature-item__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600); margin-bottom: 18px; transition: background .3s, color .3s; }
.feature-item:hover .feature-item__icon { background: var(--grad); color: #fff; }
.feature-item h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-item p { font-size: .92rem; color: var(--muted); }

/* ==========================================================================
   STATISTIK
   ========================================================================== */
.stats-section { background: linear-gradient(135deg, #0b1f4d, #0f172a 60%); overflow: hidden; }
.stats-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(37,99,235,.35), transparent 45%), radial-gradient(circle at 85% 80%, rgba(14,165,233,.28), transparent 45%); }
.stats { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-lg); backdrop-filter: blur(6px); transition: transform .3s, background .3s; }
.stat:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); }
.stat__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1; margin-bottom: 10px; letter-spacing: -.02em; }
.stat__label { font-size: .95rem; color: #94a3b8; font-weight: 500; }

/* ==========================================================================
   KEUNGGULAN
   ========================================================================== */
.why { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.why__panel { background: linear-gradient(160deg, var(--bg-tintr), #fff); border: 1px solid var(--blue-100); border-radius: var(--radius-xl); padding: 44px 40px; box-shadow: var(--shadow); position: relative; }
.why__ring { position: relative; width: 120px; margin: 0 auto 30px; }
.why__ring svg { transform: rotate(-90deg); }
.ring-bg { stroke: var(--blue-100); }
.ring-fg { stroke: url(#none); stroke: var(--blue-600); }
.why__ring-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.why__ring-label strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--ink); }
.why__ring-label span { font-size: .8rem; color: var(--muted); }
.why__panel-list { display: flex; flex-direction: column; gap: 15px; }
.why__panel-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .97rem; color: var(--ink-soft); font-weight: 500; }
.why__panel-list .dot { width: 10px; height: 10px; margin-top: 7px; border-radius: 50%; background: var(--grad); flex-shrink: 0; box-shadow: 0 0 0 4px var(--blue-50); }

.why__list { display: flex; flex-direction: column; gap: 24px; margin: 28px 0 32px; }
.why__item { display: flex; gap: 16px; }
.why__item-ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: 13px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600); }
.why__item h4 { font-size: 1.1rem; margin-bottom: 4px; }
.why__item p { font-size: .95rem; color: var(--muted); }

/* ==========================================================================
   TESTIMONI
   ========================================================================== */
.testi { position: relative; }
.testi__track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 22px; scrollbar-width: none; }
.testi__track::-webkit-scrollbar { display: none; }
.testi-card {
    flex: 0 0 calc(33.333% - 18px); scroll-snap-align: start;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 30px 28px; box-shadow: var(--shadow-xs);
    display: flex; flex-direction: column; gap: 16px;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--blue-100); }
.testi-card__stars { display: flex; gap: 3px; color: #f59e0b; }
.testi-card__quote { color: var(--ink-soft); font-size: 1rem; flex: 1; }
.testi-card__author { display: flex; align-items: center; gap: 13px; padding-top: 8px; border-top: 1px solid var(--line-soft); }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem; flex-shrink: 0; }
.testi-card__author strong { display: block; font-family: var(--font-head); font-size: .98rem; color: var(--ink); }
.testi-card__author small { color: var(--muted); font-size: .82rem; }

.testi__controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 18px; }
.testi__btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: all .25s; box-shadow: var(--shadow-xs); }
.testi__btn:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.testi__dots { display: flex; gap: 8px; }
.testi__dots button { width: 9px; height: 9px; padding: 0; border: none; border-radius: 999px; background: var(--line); cursor: pointer; transition: all .3s; }
.testi__dots button.is-active { width: 26px; background: var(--grad); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq__head { position: sticky; top: calc(var(--nav-h) + 30px); }
.faq__head .section__title { text-align: left; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.is-open { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: none; border: none; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.03rem; color: var(--ink); text-align: left; }
.faq-item__q svg { flex-shrink: 0; color: var(--blue-600); transition: transform .3s; }
.faq-item.is-open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item__a p { padding: 0 22px 22px; color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   DEMO / CTA
   ========================================================================== */
.demo { background: linear-gradient(135deg, #0b1f4d, #10306e 55%, #0f172a); overflow: hidden; }
.demo::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 25%, rgba(37,99,235,.4), transparent 42%), radial-gradient(circle at 90% 85%, rgba(14,165,233,.3), transparent 42%); }
.demo__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.demo__info .section__title { color: #fff; text-align: left; }
.demo__info .section__lead { color: #cbd5e1; }
.demo__benefits { display: flex; flex-direction: column; gap: 13px; margin: 26px 0; }
.demo__benefits li { display: flex; align-items: center; gap: 12px; color: #e2e8f0; font-weight: 500; }
.demo__benefits svg { color: #4ade80; flex-shrink: 0; }
.demo__contact a { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }
.demo__contact svg { color: var(--sky-500); }

.demo__form-wrap { position: relative; }
.demo__form { background: #fff; border-radius: var(--radius-xl); padding: 36px 34px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.demo__form h3 { font-size: 1.35rem; margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--ink); }
.form-field input {
    font-family: var(--font-body); font-size: .96rem; color: var(--ink);
    padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 12px;
    background: var(--bg-tint); transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-field input::placeholder { color: #94a3b8; }
.form-field input:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px var(--blue-50); }
.form-field.has-error input { border-color: #ef4444; background: #fef2f2; }
.err { color: #ef4444; font-size: .78rem; min-height: 0; }
.form-field.has-error .err { min-height: auto; }

.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: var(--bg-tint); border: 1.5px solid var(--line); border-radius: 12px; padding: 4px; }
.segmented label { position: relative; cursor: pointer; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { display: block; text-align: center; padding: 9px; border-radius: 9px; font-size: .9rem; font-weight: 600; font-family: var(--font-head); color: var(--muted); transition: all .2s; }
.segmented input:checked + span { background: #fff; color: var(--blue-700); box-shadow: var(--shadow-xs); }

.form-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-note a { color: var(--blue-600); font-weight: 600; }

.form-success { position: absolute; inset: 0; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 40px; }
.form-success svg { color: var(--green-500); margin-bottom: 8px; }
.form-success h4 { font-size: 1.5rem; }
.form-success p { color: var(--muted); max-width: 320px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #0f172a; color: #94a3b8; padding-top: 72px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer__desc { margin: 18px 0 22px; font-size: .95rem; max-width: 330px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.05); color: #cbd5e1; transition: all .25s; }
.footer__social a:hover { background: var(--grad); color: #fff; transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: .93rem; transition: color .2s, padding .2s; }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__col--contact li { display: flex; align-items: flex-start; gap: 11px; font-size: .93rem; margin-bottom: 13px; }
.footer__col--contact svg { color: var(--sky-500); margin-top: 3px; flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .88rem; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: #fff; }

/* WA fab */
.fab-wa { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.4); transition: transform .25s; animation: floaty 3.5s ease-in-out infinite; }
.fab-wa:hover { transform: scale(1.08); }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .dashboard { transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
    .hero__slide {
        grid-template-columns: 480px minmax(0, 1fr);
        gap: 40px;
    }
    .hero__content,
    .hero__title,
    .hero__subtitle {
        width: 480px;
        max-width: 480px;
    }
    .hero__title { font-size: 2.85rem; }
}

@media (max-width: 1080px) {
    .hero__title-line { white-space: normal; overflow: visible; text-overflow: clip; }
    .hero__slide {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    .hero__content,
    .hero__title,
    .hero__subtitle {
        width: 100%;
        max-width: 100%;
    }
    .hero__title { font-size: clamp(2rem, 6vw, 3rem); }
    .hero__visual-stage,
    .hero__visual-stage--default,
    .hero__visual-stage--custom {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: none;
        overflow: visible;
        padding: 0;
    }
    .hero__visual { max-width: 560px; margin-inline: auto; }
    .hero__visual--image {
        max-width: 100%;
        justify-content: center;
    }
    .hero__visual--image::after {
        inset: 0;
        background: linear-gradient(
            to bottom,
            transparent 72%,
            rgba(255, 255, 255, .75) 100%
        );
    }
    .hero-image__img {
        max-width: 100%;
        max-height: 420px;
        min-height: 0;
        margin: 0 auto;
        opacity: 1;
        transform: none;
        animation: none;
        object-position: center;
        filter: saturate(1.08) brightness(1.04);
        -webkit-mask-image: none;
        mask-image: none;
    }
    .hero__visual--image:hover .hero-image__img { filter: saturate(1.12) brightness(1.06); transform: none; }
    .hero__image-rotator { min-height: 360px; }
    .hero__image-dots {
        right: 50%;
        transform: translateX(50%);
        bottom: 0;
    }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .why, .faq, .demo__inner { grid-template-columns: 1fr; gap: 40px; }
    .faq__head { position: static; }
    .testi-card { flex-basis: calc(50% - 13px); }
}

@media (max-width: 900px) {
    .navbar__menu { position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; background: #fff; padding: calc(var(--nav-h) + 20px) 20px 30px; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .35s cubic-bezier(.16,1,.3,1); z-index: 99; overflow-y: auto; }
    .navbar__menu.is-open { transform: translateX(0); }
    .navbar__menu > ul { flex-direction: column; align-items: stretch; gap: 4px; }
    .navbar__menu > ul > li > a { padding: 13px 16px; font-size: 1rem; border-radius: 12px; }
    .navbar__menu-actions { display: block; margin-top: 18px; }
    .navbar__menu-actions .btn { width: 100%; }
    .navbar__toggle { display: flex; }
    .navbar__login, .navbar__actions .btn { display: none; }
    .nav-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.4); backdrop-filter: blur(2px); z-index: 98; opacity: 0; visibility: hidden; transition: opacity .3s; }
    .nav-overlay.is-open { opacity: 1; visibility: visible; }

    /* Mega menu -> accordion slide on mobile */
    .has-mega { position: relative; }
    .has-mega__trigger::after { display: none; }
    .has-mega__trigger { justify-content: space-between; width: 100%; }
    .mega {
        position: static; width: auto; transform: none;
        padding: 0; opacity: 1; visibility: visible; pointer-events: auto;
        max-height: 0; overflow: hidden;
        transition: max-height .45s cubic-bezier(.16,1,.3,1);
    }
    .has-mega.is-open .mega { /* max-height set inline by JS */ }
    .mega__inner {
        width: auto; min-width: 0;
        grid-template-columns: 1fr; gap: 10px;
        background: #fff; border: 1px solid var(--line-soft);
        box-shadow: none; padding: 12px; border-radius: 16px;
        margin: 6px 0 8px;
    }
    .mega__inner--promo-minimal { min-width: 0; gap: 12px; }
    .mega__inner--promo-minimal .mega__grid { grid-template-columns: 1fr; gap: 4px; }
    .mega__promo--minimal {
        border-left: none; padding: 8px 0 0; margin-left: 0;
        align-self: auto; justify-content: flex-start;
    }
    .mega__promo--minimal:hover { border-left: none; }
    .mega__grid { grid-template-columns: 1fr; gap: 4px; }
    .mega__item {
        padding: 12px; opacity: 1; transform: none;
        transition: background .25s;
    }
    .mega__item:hover { transform: none; box-shadow: none; }
    .mega__ic { width: 40px; height: 40px; }
    .mega__arrow { opacity: .5; transform: none; }
    .mega__promo { opacity: 1; transform: none; padding: 18px; }
}

/* ==========================================================================
   Why / Mengapa Kami — Problem → Solution rows
   ========================================================================== */
.why-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.why-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
}

/* Card shared */
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 28px;
    border-radius: var(--radius-lg);
    transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
    position: relative;
}
.why-card:hover {
    transform: translateY(-4px);
}

/* Problem card */
.why-card--problem {
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    border: 1px solid #fecaca;
}
.why-card--problem:hover {
    box-shadow: 0 16px 40px rgba(239,68,68,.12);
}

/* Solution card */
.why-card--solution {
    background: linear-gradient(135deg, #f0fdf9 0%, #ecfeff 50%, #eff6ff 100%);
    border: 1px solid #bbf7d0;
}
.why-card--solution:hover {
    box-shadow: 0 16px 40px rgba(16,185,129,.14);
}

/* Icon circles */
.why-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-card__icon--red {
    background: linear-gradient(135deg, #fca5a5, #f87171);
    color: #fff;
    box-shadow: 0 6px 20px rgba(248,113,113,.3);
}
.why-card__icon--blue {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,99,235,.3);
}
.why-card__icon--teal {
    background: linear-gradient(135deg, #2dd4bf, #14b8a6);
    color: #fff;
    box-shadow: 0 6px 20px rgba(20,184,166,.3);
}
.why-card__icon--green {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #fff;
    box-shadow: 0 6px 20px rgba(16,185,129,.3);
}

/* Card body */
.why-card__body {
    flex: 1;
    min-width: 0;
}
.why-card__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}
.why-card__label--red {
    background: #fecaca;
    color: #dc2626;
}
.why-card__label--blue {
    background: #dbeafe;
    color: var(--blue-600);
}
.why-card__label--teal {
    background: #ccfbf1;
    color: #0d9488;
}
.why-card__label--green {
    background: #d1fae5;
    color: #059669;
}
.why-card__title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}
.why-card__body p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Arrow connector */
.why-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    flex-shrink: 0;
    color: var(--blue-500);
    position: relative;
}
.why-arrow svg {
    animation: whyArrowPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(37,99,235,.25));
}
@keyframes whyArrowPulse {
    0%, 100% { transform: translateX(0); opacity: .6; }
    50%      { transform: translateX(5px); opacity: 1; }
}

/* ==========================================================================
   LAYANAN & HARGA
   ========================================================================== */
.pricing-tabs-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-promo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    max-width: 980px;
    margin: 0 auto 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 45%, #ecfdf5 100%);
    border: 1px solid #fcd34d;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 32px rgba(245, 158, 11, .12);
}
.pricing-promo__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1c1917;
    box-shadow: 0 8px 20px rgba(245, 158, 11, .35);
}
.pricing-promo__body { flex: 1; min-width: 0; }
.pricing-promo__eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #b45309;
    margin-bottom: 4px;
}
.pricing-promo__title {
    font-family: var(--font-head);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
    line-height: 1.35;
}
.pricing-promo__note {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.45;
}
.pricing-promo__chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}
.pricing-promo__chip {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: .76rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}
.pricing-promo__chip strong {
    font-family: var(--font-head);
    font-size: .95rem;
    color: var(--blue-700);
}

.pricing-tabs {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    background: var(--bg-tint);
    border: 1px solid var(--line);
    border-radius: 999px;
    max-width: 100%;
}
.pricing-tabs__btn {
    border: none;
    background: transparent;
    font-family: var(--font-head);
    font-size: .92rem;
    font-weight: 700;
    color: var(--muted);
    padding: 12px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .25s, color .25s, box-shadow .25s;
    white-space: nowrap;
}
.pricing-tabs__btn.is-active {
    background: #fff;
    color: var(--blue-700);
    box-shadow: var(--shadow-xs);
}
.pricing-panel { display: none; }
.pricing-panel.is-active { display: block; }

.pricing-budget {
    margin-bottom: 28px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #f8fbff 0%, #f0fdf4 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}
.pricing-budget__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}
.pricing-budget__title {
    font-family: var(--font-head);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.pricing-budget__lead {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
    max-width: 520px;
}
.pricing-budget__value {
    text-align: right;
    flex-shrink: 0;
}
.pricing-budget__value span {
    display: block;
    font-size: .76rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 4px;
}
.pricing-budget__value strong {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blue-700);
    line-height: 1.2;
}
.pricing-budget__track-wrap {
    position: relative;
    padding: 4px 0 0;
}
.pricing-budget__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        var(--blue-500) 0%,
        var(--blue-500) var(--budget-fill, 50%),
        #e2e8f0 var(--budget-fill, 50%),
        #e2e8f0 100%
    );
    outline: none;
    cursor: pointer;
    margin: 0;
}
.pricing-budget__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--blue-600);
    box-shadow: 0 4px 14px rgba(37, 99, 235, .35);
    cursor: grab;
    transition: transform .15s, box-shadow .15s;
}
.pricing-budget__slider:active::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(37, 99, 235, .45);
}
.pricing-budget__slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--blue-600);
    box-shadow: 0 4px 14px rgba(37, 99, 235, .35);
    cursor: grab;
}
.pricing-budget__slider::-moz-range-track {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
}
.pricing-budget__labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
}
.pricing-budget__hint {
    margin: 14px 0 0;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.5;
}

.pricing-includes {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    margin: 28px 0 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-lg);
}
.pricing-includes__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--blue-600);
    border: 1px solid var(--blue-100);
}
.pricing-includes__body { flex: 1; min-width: 0; }
.pricing-includes__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 12px;
    margin-bottom: 6px;
}
.pricing-includes__head strong {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--ink);
}
.pricing-includes__head span {
    font-size: .84rem;
    font-weight: 600;
    color: var(--blue-600);
}
.pricing-includes__lead {
    margin: 0 0 12px;
    font-size: .88rem;
    color: var(--ink-soft);
    line-height: 1.5;
}
.pricing-includes__list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
}
.pricing-includes__list li {
    position: relative;
    padding-left: 22px;
    font-size: .84rem;
    color: var(--ink-soft);
    line-height: 1.4;
}
.pricing-includes__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--blue-50);
    border: 2px solid var(--blue-500);
}
.pricing-includes__list li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 4px;
    height: 7px;
    border-right: 2px solid var(--blue-600);
    border-bottom: 2px solid var(--blue-600);
    transform: rotate(40deg);
}
.pricing-includes__note {
    display: block;
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.45;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--blue-100);
}
.pricing-card--featured {
    border-color: #10b981;
    box-shadow: 0 20px 50px rgba(16, 185, 129, .18), 0 0 0 1px rgba(16, 185, 129, .28);
    background: linear-gradient(180deg, #fff 0%, #ecfdf5 100%);
}
.pricing-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--grad);
    color: #fff;
}
.pricing-card__badge--bestseller {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #34d399, #10b981 45%, #059669);
    color: #fff;
    box-shadow: 0 6px 18px rgba(16, 185, 129, .45);
    animation: bestsellerPulse 2.4s ease-in-out infinite;
}
.pricing-card__badge--bestseller svg {
    color: #fbbf24;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .2));
}
@keyframes bestsellerPulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(16, 185, 129, .45); }
    50%      { box-shadow: 0 8px 24px rgba(16, 185, 129, .62); }
}
.pricing-card__name {
    font-family: var(--font-head);
    font-size: 1.35rem;
    margin-bottom: 10px;
}
.pricing-card__desc {
    font-size: .94rem;
    color: var(--muted);
    margin-bottom: 22px;
    min-height: 2.8em;
}
.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line-soft);
}
.pricing-card__promo-wrap {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line-soft);
}
.pricing-card__promo-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border: 1px solid #fcd34d;
    margin-bottom: 10px;
}
.pricing-card__price--promo {
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.pricing-card__was {
    display: block;
    font-size: .92rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 2px;
}
.pricing-card__now {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.pricing-card__after {
    display: block;
    margin-top: 6px;
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500;
}
.pricing-card__save {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    font-size: .8rem;
    color: var(--ink-soft);
    line-height: 1.45;
}
.pricing-card__save span strong {
    color: var(--ink);
}
.pricing-card__save em {
    display: block;
    margin-top: 4px;
    font-style: normal;
    font-weight: 700;
    color: var(--blue-700);
}
.pricing-card--featured .pricing-card__save {
    background: rgba(255, 255, 255, .7);
    border-color: rgba(16, 185, 129, .25);
}
.pricing-card--featured .pricing-card__save em {
    color: #047857;
}
.pricing-card--contact {
    border-color: var(--blue-100);
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.pricing-card__contact {
    margin-bottom: 22px;
    padding: 20px 18px;
    border-radius: 14px;
    background: var(--blue-50);
    border: 1px dashed var(--blue-200);
    text-align: center;
}
.pricing-card__contact-eyebrow {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    margin-bottom: 8px;
}
.pricing-card__contact-title {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1.45rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--blue-700);
    line-height: 1.2;
    margin-bottom: 10px;
}
.pricing-card__contact-note {
    margin: 0;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.5;
}
.pricing-compare__contact {
    font-weight: 700;
    color: var(--blue-700);
}
.pricing-card__amount {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    color: var(--ink);
    letter-spacing: -.02em;
}
.pricing-card__period {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 500;
}
.pricing-card__compare {
    font-size: .82rem;
    font-weight: 600;
    color: var(--blue-600);
    margin: -10px 0 18px;
    line-height: 1.4;
}
.pricing-card__features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 26px;
}
.pricing-card__features li {
    position: relative;
    padding-left: 26px;
    font-size: .93rem;
    color: var(--ink-soft);
}
.pricing-card__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blue-50);
    border: 2px solid var(--blue-500);
}
.pricing-card__features li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 11px;
    width: 5px;
    height: 8px;
    border-right: 2px solid var(--blue-600);
    border-bottom: 2px solid var(--blue-600);
    transform: rotate(40deg);
}
.pricing-note {
    text-align: center;
    font-size: .88rem;
    color: var(--muted);
    margin-top: 28px;
    line-height: 1.6;
    max-width: 820px;
    margin-inline: auto;
}

.pricing-compare {
    margin-top: 36px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}
.pricing-compare__head {
    text-align: center;
    margin-bottom: 22px;
}
.pricing-compare__title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.pricing-compare__lead {
    font-size: .9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}
.pricing-compare__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.pricing-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}
.pricing-compare__table th,
.pricing-compare__table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line-soft);
}
.pricing-compare__table th {
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted);
    background: var(--bg-tint);
}
.pricing-compare__table tbody tr:last-child td {
    border-bottom: none;
}
.pricing-compare__table tr.is-featured td {
    background: linear-gradient(90deg, rgba(236, 253, 245, .6), rgba(255, 255, 255, 0));
}
.pricing-compare__table tr.is-featured td:first-child strong {
    color: #047857;
}
.pricing-compare__promo {
    font-weight: 800;
    color: var(--blue-700);
}

.pricing-custom-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    margin-top: 28px;
    padding: 22px 26px;
    background: linear-gradient(135deg, #f8fbff 0%, #eff6ff 100%);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-lg);
}
.pricing-custom-cta p {
    margin: 0;
    font-size: .95rem;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 560px;
}
.pricing-custom-cta .btn {
    flex-shrink: 0;
}

.pricing-custom {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}
.pricing-custom__group + .pricing-custom__group {
    margin-top: 28px;
}
.pricing-custom__group-title {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--blue-700);
    margin-bottom: 14px;
    letter-spacing: .02em;
}
.pricing-custom__group--special .pricing-custom__group-title {
    color: #b45309;
}
.pricing-custom__group-note {
    font-size: .86rem;
    color: var(--muted);
    margin: -6px 0 14px;
    line-height: 1.45;
}
.pricing-custom__group--special .pricing-module {
    border-color: #fde68a;
    background: linear-gradient(135deg, #fff, #fffbeb);
}
.pricing-custom__group--special .pricing-module:has(.pricing-module__check:checked) {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fff, #fef3c7);
}
.pricing-custom__group--clinical .pricing-custom__group-title {
    color: var(--blue-700);
}
.pricing-custom__group--clinical .pricing-module {
    border-color: var(--blue-200);
    background: linear-gradient(135deg, #fff, var(--bg-tintr));
}
.pricing-custom__group--default .pricing-custom__group-title {
    color: var(--blue-700);
}
.pricing-custom__group--default .pricing-module {
    border-color: #dbeafe;
}
.pricing-custom__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-module {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color .25s, box-shadow .25s, background .25s;
}
.pricing-module:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-xs);
}
.pricing-module:has(.pricing-module__check:checked) {
    border-color: var(--blue-400);
    background: linear-gradient(135deg, #fff, var(--bg-tintr));
    box-shadow: 0 8px 24px rgba(37, 99, 235, .08);
}
.pricing-module--required {
    cursor: default;
    opacity: .92;
}
.pricing-module__check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pricing-module__box {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border: 2px solid var(--line);
    border-radius: 7px;
    background: #fff;
    transition: border-color .2s, background .2s;
    position: relative;
}
.pricing-module__check:checked + .pricing-module__box {
    border-color: var(--blue-600);
    background: var(--blue-600);
}
.pricing-module__check:checked + .pricing-module__box::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(40deg);
}
.pricing-module__body {
    flex: 1;
    min-width: 0;
}
.pricing-module__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}
.pricing-module__head strong {
    font-family: var(--font-head);
    font-size: .98rem;
    color: var(--ink);
}
.pricing-module__price {
    font-size: .82rem;
    font-weight: 700;
    color: var(--blue-700);
    white-space: nowrap;
}
.pricing-module__body small {
    display: block;
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.45;
}

.pricing-summary__inner {
    position: sticky;
    top: 100px;
    background: linear-gradient(160deg, #0b1f4d, #0f2744);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.pricing-summary__inner h3,
.pricing-summary__inner h4 {
    color: #fff;
}
.pricing-summary__title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}
.pricing-summary__lead {
    font-size: .88rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.5;
}
.pricing-summary__lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
    max-height: 280px;
    overflow-y: auto;
}
.pricing-summary__lines li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: .86rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.pricing-summary__lines li span:first-child {
    color: #cbd5e1;
}
.pricing-summary__lines li span:last-child {
    font-weight: 700;
    white-space: nowrap;
    color: #e2e8f0;
}
.pricing-summary__empty {
    font-size: .88rem;
    color: #64748b;
    margin-bottom: 18px;
    font-style: italic;
}
.pricing-summary__empty.is-hidden { display: none; }
.pricing-summary__lines:not(:empty) + .pricing-summary__empty { display: none; }
.pricing-summary__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    margin-bottom: 14px;
}
.pricing-summary__total span {
    font-size: .92rem;
    color: #94a3b8;
}
.pricing-summary__total strong {
    font-family: var(--font-head);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    color: #fff;
    letter-spacing: -.02em;
}
.pricing-summary__note {
    font-size: .75rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
    .pricing-custom { grid-template-columns: 1fr; }
    .pricing-summary__inner { position: static; }
    .why-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .why-arrow {
        width: auto;
        height: 40px;
        justify-content: center;
    }
    .why-arrow svg {
        transform: rotate(90deg);
        animation: whyArrowPulseDown 2s ease-in-out infinite;
    }
    @keyframes whyArrowPulseDown {
        0%, 100% { transform: rotate(90deg) translateX(0); opacity: .6; }
        50%      { transform: rotate(90deg) translateX(5px); opacity: 1; }
    }
}

@media (max-width: 760px) {
    .section { padding: 68px 0; }
    .topbar__contact a:nth-child(2) { display: none; }
    .topbar__badge { display: none; }
    .solutions { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2,1fr); }
    .footer__top { grid-template-columns: 1fr; gap: 30px; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
    .float-card--1 { left: 8px; } .float-card--2 { right: 8px; }
    .hero__actions .btn { flex: 1; }
    .why-card { padding: 22px 20px; gap: 16px; }
    .why-card__icon { width: 46px; height: 46px; border-radius: 12px; }
    .why-card__icon svg { width: 22px; height: 22px; }
}

@media (max-width: 520px) {
    .container { padding-inline: 18px; }
    .pricing-tabs { width: 100%; flex-direction: column; border-radius: var(--radius); }
    .pricing-tabs__btn { width: 100%; text-align: center; white-space: normal; }
    .pricing-budget { padding: 20px 18px; }
    .pricing-budget__head { flex-direction: column; gap: 14px; }
    .pricing-budget__value { text-align: left; }
    .pricing-budget__value strong { font-size: 1.2rem; }
    .pricing-includes { flex-direction: column; padding: 18px; }
    .pricing-includes__list { grid-template-columns: 1fr; }
    .pricing-custom-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 20px 18px;
    }
    .pricing-custom-cta .btn { width: 100%; }
    .pricing-compare { padding: 20px 16px; }
    .pricing-compare__table thead { display: none; }
    .pricing-compare__table tr {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--line-soft);
    }
    .pricing-compare__table tr:last-child { border-bottom: none; }
    .pricing-compare__table td {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 6px 0;
        border: none;
    }
    .pricing-compare__table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--muted);
        font-size: .78rem;
        flex-shrink: 0;
    }
    .features-grid { grid-template-columns: 1fr; }
    .testi-card { flex-basis: 86%; }
    .form-row--2 { grid-template-columns: 1fr; }
    .hero__trust { gap: 12px; }
    .topbar__contact a:first-child { font-size: .78rem; }
    .brand__text { font-size: 1.12rem; }
    .why-card { flex-direction: column; gap: 12px; align-items: flex-start; }
}
