:root {
    --canvas: #F5F5F5;
    --ink: #0C0A09;
    --ink-muted: #4e4e4e;
    --mint: #A7E5D3;
    --lavender: #C8B8E0;
    --cta: #0C0A09;
    --white: #FFFFFF;
    --success: #10B981;
    --section-gap: 80px;
    --container-max: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--canvas); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,.display { font-family: 'Outfit', sans-serif; font-weight: 300; letter-spacing: -0.02em; }
a { color: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-100px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(100px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* NAV */
nav { height: 80px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: rgba(245,245,245,0.85); backdrop-filter: blur(12px); z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.04); }
.logo { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 24px; text-decoration: none; color: var(--ink); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 500; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 0.6; }
.btn-login { border: 1px solid var(--ink); padding: 8px 20px; border-radius: 50px; }
.btn-primary { background: var(--cta); color: var(--white) !important; padding: 16px 40px; border-radius: 50px; font-weight: 600; text-decoration: none; display: inline-block; font-size: 15px; transition: transform 0.2s, box-shadow 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); padding: 16px 40px; border-radius: 50px; font-weight: 600; text-decoration: none; display: inline-block; font-size: 15px; transition: all 0.2s; cursor: pointer; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

/* HERO */
.hero { padding: 100px 0 80px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.hero-content h1 { font-size: 68px; line-height: 1.05; margin-bottom: 24px; }
.hero-content p { font-size: 19px; color: var(--ink-muted); margin-bottom: 40px; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; align-items: center; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat .number { font-size: 32px; font-weight: 600; font-family: 'Outfit'; }
.hero-stat .label { font-size: 13px; color: var(--ink-muted); }
.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 32px; box-shadow: 0 40px 100px rgba(0,0,0,0.1); }
.orb { position: absolute; width: 400px; height: 400px; border-radius: 50%; filter: blur(100px); z-index: -1; opacity: 0.4; }
.orb-mint { top: -100px; right: -100px; background: var(--mint); }
.orb-lavender { bottom: -100px; left: -100px; background: var(--lavender); }

/* TRUST BAR */
.trust-bar { padding: 40px 0 80px; opacity: 0.5; }
.trust-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-label { font-weight: 600; font-size: 12px; letter-spacing: 2px; color: var(--ink-muted); text-transform: uppercase; }
.trust-logo { font-size: 20px; font-weight: 700; font-family: 'Outfit'; }

/* AUDIO SHOWCASE */
.showcase { padding: var(--section-gap) 0; }
.showcase h2 { font-size: 48px; text-align: center; margin-bottom: 16px; }
.showcase .subtitle { text-align: center; color: var(--ink-muted); margin-bottom: 64px; font-size: 18px; }

.audio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 40px auto 0 auto;
}

@media (max-width: 768px) {
    .audio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.audio-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.02), 0 2px 6px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.audio-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--lavender);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.audio-card:hover::before {
    background: var(--mint);
    opacity: 1;
    height: 100%;
}

.audio-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 229, 211, 0.5); /* Mint tint border */
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.05), 0 8px 15px -3px rgba(0, 0, 0, 0.02);
    background: rgba(255, 255, 255, 0.95);
}

.audio-card.playing {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--mint);
    box-shadow: 0 15px 30px -5px rgba(167, 229, 211, 0.2), 0 4px 10px -2px rgba(167, 229, 211, 0.08);
    transform: translateY(-2px);
}

.audio-card.playing::before {
    background: var(--mint);
    opacity: 1;
}

