:root {
    /* Color Palette - Clean, Elegant Exora Blue Palette */
    --color-primary: #0072CE;
    --color-primary-hover: #005FA8;
    --color-navy: #0E3B68;
    --color-navy-dark: #082442;
    --color-cyan: #00B4D8;
    
    /* Backgrounds & Surfaces */
    --color-surface: #FFFFFF;
    --color-elevated: #F8FAFD;
    --color-elevated-hover: #EEF4FA;
    --color-ice-blue: #EBF5FE;
    
    /* Typography Colors */
    --color-text: #0B2540;
    --color-text-secondary: #2C4A6F;
    --color-muted: #5B738B;
    
    /* Borders */
    --color-border: #C8DDF0;
    --color-border-subtle: #E2EEF8;
    
    /* Semantic / Promo */
    --color-danger: #D70015;
    --color-success: #0E8A42;
    --color-promo-bg: #FFF0F2;
    --color-promo-text: #D70015;

    /* Gradients */
    --gradient-brand-blue: linear-gradient(135deg, #0E3B68 0%, #0072CE 100%);
    --gradient-vibrant: linear-gradient(135deg, #0072CE 0%, #00B4D8 100%);

    /* Typography - Poppins */
    --font-system: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Radii */
    --radius-pill: 980px;
    --radius-card: 18px;
    --radius-card-sm: 12px;

    /* Spacing scale */
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;

    /* Layout */
    --max-width: 1040px;
    --gutter: 20px;

    /* Transitions.dev Motion Tokens */
    --ease-smooth-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-counter: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.36, 0.64, 1);
    --duration-fast: 250ms;
    --duration-slow: 400ms;
    --duration-very-slow: 500ms;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-surface);
    color: var(--color-text);
    font-family: var(--font-system);
    font-size: 15px;
}

body {
    background-color: var(--color-surface);
    color: var(--color-text);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.headline-display {
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--color-text);
}

.section-headline {
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-12);
    color: var(--color-text);
}

.section-subheadline {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.text-danger { color: var(--color-danger); }
.text-success { color: var(--color-success); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ─── P18: Scroll Reveal & Stagger Transitions (Transitions.dev) ─── */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(3px);
    transition: opacity 0.5s var(--ease-smooth-out),
                transform 0.5s var(--ease-smooth-out),
                filter 0.5s var(--ease-smooth-out);
    will-change: opacity, transform, filter;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.stagger-1 { transition-delay: 40ms; }
.stagger-2 { transition-delay: 80ms; }
.stagger-3 { transition-delay: 120ms; }
.stagger-4 { transition-delay: 160ms; }
.stagger-5 { transition-delay: 200ms; }
.stagger-6 { transition-delay: 240ms; }

/* ─── P15: Subtle Light Shimmer on Badges ─── */
.badge-shimmer {
    position: relative;
    overflow: hidden;
}

.badge-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: shimmerSweep 3.5s infinite linear;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    30% { left: 160%; }
    100% { left: 160%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    border-bottom: 1px solid var(--color-border-subtle);
    transition: box-shadow 0.25s var(--ease-smooth-out), background-color 0.25s var(--ease-smooth-out);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(14, 59, 104, 0.06);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.nav-brand-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.02em;
    line-height: 1;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-link {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s var(--ease-smooth-out);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-cta {
    background: var(--gradient-brand-blue);
    color: #FFFFFF;
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: transform 0.2s var(--ease-smooth-out), box-shadow 0.2s var(--ease-smooth-out);
    box-shadow: 0 2px 8px rgba(14, 59, 104, 0.15);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 114, 206, 0.25);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-system);
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-decoration: none;
    cursor: pointer;
    border: none;
    min-height: 42px;
    padding: 11px 26px;
    font-size: 13.5px;
    line-height: 1.2;
    transition: all 0.25s var(--ease-smooth-out);
    outline: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--gradient-brand-blue);
    color: #FFFFFF;
    box-shadow: 0 3px 12px rgba(14, 59, 104, 0.16);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #082442 0%, #005FA8 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(0, 114, 206, 0.25);
}

.btn-secondary {
    background-color: var(--color-surface);
    color: var(--color-navy);
    border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-elevated);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

/* Badges */
.badge-clean {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background-color: var(--color-ice-blue);
    color: var(--color-primary);
    border: 1px solid rgba(0, 114, 206, 0.15);
}

.badge-clean.brand {
    background-color: var(--color-ice-blue);
    color: var(--color-primary);
}

/* Section Common */
.section {
    padding: 60px 0;
}

.section-light {
    background-color: #FAFCFE;
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
}

.section-header {
    margin-bottom: var(--space-32);
}

/* SECTION 1: HERO */
.hero-section {
    padding-top: 112px;
    padding-bottom: 56px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse 65% 55% at 85% 15%, rgba(110, 231, 220, 0.32) 0%, rgba(186, 230, 253, 0.22) 35%, transparent 70%),
        radial-gradient(ellipse 50% 45% at 15% 20%, rgba(167, 243, 208, 0.25) 0%, rgba(224, 242, 254, 0.15) 40%, transparent 70%),
        radial-gradient(ellipse 45% 40% at 8% 85%, rgba(254, 243, 199, 0.28) 0%, transparent 60%),
        #FFFFFF;
}

