/* Assets: landing.css — Neobrutalism Design System */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
    --bg: #FAF9F4;
    --bg-cream: #F8F6F2;
    --text: #0D0D0D;
    --text-secondary: #666666;
    --border: #000000;
    --primary: #EC3C77;
    --primary-hover: #D6306A;
    --accent-blue: #3D99F5;
    --accent-green: #17CF73;
    --accent-yellow: #F6DB55;
    --accent-pink-tint: rgba(236, 60, 119, 0.1);
    --accent-blue-tint: rgba(61, 153, 245, 0.1);
    --accent-green-tint: rgba(23, 207, 115, 0.1);
    --white: #FFFFFF;
    --gray-light: #CCCCCC;
    --shadow-sm: #000000 2px 2px 0px 0px;
    --shadow-md: #000000 4px 4px 0px 0px;
    --shadow-lg: #000000 6px 6px 0px 0px;
    --radius: 6px;
    --radius-lg: 12px;
}

body {
    background: var(--bg);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    z-index: 100;
    border-radius: 14px;
    transition: 
        max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.4s ease,
        padding 0.4s ease;
}

/* Scrolled / docked state — shrinks into compact pill */
#navbar.navbar--scrolled {
    max-width: 680px;
    height: 50px;
    border-radius: 100px;
    box-shadow: var(--shadow-md);
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.98);
}

/* Active section indicator on nav links */
.nav-link--active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary) !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.logo-dot {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-bottom: 3px solid transparent;
    transition: all 0.15s ease;
}

.nav-link:hover {
    color: var(--text);
    border-bottom-color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.1s ease;
    height: 40px;
    line-height: 20px;
}

.btn:hover {
    box-shadow: var(--shadow-md);
    transform: translate(-2px, -2px);
}

.btn:active {
    box-shadow: #000000 1px 1px 0px 0px;
    transform: translate(1px, 1px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--bg-cream);
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-toggle span:nth-child(1) { top: 13px; }
.mobile-toggle span:nth-child(2) { top: 19px; width: 14px; }
.mobile-toggle span:nth-child(3) { top: 25px; }

/* Hamburger → X morph */
.mobile-toggle.active span:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Menu dropdown */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 24px;
    right: 24px;
    background: var(--white);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 101;
    padding: 8px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transition: 
        opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s 0.25s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: 
        opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s 0s;
}

.mobile-menu.menu--float {
    top: 76px;
}

.mobile-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 16px;
    border-radius: var(--radius);
    transition: background 0.15s ease, color 0.15s ease;
    color: var(--text);
}

.mobile-link:hover {
    background: var(--bg-cream);
    color: var(--primary);
}

.mobile-menu .btn {
    margin-top: 6px;
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 140px 0 64px;
    position: relative;
    overflow: hidden;
}

/* Subtle geometric decoration */
.hero::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--accent-yellow);
    border: 2px solid var(--border);
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--accent-blue);
    border: 2px solid var(--border);
    opacity: 0.1;
    transform: rotate(45deg);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Left content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
}

.hero-title__accent {
    display: inline-block;
    background: var(--accent-yellow);
    padding: 2px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transform: rotate(-1deg);
}

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 440px;
}

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

.btn--lg {
    height: 48px;
    padding: 12px 24px;
    font-size: 15px;
}

/* Social proof */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.hero-proof__avatars {
    display: flex;
}

.hero-proof__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-right: -8px;
}

.hero-proof__avatar:last-child {
    margin-right: 0;
}

.hero-proof__text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 4px;
}