.play-btn {
    width: 48px;
    height: 48px;
    background: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.play-btn .play-icon-svg {
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 3px;
    fill: currentColor;
}

.play-btn .pause-icon-svg {
    display: none;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.audio-card:hover .play-btn {
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.audio-card.playing .play-btn {
    background: var(--ink);
    box-shadow: 0 4px 10px rgba(167, 229, 211, 0.25);
}

.audio-card.playing .play-btn .play-icon-svg {
    display: none;
}

.audio-card.playing .play-btn .pause-icon-svg {
    display: block;
}

.audio-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.audio-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 2px;
}

.audio-info strong {
    display: block;
    font-size: 15px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.audio-info span {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 500;
}

.audio-progress {
    height: 12px;
    margin-top: 9px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.audio-progress::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 1.5px;
}

.audio-bar {
    height: 3px;
    width: 0;
    background: var(--mint);
    border-radius: 1.5px;
    transition: width 0.1s linear;
    z-index: 1;
}

.audio-card.playing .audio-bar {
    background: var(--mint);
}

/* Premium Visualizer */
.visualizer {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    width: 20px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audio-card.playing .visualizer {
    opacity: 0.85;
}

.visualizer-bar {
    width: 2px;
    height: 100%;
    background: var(--ink);
    border-radius: 1px;
    transform-origin: bottom;
    transform: scaleY(0.15);
}

.audio-card.playing .visualizer-bar {
    animation: bounce 0.8s ease-in-out infinite alternate;
}

.visualizer-bar:nth-child(1) { animation-delay: 0.15s; }
.visualizer-bar:nth-child(2) { animation-delay: 0.45s; }
.visualizer-bar:nth-child(3) { animation-delay: 0s; }
.visualizer-bar:nth-child(4) { animation-delay: 0.3s; }

@keyframes bounce {
    0% { transform: scaleY(0.15); }
    100% { transform: scaleY(1.0); }
}

/* Pulse animation for active card */
.audio-card.playing::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    border: 1px solid var(--mint);
    opacity: 0;
    animation: ping-border 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    pointer-events: none;
}

@keyframes ping-border {
    0% { transform: scale(1.0); opacity: 0.8; }
    100% { transform: scale(1.02, 1.04); opacity: 0; }
}


/* HOW IT WORKS */
.how-section { padding: var(--section-gap) 0; background: var(--white); }
.how-section h2 { font-size: 48px; text-align: center; margin-bottom: 16px; }
.how-section .subtitle { text-align: center; color: var(--ink-muted); margin-bottom: 64px; font-size: 18px; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; }
.how-step { text-align: center; position: relative; }
.how-step::before { counter-increment: step; content: counter(step); font-family: 'Outfit'; font-size: 64px; font-weight: 300; color: var(--mint); opacity: 0.5; display: block; margin-bottom: 16px; }
.how-step h3 { font-size: 20px; font-weight: 600; font-family: 'Inter'; margin-bottom: 12px; }
.how-step p { font-size: 14px; color: var(--ink-muted); }

/* FEATURES BENTO */
.features-section { padding: var(--section-gap) 0; }
.features-section h2 { font-size: 48px; text-align: center; margin-bottom: 16px; }
.features-section .subtitle { text-align: center; color: var(--ink-muted); margin-bottom: 64px; font-size: 18px; }
.features-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.bento-item { background: var(--white); border-radius: 32px; padding: 48px; border: 1px solid rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; justify-content: flex-end; min-height: 280px; }
.bento-item:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.04); border-color: var(--mint); }
.bento-item h3 { font-size: 24px; font-weight: 600; font-family: 'Outfit'; margin-bottom: 12px; }
.bento-item p { font-size: 15px; color: var(--ink-muted); line-height: 1.6; }
.bento-item .badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--ink-muted); margin-bottom: 24px; display: block; opacity: 0.4; }
.bento-wide { grid-column: span 8; }
.bento-slim { grid-column: span 4; }
.bento-mid { grid-column: span 6; }

@media (max-width: 1024px) {
    .bento-wide, .bento-slim, .bento-mid { grid-column: span 6; }
}
@media (max-width: 768px) {
    .bento-wide, .bento-slim, .bento-mid { grid-column: span 12; }
    .bento-item { padding: 32px; min-height: auto; }
}