.hero-container-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.hero-content-center .badge-clean {
    margin-bottom: var(--space-16);
}

.hero-headline {
    margin-bottom: var(--space-16);
    max-width: 640px;
}

.hero-subheadline {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-muted);
    margin-bottom: var(--space-24);
    max-width: 540px;
}

.hero-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: var(--space-24);
}

.hero-price-label {
    font-size: 12.5px;
    color: var(--color-muted);
}

.hero-price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.03em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
}

/* SECTION 2: KENAL NOTIFIKASI INI */
.notif-container {
    max-width: 820px;
}

.notif-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.notif-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-card);
    padding: 24px 22px;
    border: 1.5px solid var(--color-border-subtle);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s var(--ease-smooth-out), box-shadow 0.3s var(--ease-smooth-out);
}

.notif-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 59, 104, 0.06);
}

.notif-card.pro-card {
    border-color: rgba(0, 114, 206, 0.28);
    box-shadow: 0 4px 18px rgba(14, 59, 104, 0.04);
}

.notif-card.pro-card:hover {
    border-color: rgba(0, 114, 206, 0.55);
    box-shadow: 0 8px 24px rgba(0, 114, 206, 0.08);
}

.notif-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.notif-tier-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.notif-status-badge {
    font-size: 12px;
    font-weight: 600;
}

.notif-size-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.1;
    margin: 4px 0 10px;
}

.notif-progress-track {
    width: 100%;
    height: 6px;
    background-color: #EEF2F6;
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin-bottom: 12px;
}

.notif-progress-bar {
    height: 100%;
    border-radius: var(--radius-pill);
    transition: width 1.2s var(--ease-smooth-out);
}

.notif-progress-bar.bg-danger {
    background-color: #F8444F;
}

.notif-progress-bar.bg-success {
    background-color: #10B981;
}

.notif-desc-text {
    font-size: 12.5px;
    color: var(--color-muted);
    line-height: 1.5;
}

.price-ref-card .strikethrough-huge {
    font-size: 24px;
    font-weight: 700;
    color: #9CA3AF;
    text-decoration: line-through;
    margin: 4px 0 8px;
    line-height: 1.1;
}

.price-exora-card .huge-price-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-navy);
    margin: 4px 0 8px;
    line-height: 1.1;
}

/* ─── Glassmorphism Glass Card ─── */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 8px 32px rgba(14, 59, 104, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 20px 10px rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.9),
        transparent
    );
    z-index: 1;
    pointer-events: none;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9),
        transparent,
        rgba(255, 255, 255, 0.3)
    );
    z-index: 1;
    pointer-events: none;
}

/* Savings Stat Bar */
.savings-stat-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-card);
    padding: 20px 16px;
    margin-top: var(--space-16);
    text-align: center;
    box-shadow: 0 4px 18px rgba(14, 59, 104, 0.04);
}

