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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #eef2ff;
    --accent: #ec4899;
    --success: #10b981;
    --text-dark: #0f0e1a;
    --text-mid: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-soft: #f8f7ff;
    --border: #e2e8f0;
    --hero-bg: #07071a;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid transparent;
}
nav.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.logo {
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.5px;
    color: white;
    transition: color 0.3s;
}
.logo span { color: var(--accent); }
nav.scrolled .logo { color: var(--primary); }

.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}
.nav-link:hover { color: white; }
nav.scrolled .nav-link { color: var(--text-mid); }
nav.scrolled .nav-link:hover { color: var(--primary); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s;
}
.btn-gradient {
    background: linear-gradient(135deg, var(--primary), #8b5cf6, var(--accent));
    background-size: 200% 200%;
    color: white;
    padding: 11px 22px;
    font-size: 14px;
    animation: gradientShift 4s ease infinite;
    box-shadow: 0 4px 20px rgba(99,102,241,0.4);
}
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(99,102,241,0.5);
}
nav.scrolled .btn-gradient {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    animation: none;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 11px 22px;
    font-size: 14px;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-ghost-white {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.2);
    padding: 11px 22px;
    font-size: 14px;
    backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.18); }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 11px 22px;
    font-size: 14px;
}
.btn-outline:hover { background: var(--primary-light); }

.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 12px; }

.btn-white {
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.2); }

/* ── GRADIENT TEXT ── */
.gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 55%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-blue {
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── HERO ── */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--hero-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.45), transparent 70%);
    top: -150px; right: -100px;
    animation: blobFloat 9s ease-in-out infinite;
}
.blob-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(139,92,246,0.35), transparent 70%);
    bottom: -100px; left: 5%;
    animation: blobFloat 11s ease-in-out infinite reverse;
}
.blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(236,72,153,0.3), transparent 70%);
    top: 35%; left: 40%;
    animation: blobFloat 7s ease-in-out infinite 2s;
}
@keyframes blobFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33%  { transform: translate(40px,-30px) scale(1.06); }
    66%  { transform: translate(-25px, 35px) scale(0.94); }
}

/* Grid pattern overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 6% 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left { flex: 1; max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3);
    color: #a78bfa;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

h1 {
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
    color: white;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 38px;
    max-width: 500px;
}
.hero-sub strong { color: rgba(255,255,255,0.9); }

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 5px; }
.trust-dot { width: 3px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 50%; }

/* ── HERO CARDS (GLASSMORPHISM) ── */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cards-wrap {
    position: relative;
    width: 480px;
    height: 400px;
}
.preview-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.preview-card.c1 {
    top: 20px; left: 10px;
    transform: rotate(-5deg);
    opacity: 0.85;
    animation: float1 4.5s ease-in-out infinite;
}
.preview-card.c2 {
    top: 55px; left: 135px;
    z-index: 3;
    box-shadow: 0 24px 64px rgba(99,102,241,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
    animation: float2 5s ease-in-out infinite;
}
.preview-card.c3 {
    top: 28px; right: 15px;
    transform: rotate(4deg);
    opacity: 0.85;
    animation: float3 5.5s ease-in-out infinite;
}
@keyframes float1 {
    0%,100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-12px); }
}
@keyframes float2 {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes float3 {
    0%,100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-10px); }
}