/* DEEP DIVE SPLIT */
.deep-dive { padding: var(--section-gap) 0; }
.deep-dive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.deep-dive-grid.reverse { direction: rtl; }
.deep-dive-grid.reverse > * { direction: ltr; }
.deep-dive img { width: 100%; border-radius: 32px; }
.deep-dive h2 { font-size: 42px; text-align: left; margin-bottom: 20px; }
.deep-dive p { font-size: 17px; color: var(--ink-muted); margin-bottom: 28px; }
.check-list { list-style: none; padding: 0; margin-bottom: 32px; }
.check-list li { margin-bottom: 14px; display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.check-list li span { color: var(--success); font-weight: 700; }

/* ROLE BENTO */
.roles-section { padding: var(--section-gap) 0; background: var(--canvas); }
.roles-section h2 { font-size: 48px; text-align: center; margin-bottom: 16px; }
.roles-section .subtitle { text-align: center; color: var(--ink-muted); margin-bottom: 64px; font-size: 18px; }
.roles-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.role-item { background: var(--white); border-radius: 40px; padding: 56px; border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s ease; display: flex; flex-direction: column; min-height: 340px; }
.role-item:hover { border-color: var(--mint); transform: translateY(-8px); }
.role-item .role-num { font-family: 'Outfit'; font-size: 12px; font-weight: 700; color: var(--ink-muted); opacity: 0.3; letter-spacing: 2px; margin-bottom: 24px; }
.role-item h3 { font-size: 32px; font-weight: 300; font-family: 'Outfit'; margin-bottom: 8px; color: var(--ink); }
.role-item .role-sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 32px; font-weight: 500; }
.role-item ul { list-style: none; padding: 0; margin-top: auto; }
.role-item li { font-size: 14px; margin-bottom: 12px; color: var(--ink-muted); display: flex; align-items: flex-start; gap: 10px; }
.role-item li::before { content: ""; width: 6px; height: 6px; background: var(--mint); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.role-item.alt li::before { background: var(--lavender); }
.role-large { grid-column: span 7; }
.role-small { grid-column: span 5; }

@media (max-width: 1024px) {
    .role-large, .role-small { grid-column: span 6; }
}
@media (max-width: 768px) {
    .role-large, .role-small { grid-column: span 12; }
    .role-item { padding: 40px; min-height: auto; }
}

/* ADVANTAGE GRID */
.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(0,0,0,0.06); border-radius: 32px; overflow: hidden; }
.adv-cell { background: var(--white); padding: 56px 48px; position: relative; }
.adv-bar { width: 48px; height: 3px; margin-bottom: 24px; border-radius: 2px; }
.adv-bar.mint { background: var(--mint); }
.adv-bar.lavender { background: var(--lavender); }
.section-title { font-size: 48px; text-align: center; margin-bottom: 16px; }
.section-sub { text-align: center; color: var(--ink-muted); margin-bottom: 64px; font-size: 18px; }

/* MI PIPELINE */
.mi-pipeline { margin-top: 64px; border: 1px solid rgba(0,0,0,0.06); border-radius: 32px; overflow: hidden; background: var(--white); }
.mi-pipeline-header { padding: 48px 48px 0; text-align: center; }
.mi-pipeline-header h3 { font-size: 28px; font-family: 'Outfit'; font-weight: 300; margin-bottom: 8px; }
.mi-pipeline-header p { color: var(--ink-muted); font-size: 15px; }
.mi-pipeline-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(0,0,0,0.06); margin-top: 40px; }
.mi-pipeline-step { padding: 40px 32px; border-right: 1px solid rgba(0,0,0,0.06); }
.mi-pipeline-step.no-border { border-right: none; }
.mi-pipeline-num { font-family: 'Outfit'; font-size: 48px; font-weight: 300; margin-bottom: 16px; }
.mi-pipeline-num.mint { color: var(--mint); }
.mi-pipeline-num.lavender { color: var(--lavender); }
.mi-pipeline-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.mi-pipeline-step p { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }
.mi-pipeline-outcomes { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(0,0,0,0.06); }
.mi-pipeline-outcome { padding: 32px 48px; display: flex; align-items: center; gap: 20px; border-right: 1px solid rgba(0,0,0,0.06); }
.mi-pipeline-outcome:last-child { border-right: none; }
.mi-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.mi-dot.success { background: var(--success); }
.mi-dot.muted { background: rgba(0,0,0,0.12); }