.stat-item {
    padding: 0 10px;
    border-right: 1px solid var(--color-border-subtle);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.stat-label {
    font-size: 12px;
    color: var(--color-muted);
    margin-top: 4px;
}

/* SECTION 3: YANG LANGSUNG KAMU RASAKAN */
.benefits-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
}

.benefit-title {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
    line-height: 1.35;
}

.benefit-desc {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.55;
}

/* SECTION 4: SEMUA YANG KAMU DAPAT */
.checklist-container {
    max-width: 720px;
}

.checklist-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.checklist-group .group-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--color-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.clean-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.clean-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--color-text);
    line-height: 1.5;
}

.check-icon-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-top: 3px;
}

.check-svg {
    width: 17px;
    height: 17px;
    display: block;
    transform: scale(1);
    opacity: 1;
    transition: transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1), opacity 0.25s var(--ease-smooth-out);
}

.check-path {
    stroke-dasharray: 14;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Status awal sebelum digulir masuk ke layar */
.js-loaded .clean-check-list li:not(.is-checked) .check-svg {
    transform: scale(0.4);
    opacity: 0.2;
}

.js-loaded .clean-check-list li:not(.is-checked) .check-path {
    stroke-dashoffset: 14;
}

/* Animasi dipicu saat item masuk ke layar */
.clean-check-list li.is-checked .check-svg {
    transform: scale(1);
    opacity: 1;
}

.clean-check-list li.is-checked .check-path {
    stroke-dashoffset: 0;
}

/* SECTION: PRICING */
.section-pricing {
    background: 
        radial-gradient(ellipse 70% 60% at 85% 20%, rgba(110, 231, 220, 0.32) 0%, rgba(186, 230, 253, 0.22) 40%, transparent 75%),
        radial-gradient(ellipse 55% 50% at 15% 30%, rgba(167, 243, 208, 0.25) 0%, rgba(224, 242, 254, 0.12) 45%, transparent 70%),
        radial-gradient(ellipse 50% 45% at 10% 80%, rgba(254, 243, 199, 0.28) 0%, transparent 65%),
        #FAFCFE;
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-24);
    max-width: 820px;
    margin: 0 auto;
}

.pricing-plan-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-radius: 20px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 8px 30px rgba(14, 59, 104, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.35s var(--ease-smooth-out);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pricing-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    z-index: 1;
    pointer-events: none;
}

.pricing-plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent, rgba(255, 255, 255, 0.3));
    z-index: 1;
    pointer-events: none;
}

.pricing-plan-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 14px 38px rgba(14, 59, 104, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.pricing-plan-card.featured {
    background: rgba(255, 255, 255, 0.82);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 8px 30px rgba(14, 59, 104, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.pricing-plan-card.featured::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
}

/* State Saat Diklik / Dipilih -> Berubah Menjadi Putih Solid */
.pricing-plan-card.is-selected {
    background: #FFFFFF !important;
    border-color: var(--color-primary) !important;
    box-shadow: 
        0 18px 44px rgba(0, 114, 206, 0.18),
        0 2px 8px rgba(0, 114, 206, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    transform: translateY(-4px);
}

.pricing-plan-card.is-selected::before {
    background: linear-gradient(90deg, transparent, rgba(0, 114, 206, 0.9), transparent);
}

.plan-top-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 6px;
}

.badge-nowrap {
    white-space: nowrap;
    display: inline-flex;
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 10px;
}

.plan-title {
    font-size: 17px;
    margin-bottom: 2px;
    color: var(--color-navy);
}

.plan-desc {
    font-size: 12.5px;
    color: var(--color-muted);
    min-height: 36px;
    margin-bottom: var(--space-12);
}

.timer-badge-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-promo-bg);
    border: 1px solid rgba(215, 0, 21, 0.15);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-16);
    width: fit-content;
}

.timer-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-promo-text);
}

.timer-digits {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-promo-text);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

.plan-cost {
    margin-bottom: var(--space-20);
}