/* Right: Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-stat-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    transition: all 0.15s ease;
}

.hero-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translate(-2px, -2px);
}

.hero-stat-card--main {
    padding: 28px;
}

.hero-stat-card--accent {
    background: var(--accent-blue-tint);
}

.hero-stat-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-stat-card__icon {
    width: 36px;
    height: 36px;
    background: var(--accent-green-tint);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
}

.hero-stat-card__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-card__value {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-stat-card__value--sm {
    font-size: 24px;
    margin-bottom: 0;
}

.hero-stat-card__tag {
    display: inline-flex;
}

.hero-stat-card__growth {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #065F46;
    background: var(--accent-green-tint);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4px 10px;
    box-shadow: #000000 1px 1px 0px 0px;
}

.hero-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-stat-card--small {
    padding: 20px;
}

/* ===== TRUST BENTO GRID ===== */
.trust-section {
    padding: 32px 0 80px;
}

.trust-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

/* Base card */
.trust-item {
    background: var(--bg-cream);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.15s ease;
    position: relative;
}

.trust-item:hover {
    box-shadow: var(--shadow-md);
    transform: translate(-2px, -2px);
}

/* Wide card — spans full width top */
.trust-item--wide {
    grid-column: 1 / -1;
    padding: 32px;
    background: var(--white);
}

/* Middle row cards */
.trust-item--mid {
    padding: 24px;
    min-height: 160px;
}

/* Bottom row cards */
.trust-item--bottom {
    padding: 24px;
    min-height: 140px;
}

.trust-item--bottom:last-child {
    grid-column: span 2;
}

/* Accent card (center middle) */
.trust-item--accent {
    background: var(--accent-pink-tint);
}

/* Highlight card (bottom right CTA) */
.trust-item--highlight {
    background: var(--accent-green-tint);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* Tag */
.trust-item__tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

/* Icon */
.trust-item__icon {
    color: var(--text);
    margin-bottom: 4px;
}

.trust-item__icon--lg {
    margin-bottom: 8px;
}

/* Title */
.trust-item__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.trust-item__title--lg {
    font-size: 22px;
    letter-spacing: -0.02em;
}

/* Description */
.trust-item__desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Metric */
.trust-item__metric {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 8px;
}

.trust-item__metric-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.trust-item__metric-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Arrow link */
.trust-item__arrow {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.15s ease;
}

.trust-item__arrow:hover {
    box-shadow: var(--shadow-md);
    transform: translate(-2px, -2px);
}

/* ===== SECTIONS ===== */
.section {
    margin-bottom: 128px;
}

.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 6px 12px;
    box-shadow: #000000 1px 1px 0px 0px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FEATURE BENTO GRID ===== */
.zig-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.zig-card {
    background: var(--bg-cream);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.15s ease;
}

.zig-card:hover {
    box-shadow: var(--shadow-md);
    transform: translate(-2px, -2px);
}

.card-span-7 { grid-column: span 7; }
.card-span-5 { grid-column: span 5; }
.card-span-12 { grid-column: span 12; }

/* Card Themes */
.card-theme-purple { background: rgba(236, 60, 119, 0.08); }
.card-theme-yellow { background: rgba(246, 219, 85, 0.15); }
.card-theme-blue { background: var(--accent-blue-tint); }
.card-theme-green { background: var(--accent-green-tint); }

.zig-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zig-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.zig-card-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== TIMELINE / CARA KERJA ===== */
.timeline-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.timeline-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: flex-start;
}

.timeline-number {
    width: 56px;
    height: 56px;
    background: var(--accent-yellow);
    border: 2px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-step:nth-child(2) .timeline-number {
    background: var(--accent-blue-tint);
}

.timeline-step:nth-child(3) .timeline-number {
    background: var(--accent-green-tint);
}

.timeline-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    transition: all 0.15s ease;
}

.timeline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translate(-2px, -2px);
}

.timeline-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.faq-card:hover {
    box-shadow: var(--shadow-md);
    transform: translate(-2px, -2px);
}

.faq-card.active {
    border-color: var(--primary);
    box-shadow: #FFFFFF 0px 0px 0px 0px, rgba(236, 60, 119, 0.2) 0px 0px 0px 2px, #EC3C77 4px 4px 0px 0px;
}

.faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-body {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-card.active .faq-body {
    display: block;
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-mega-card {
    background: var(--bg-cream);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 64px 32px;
    text-align: center;
    margin-bottom: 128px;
    position: relative;
    overflow: hidden;
}

.cta-mega-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--accent-yellow);
    border: 2px solid var(--border);
    border-radius: 50%;
    opacity: 0.6;
}

.cta-mega-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    border: 2px solid var(--border);
    transform: rotate(45deg);
    opacity: 0.5;
}

.cta-mega-title {
    font-size: 48px;
    line-height: 1.0;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-mega-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
    background: var(--white);
    border-top: 2px solid var(--border);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: color 0.15s ease;
}

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

.footer-down {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 2px solid var(--border);
    padding-top: 24px;
}

.system-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green-tint);
    color: #065F46;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 6px 12px;
    box-shadow: #000000 1px 1px 0px 0px;
    font-size: 12px;
    font-weight: 700;
}

.system-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
}

.credit-site {
    font-size: 13px;
    font-weight: 700;
}

.credit-site span {
    color: var(--primary);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-grid {
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-mega-title {
        font-size: 36px;
    }

    .zig-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card-span-7, .card-span-5 {
        grid-column: span 1;
    }

    .card-span-12 {
        grid-column: span 2;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bento {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item--wide {
        grid-column: 1 / -1;
    }

    .trust-item--bottom:last-child {
        grid-column: 1 / -1;
    }

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

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    #navbar {
        width: calc(100% - 24px);
        padding: 0 16px;
        height: 52px;
        top: 12px;
        border-radius: 12px;
    }

    #navbar.navbar--scrolled {
        max-width: 100%;
        width: calc(100% - 24px);
        height: 48px;
        border-radius: 100px;
        padding: 0 16px;
    }

    .mobile-menu {
        top: 72px;
        left: 12px;
        right: 12px;
        border-radius: 12px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-links, .nav-actions .nav-link {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        top: 72px;
        left: 12px;
        right: 12px;
    }

    .mobile-menu.menu--float {
        top: 68px;
    }

    .hero-overhaul::before,
    .hero-overhaul::after {
        display: none;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.1;
    }

    .hero-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-stat-card__value {
        font-size: 26px;
    }

    .hero-stat-card__value--sm {
        font-size: 20px;
    }

    .hero-stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .trusted-strip {
        margin-bottom: 48px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-section {
        padding: 24px 0 48px;
    }

    .trust-bento {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .trust-item--wide {
        grid-column: 1 / -1;
    }

    .trust-item--mid {
        min-height: 130px;
    }

    .trust-item--bottom {
        min-height: auto;
    }

    .trust-item--bottom:last-child {
        grid-column: 1 / -1;
    }

    .trust-item {
        padding: 18px;
    }

    .trust-item__title {
        font-size: 14px;
    }

    .trust-item__title--lg {
        font-size: 18px;
    }

    .trust-item__metric-value {
        font-size: 26px;
    }

    .section {
        margin-bottom: 64px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-desc {
        font-size: 14px;
    }

    .zig-grid {
        grid-template-columns: 1fr;
    }

    .card-span-7, .card-span-5, .card-span-12 {
        grid-column: span 1;
    }

    .zig-card {
        padding: 20px;
    }

    .zig-card-title {
        font-size: 18px;
    }

    .timeline-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .timeline-number {
        margin: 0 auto;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-card h3 {
        font-size: 18px;
    }

    .faq-masonry {
        grid-template-columns: 1fr;
    }

    .faq-card {
        padding: 16px 20px;
    }

    .cta-mega-card {
        padding: 40px 20px;
        margin-bottom: 64px;
        box-shadow: var(--shadow-md);
    }

    .cta-mega-title {
        font-size: 28px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .cta-mega-desc {
        font-size: 14px;
    }

    footer {
        padding: 40px 0 24px;
    }

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

    .footer-down {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ===== UTILITY ===== */
::selection {
    background: var(--primary);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}