/* CALCULATOR BOX */
.calc-box { margin-top: 80px; border: 1px solid rgba(0,0,0,0.06); border-radius: 32px; overflow: hidden; background: var(--white); }
.calc-header { padding: 56px 56px 0; text-align: center; }
.calc-header h3 { font-size: 32px; font-family: 'Outfit'; font-weight: 300; margin-bottom: 8px; }
.calc-header p { color: var(--ink-muted); font-size: 15px; }
.calc-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid rgba(0,0,0,0.06); margin-top: 48px; }
.calc-sliders { padding: 48px; border-right: 1px solid rgba(0,0,0,0.06); }
.slider-group { margin-bottom: 32px; }
.slider-label { display: flex; justify-content: space-between; margin-bottom: 10px; }
.slider-label label { font-size: 13px; font-weight: 500; color: var(--ink); }
.slider-label span { font-size: 14px; font-weight: 700; font-family: 'Outfit'; }
.slider-range { display: flex; justify-content: space-between; font-size: 11px; color: rgba(0,0,0,0.2); margin-top: 4px; }
.slider-note { font-size: 11px; color: var(--ink-muted); margin-top: 8px; }
input[type="range"] { width: 100%; accent-color: var(--ink); height: 4px; }
.calc-results { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.calc-hero { text-align: center; margin-bottom: 40px; }
.calc-hero-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--success); margin-bottom: 8px; }
.calc-hero-number { font-size: 72px; font-weight: 300; font-family: 'Outfit'; line-height: 1; color: var(--success); }
.calc-hero-sub { font-size: 13px; color: var(--ink-muted); margin-top: 8px; }
.calc-bar-wrap { margin-bottom: 32px; }
.calc-bar-track { height: 8px; border-radius: 4px; background: rgba(0,0,0,0.06); overflow: hidden; position: relative; }
.calc-bar-fill { height: 100%; border-radius: 4px; background: var(--mint); transition: width 0.4s ease; }
.calc-bar-labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; }
.calc-bar-free { color: var(--success); font-weight: 600; }
.calc-bar-paid { color: var(--ink-muted); }
.calc-cost { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: center; }
.calc-cost-label { font-size: 11px; color: var(--ink-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.calc-cost-value { font-size: 28px; font-weight: 600; font-family: 'Outfit'; }
.calc-disclaimer { font-size: 11px; color: rgba(0,0,0,0.25); text-align: center; margin-top: 12px; }
.calc-cta { display: flex; justify-content: center; gap: 16px; padding: 32px 56px; border-top: 1px solid rgba(0,0,0,0.06); flex-wrap: wrap; }

/* STATS */
.stats-section { padding: 80px 0; border-top: 1px solid rgba(0,0,0,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 40px; }
.stat-number { font-size: 48px; font-weight: 600; font-family: 'Outfit'; }
.stat-label { color: var(--ink-muted); font-size: 14px; }

/* PRICING DUAL-MODEL */
.pricing-section { padding: var(--section-gap) 0; }
.pricing-section h2 { font-size: 48px; text-align: center; margin-bottom: 16px; }
.pricing-section .subtitle { text-align: center; color: var(--ink-muted); margin-bottom: 48px; font-size: 18px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Toggle */
.pricing-toggle { display: flex; gap: 0; background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 20px; padding: 6px; width: fit-content; margin: 0 auto 56px; }
.ptab { background: transparent; border: none; cursor: pointer; padding: 14px 40px; border-radius: 16px; display: flex; flex-direction: column; align-items: center; gap: 2px; transition: all 0.25s; }
.ptab-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); }
.ptab-name { font-size: 15px; font-weight: 600; font-family: 'Outfit'; color: var(--ink-muted); }
.ptab.active { background: var(--ink); }
.ptab.active .ptab-label, .ptab.active .ptab-name { color: var(--white); }
.ptab.disabled { background: rgba(0,0,0,0.04); color: var(--ink-muted); cursor: not-allowed; pointer-events: none; }
.ptab.disabled .ptab-label, .ptab.disabled .ptab-name { color: var(--ink-muted); }
.ptab-badge { margin-top: 6px; padding: 4px 10px; background: rgba(167,229,211,0.2); color: #0C4A3E; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.pricing-toggle-note { color: var(--ink-muted); font-size: 14px; text-align: center; margin-top: -12px; margin-bottom: 36px; max-width: 660px; margin-left: auto; margin-right: auto; }
.pricing-panel-note { color: var(--ink-muted); font-size: 14px; margin: 12px auto 0; max-width: 620px; }

/* Panel */
.pricing-panel { animation: fadeInUp 0.3s ease; }
.pricing-panel.hidden { display: none; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.pricing-panel-header { text-align: center; margin-bottom: 48px; }
.pricing-panel-header h3 { font-size: 32px; font-family: 'Outfit'; font-weight: 300; margin: 16px 0 12px; }
.pricing-panel-header p { color: var(--ink-muted); font-size: 16px; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.pricing-panel-badge { display: inline-block; padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.pricing-panel-badge.mint { background: var(--mint); color: #0C4A3E; }
.pricing-panel-badge.lavender { background: var(--lavender); color: #3D2B6B; }

/* Rate grid */
.pricing-rate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.pricing-rate-card { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 24px; padding: 28px 24px; transition: all 0.2s; position: relative; }
.pricing-rate-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: var(--mint); }
.pricing-rate-card.highlight { border: 2px solid var(--mint); background: linear-gradient(135deg, rgba(167,229,211,0.12), rgba(255,255,255,1)); }
.prc-icon { font-size: 28px; margin-bottom: 12px; }
.prc-service { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.prc-rate { font-family: 'Outfit'; font-size: 40px; font-weight: 300; color: var(--ink); line-height: 1; }
.prc-unit { font-size: 12px; color: var(--ink-muted); margin-bottom: 12px; }
.prc-note { font-size: 12px; color: var(--ink-muted); line-height: 1.6; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 12px; margin-top: 4px; }

/* Option 1 Only Sections — Hidden by Default */
#option1-only { display: none; }

/* Panel badge row */
.pricing-panel-badge-row { display: flex; gap: 12px; justify-content: center; margin-bottom: 64px; flex-wrap: wrap; }
.pricing-badge-pill { padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; }
.pricing-badge-pill.mint { background: rgba(167,229,211,0.25); color: #0C4A3E; border: 1px solid var(--mint); }
.pricing-badge-pill.lavender { background: rgba(200,184,224,0.25); color: #3D2B6B; border: 1px solid var(--lavender); }

/* Free entry */
.pricing-free { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 32px; overflow: hidden; margin-bottom: 64px; }
.pricing-free-header { padding: 40px 48px 0; text-align: center; }
.pricing-free-header h3 { font-size: 26px; font-family: 'Outfit'; font-weight: 300; margin-top: 12px; }
.pricing-free-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(0,0,0,0.06); margin-top: 32px; }
.pricing-free-item { padding: 32px 24px; text-align: center; border-right: 1px solid rgba(0,0,0,0.06); }
.pricing-free-item:last-child { border-right: none; }
.pfi-num { font-family: 'Outfit'; font-size: 48px; font-weight: 300; margin-bottom: 6px; }
.pfi-num.mint { color: #0C4A3E; }
.pfi-num.lavender { color: #3D2B6B; }
.pfi-label { font-size: 12px; color: var(--ink-muted); font-weight: 500; }

/* Recharge packs */
.pricing-packs { margin-bottom: 64px; }
.pricing-packs-header { text-align: center; margin-bottom: 40px; }
.pricing-packs-header h3 { font-size: 32px; font-family: 'Outfit'; font-weight: 300; margin-bottom: 8px; }
.pricing-packs-header p { color: var(--ink-muted); font-size: 15px; }
.pricing-packs-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.pricing-pack { background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; padding: 28px 20px; text-align: center; position: relative; transition: all 0.2s; }
.pricing-pack:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.pricing-pack.popular { border: 2px solid var(--ink); }
.pricing-pack.enterprise { background: var(--ink); color: var(--white); }
.pack-popular-label { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--ink); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; white-space: nowrap; }
.pack-name { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 10px; }
.pricing-pack.enterprise .pack-name { color: rgba(255,255,255,0.6); }
.pack-price { font-family: 'Outfit'; font-size: 32px; font-weight: 300; color: var(--ink); }
.pricing-pack.enterprise .pack-price { color: var(--white); }
.pack-credit { font-size: 12px; color: var(--ink-muted); margin: 4px 0 10px; }
.pricing-pack.enterprise .pack-credit { color: rgba(255,255,255,0.6); }
.pack-bonus { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.pack-bonus.none { color: var(--ink-muted); background: rgba(0,0,0,0.04); }
.pack-bonus.green { color: #064E3B; background: #D1FAE5; }
.pack-bonus.gold { color: #78350F; background: #FEF3C7; }
.pricing-packs-note { text-align: center; font-size: 12px; color: var(--ink-muted); margin-top: 20px; }

/* Old way vs new way */
.pricing-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 64px; }
.pricing-card { border-radius: 32px; padding: 48px 40px; }
.pricing-card.old { background: #FEE2E2; border: 2px solid #FECACA; }
.pricing-card.new { background: #D1FAE5; border: 2px solid #A7F3D0; }
.pricing-card h3 { font-size: 22px; font-weight: 600; font-family: 'Inter'; margin-bottom: 24px; }
.pricing-card ul { list-style: none; padding: 0; }
.pricing-card li { font-size: 15px; margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; }
.pricing-result { margin-top: 24px; padding: 16px; border-radius: 16px; font-weight: 600; font-size: 15px; text-align: center; }
.pricing-card.old .pricing-result { background: #FCA5A5; color: #7F1D1D; }
.pricing-card.new .pricing-result { background: #6EE7B7; color: #064E3B; }

/* CONTACT */
.contact-section { padding: var(--section-gap) 0; background: var(--white); }
.contact-section h2 { font-size: 48px; text-align: center; margin-bottom: 16px; }
.contact-section .subtitle { text-align: center; color: var(--ink-muted); margin-bottom: 64px; font-size: 18px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1px solid rgba(0,0,0,0.1); border-radius: 12px; font-size: 14px; font-family: 'Inter'; background: var(--canvas); outline: none; transition: border 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--ink); }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { display: flex; gap: 16px; align-items: center; padding: 24px; background: var(--canvas); border-radius: 16px; text-decoration: none; transition: all 0.2s; }
.contact-info-card:hover { transform: translateX(4px); }
.contact-info-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.contact-info-card p { font-size: 13px; color: var(--ink-muted); }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.email-icon { background: #DBEAFE; }
.phone-icon { background: #D1FAE5; }
.whatsapp-icon { background: #D1FAE5; }

/* CTA BANNER */
.cta-banner { padding: 100px 0; text-align: center; }
.cta-banner h2 { font-size: 56px; margin-bottom: 20px; }
.cta-banner p { font-size: 19px; color: var(--ink-muted); margin-bottom: 40px; }

/* FOOTER */
footer { padding: 80px 0 40px; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--ink-muted); margin-top: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--ink); transition: all 0.2s; }
.footer-social a:hover { background: var(--ink); color: white; }
.footer-column h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-column a { display: block; font-size: 14px; color: var(--ink-muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-column a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.05); font-size: 13px; color: var(--ink-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--ink-muted); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--ink); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; gap: 40px; padding: 80px 0 60px; }
    .hero-content h1 { font-size: 44px; }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .deep-dive-grid, .deep-dive-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
    .roles-bento { grid-template-columns: repeat(2, 1fr); }
    .roles-bento > * { grid-column: span 1 !important; }
}

@media (max-width: 768px) {
    :root { --section-gap: 60px; }
    .container { padding: 0 24px; }
    .nav-links { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; width: 100%; background: var(--white); padding: 40px; border-bottom: 1px solid rgba(0,0,0,0.06); gap: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    .nav-links.show { display: flex; }
    .nav-links .btn-primary { width: 100%; text-align: center; }
    .hamburger { display: block; }
    
    .section-title { font-size: 32px; }
    .hero-content h1 { font-size: 38px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-stat .number { font-size: 24px; }
    
    .adv-grid { grid-template-columns: 1fr; }
    .adv-cell { padding: 40px 32px; }
    
    .mi-pipeline-steps { grid-template-columns: 1fr; }
    .mi-pipeline-step { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); padding: 32px; }
    .mi-pipeline-outcomes { grid-template-columns: 1fr; }
    .mi-pipeline-outcome { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .mi-pipeline-outcome:last-child { border-bottom: none; }
    
    .pricing-toggle { padding: 4px; }
    .ptab { padding: 12px 24px; }
    .pricing-rate-grid { grid-template-columns: 1fr; }
    .pricing-packs-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-free-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-free-item:nth-child(3n) { border-right: 1px solid rgba(0,0,0,0.06); }
    .pricing-free-item:nth-child(2n) { border-right: none; }
    .pricing-section h2 { font-size: 32px; }
    .pricing-panel-header h3 { font-size: 24px; }
    .prc-rate { font-size: 32px; }
    .pfi-num { font-size: 36px; }
    .pricing-free-header { padding: 32px 24px 0; }
    
    .calc-body { grid-template-columns: 1fr; }
    .calc-sliders { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); padding: 32px; }
    .calc-results { padding: 40px 32px; }
    .calc-hero-number { font-size: 56px; }
    .calc-header { padding: 40px 32px 0; }
    .calc-cta { padding: 24px; }
    
    .how-grid { grid-template-columns: 1fr; }
    .pricing-compare { grid-template-columns: 1fr; }
    .pricing-rate-grid { grid-template-columns: 1fr 1fr; }
    .pricing-packs-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-free-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-free-item { border-right: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
    .pricing-free-item:nth-child(3n) { border-right: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .roles-bento { grid-template-columns: 1fr; }
}