.p-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    margin-bottom: 12px;
    filter: blur(7px);
}
.av-green  { background: linear-gradient(135deg, #84fab0, #8fd3f4); }
.av-purple { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.av-orange { background: linear-gradient(135deg, #f6d365, #fda085); }

.p-name-blur {
    height: 11px;
    width: 65%;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    margin-bottom: 10px;
}
.p-niche {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 100px;
    margin-bottom: 12px;
}
.n-food    { background: rgba(220,252,231,0.15); color: #86efac; border: 1px solid rgba(134,239,172,0.2); }
.n-fashion { background: rgba(252,231,243,0.12); color: #f9a8d4; border: 1px solid rgba(249,168,212,0.2); }
.n-fitness { background: rgba(255,237,213,0.12); color: #fdba74; border: 1px solid rgba(253,186,116,0.2); }

.p-stats {
    display: flex; gap: 10px;
    font-size: 11px; color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}
.p-stats b { color: rgba(255,255,255,0.9); }
.p-price { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.p-price b { color: rgba(255,255,255,0.9); }
.p-unlock {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white; border: none; border-radius: 8px;
    padding: 9px; font-size: 12px; font-weight: 700;
    cursor: default; font-family: inherit;
    box-shadow: 0 2px 12px rgba(99,102,241,0.4);
}

/* ── MARQUEE ── */
.marquee-section {
    background: #f8f7ff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    white-space: nowrap;
}
.marquee-item .dot {
    width: 5px; height: 5px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--text-dark);
    padding: 36px 6%;
}
.stats-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}
.stat { text-align: center; color: white; }
.stat .num {
    display: block;
    font-size: 42px; font-weight: 900; letter-spacing: -2px;
}
.stat .num .suffix { font-size: 28px; }
.stat .lbl { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 96px 6%; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--text-dark); }
.section-inner { max-width: 1280px; margin: 0 auto; }

.tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.6px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 100px;
    margin-bottom: 16px;
}
.tag-dark {
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.25);
    color: #a78bfa;
}

h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.12;
    margin-bottom: 14px;
}
.section-sub {
    font-size: 17px; color: var(--text-mid); max-width: 500px; line-height: 1.7;
}

/* ── BENTO GRID ── */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 56px;
}
.bento-card {
    border-radius: 22px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }

/* Card layout in grid */
.bc-1 { grid-column: 1 / 3; }
.bc-2 { grid-column: 3; }
.bc-3 { grid-column: 1; }
.bc-4 { grid-column: 2 / 4; }

/* Card colors */
.bc-1 { background: linear-gradient(140deg, #1a1040 0%, #2d1b69 60%, #4c1d95 100%); }
.bc-2 { background: linear-gradient(140deg, #022c22 0%, #064e3b 60%, #065f46 100%); }
.bc-3 { background: linear-gradient(140deg, #1e1b4b 0%, #312e81 100%); }
.bc-4 { background: linear-gradient(140deg, #4a044e 0%, #831843 60%, #9d174d 100%); }

/* Decorative orb inside each bento card */
.bento-card::before {
    content: '';
    position: absolute;
    width: 240px; height: 240px;
    border-radius: 50%;
    top: -60px; right: -40px;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
}
.bc-1::before { background: radial-gradient(circle, #818cf8, transparent 70%); }
.bc-2::before { background: radial-gradient(circle, #34d399, transparent 70%); }
.bc-3::before { background: radial-gradient(circle, #a78bfa, transparent 70%); }
.bc-4::before { background: radial-gradient(circle, #f472b6, transparent 70%); }

.bento-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.bento-label {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
}
.bento-card h3 {
    font-size: 22px; font-weight: 800; color: white;
    letter-spacing: -0.5px; margin-bottom: 10px; line-height: 1.2;
}
.bento-card p {
    font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65;
    max-width: 380px;
}
.bento-tag {
    display: inline-flex; align-items: center;
    margin-top: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 12px; font-weight: 600;
    padding: 5px 14px; border-radius: 100px;
    backdrop-filter: blur(8px);
}

/* Decorative number/text in bento card background */
.bento-bg-text {
    position: absolute;
    top: 20px; right: 28px;
    font-size: 100px; font-weight: 900;
    color: rgba(255,255,255,0.04);
    letter-spacing: -4px;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

/* ── HOW IT WORKS ── */
.steps-row {
    display: flex;
    gap: 0;
    margin-top: 56px;
    position: relative;
}
.steps-row::before {
    content: '';
    position: absolute;
    top: 40px; left: calc(16.6% + 24px);
    right: calc(16.6% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.3;
}
.step-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}
.step-circle {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 900; color: white;
    margin: 0 auto 24px;
    box-shadow: 0 8px 28px rgba(99,102,241,0.35);
    position: relative; z-index: 1;
}
.step-item h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.step-item p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ── FEATURE STRIP ── */
.feature-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 56px;
}
.feat {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 26px;
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}
.feat::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.25s;
}
.feat:hover { box-shadow: 0 10px 40px rgba(99,102,241,0.1); transform: translateY(-3px); }
.feat:hover::after { opacity: 1; }
.feat-icon {
    width: 52px; height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 18px;
}
.feat h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.feat p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ── PRICING ── */
.pricing-grid {
    display: flex; gap: 20px;
    margin-top: 56px; flex-wrap: wrap;
    justify-content: center;
}
.price-card {
    flex: 1; min-width: 220px; max-width: 300px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 22px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.25s;
}
.price-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(99,102,241,0.13);
}
.price-card.featured {
    border-color: transparent;
    background: linear-gradient(var(--bg), var(--bg)) padding-box,
                linear-gradient(135deg, var(--primary), #8b5cf6, var(--accent)) border-box;
    border: 2px solid transparent;
}
.price-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    font-size: 12px; font-weight: 700;
    padding: 4px 16px; border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(99,102,241,0.4);
}
.pack-name { font-size: 14px; font-weight: 600; color: var(--text-mid); margin-bottom: 8px; }
.pack-price { font-size: 48px; font-weight: 900; letter-spacing: -2.5px; color: var(--text-dark); line-height: 1; }
.pack-per   { font-size: 13px; color: var(--text-light); margin: 6px 0 16px; }
.pack-save  {
    display: inline-block;
    background: #d1fae5; color: #065f46;
    font-size: 12px; font-weight: 700;
    padding: 4px 12px; border-radius: 100px;
    margin-bottom: 20px;
}
.price-card .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }

/* ── CTA BANNER ── */
.cta-banner {
    margin: 0 5% 96px;
    background: linear-gradient(135deg, #1e1040 0%, #312e81 40%, #4a044e 100%);
    border-radius: 28px;
    padding: 88px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(236,72,153,0.2), transparent 70%);
    border-radius: 50%;
    top: -150px; right: -100px;
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.25), transparent 70%);
    border-radius: 50%;
    bottom: -120px; left: -80px;
    pointer-events: none;
}
.cta-banner h2 { color: white; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p  { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 36px; position: relative; z-index: 1; }
.cta-inner { position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
    background: #06060f;
    color: rgba(255,255,255,0.4);
    padding: 52px 6%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { font-size: 24px; font-weight: 900; color: white; margin-bottom: 8px; }
.footer-logo span { color: var(--accent); }
footer p { font-size: 14px; line-height: 2.2; }

/* ── VALUE TABLE ── */
.value-table {
    margin-top: 56px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 40px rgba(99,102,241,0.07);
}
.vt-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--text-dark);
    padding: 0;
}
.vt-header-cell {
    padding: 18px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.vt-header-cell:nth-child(3) {
    color: #a78bfa;
    background: rgba(99,102,241,0.12);
}
.vt-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid var(--border);
    background: white;
    transition: background 0.15s;
}
.vt-row:hover { background: #faf9ff; }
.vt-cell {
    padding: 18px 28px;
    font-size: 14px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}
.vt-cell:first-child { color: var(--text-dark); font-weight: 600; }
.vt-cell:nth-child(2) {
    color: #ef4444;
}
.vt-cell:nth-child(2)::before {
    content: '✗';
    font-weight: 700;
    color: #ef4444;
    flex-shrink: 0;
}
.vt-cell:nth-child(3) {
    color: #065f46;
    background: #f0fdf4;
    font-weight: 600;
}
.vt-cell:nth-child(3)::before {
    content: '✓';
    font-weight: 800;
    color: #10b981;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .vt-header,
    .vt-row { grid-template-columns: 1fr; }
    .vt-cell { padding: 12px 20px; }
    .vt-cell:first-child { background: #f8f7ff; font-size: 13px; padding-bottom: 4px; }
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bc-1 { grid-column: 1 / 3; }
    .bc-2 { grid-column: 1; }
    .bc-3 { grid-column: 2; }
    .bc-4 { grid-column: 1 / 3; }
}
@media (max-width: 900px) {
    .hero-right { display: none; }
    .hero-inner { min-height: auto; padding: 110px 5% 60px; }
    .steps-row::before { display: none; }
    .steps-row { flex-direction: column; gap: 32px; }
    .step-item { padding: 0; }
}
@media (max-width: 640px) {
    nav { padding: 0 4%; }
    .nav-link { display: none; }
    .section { padding: 64px 5%; }
    .cta-banner { margin: 0 4% 64px; padding: 56px 24px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bc-1,.bc-2,.bc-3,.bc-4 { grid-column: 1; }
    h1 { letter-spacing: -1.5px; }
}