.strikethrough-box {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.price-strikethrough {
    font-size: 13.5px;
    color: var(--color-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.discount-pill {
    background-color: var(--color-promo-bg);
    color: var(--color-promo-text);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
}

.price-main-row {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.plan-cost .currency {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy);
}

.plan-cost .amount {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--color-navy);
}

.plan-cost .period {
    font-size: 12.5px;
    color: var(--color-muted);
    margin-left: 3px;
}

.plan-features {
    list-style: none;
    margin-bottom: var(--space-24);
    flex-grow: 1;
}

.plan-features li {
    font-size: 13px;
    line-height: 1.5;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--color-text-secondary);
}

.plan-features li .bullet {
    color: var(--color-muted);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-features li .feature-text {
    flex: 1;
    color: var(--color-text-secondary);
}

.plan-features li .feature-text strong {
    color: var(--color-navy);
}

/* ─── P21: Modern CSS Grid Accordion Expand (Transitions.dev) ─── */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-entry {
    border-bottom: 1px solid var(--color-border-subtle);
}

.faq-trigger {
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-system);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--color-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    transition: color 0.2s var(--ease-smooth-out);
}

.faq-trigger:hover {
    color: var(--color-primary);
}

.faq-indicator {
    font-size: 18px;
    color: var(--color-muted);
    font-weight: 400;
    transition: transform 0.26s var(--ease-smooth-out), color 0.26s var(--ease-smooth-out);
}

.faq-entry.active .faq-indicator {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 260ms var(--ease-smooth-out);
}

.faq-entry.active .faq-panel {
    grid-template-rows: 1fr;
}

.faq-panel-inner {
    overflow: hidden;
}

.faq-panel-inner p {
    padding-bottom: 16px;
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.55;
}

/* FINAL CTA */
.final-cta-box {
    background: 
        radial-gradient(ellipse 80% 70% at 85% 20%, rgba(110, 231, 220, 0.28) 0%, rgba(186, 230, 253, 0.2) 40%, transparent 75%),
        radial-gradient(ellipse 60% 50% at 15% 80%, rgba(254, 243, 199, 0.25) 0%, transparent 65%),
        #F0F6FD;
    border-radius: var(--radius-card);
    padding: 48px 28px;
    text-align: center;
    border: 1.5px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(14, 59, 104, 0.05);
    position: relative;
    overflow: hidden;
}

.final-cta-box h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    margin-bottom: var(--space-8);
    color: var(--color-navy);
    position: relative;
    z-index: 2;
}

.final-cta-box p {
    font-size: 14px;
    color: var(--color-muted);
    max-width: 480px;
    margin: 0 auto var(--space-20);
    position: relative;
    z-index: 2;
}

.final-cta-box .hero-actions {
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* FOOTER */
.footer-clean {
    background-color: var(--color-elevated);
    border-top: 1px solid var(--color-border-subtle);
    padding: 36px 0 24px;
    font-size: 11.5px;
    color: var(--color-muted);
}

.footer-navs {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-24);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border-subtle);
    margin-bottom: 16px;
}

.footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand-wrap .brand-title-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.02em;
    line-height: 1;
    display: flex;
    align-items: center;
}

.footer-col h4 {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s var(--ease-smooth-out);
}

.footer-col ul li a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.footer-disclaimer-text {
    line-height: 1.5;
    margin-bottom: 12px;
    color: #7B8F9F;
    font-size: 11px;
}

.footer-row-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 8px;
    font-size: 11px;
}

/* Responsive */
@media (max-width: 900px) {
    .notif-cards-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid-3col {
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .footer-navs {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .hero-section { padding-top: 92px; padding-bottom: 44px; }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 10px;
        margin: 12px auto 0;
    }
    .hero-actions .btn {
        width: 100%;
        min-height: 40px;
        font-size: 13px;
        padding: 10px 18px;
    }
    .benefits-grid-3col { grid-template-columns: 1fr; }
    .savings-stat-bar { grid-template-columns: 1fr; gap: 12px; padding: 14px 12px; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--color-border-subtle); padding-bottom: 8px; }
    .stat-item:last-child { border-bottom: none; }
    .footer-navs { grid-template-columns: 1fr; }
    .notif-card { padding: 18px 16px; }
    .pricing-plan-card { padding: 26px 18px; }
}
