/* ============================================
   RepostAI Landing — Monochrome Dark Theme
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:       #0a0a0a;
    --bg-card:  #111111;
    --bg-card2: #161616;
    --bg-hover: #1a1a1a;
    --border:   #222222;
    --border-l: #2a2a2a;
    --text:     #e5e5e5;
    --text-dim: #777777;
    --text-xdim:#555555;
    --white:    #ffffff;
    --accent:   #ffffff;
    --radius:   12px;
    --radius-sm:8px;
    --radius-lg:16px;
    --max-w:    1200px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* --- ANIMATION --- */
.fade-target {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-target.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.fade-target:nth-child(2) { transition-delay: 0.08s; }
.fade-target:nth-child(3) { transition-delay: 0.16s; }
.fade-target:nth-child(4) { transition-delay: 0.24s; }
.fade-target:nth-child(5) { transition-delay: 0.32s; }
.fade-target:nth-child(6) { transition-delay: 0.40s; }
.fade-target:nth-child(7) { transition-delay: 0.48s; }

/* --- TYPOGRAPHY --- */
.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 48px;
}

.text-dim { color: var(--text-dim); }

/* --- BUTTONS --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--white);
    color: var(--bg);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}
.btn-primary:hover {
    background: #d4d4d4;
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(255,255,255,0.08);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-l);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}
.btn-outline:hover {
    background: var(--bg-hover);
    border-color: #444;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: transparent;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
    font-family: inherit;
}
.btn-ghost:hover { color: var(--white); }

.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; text-align: center; }

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.logo-icon { display: flex; }

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* --- HERO --- */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* --- HERO VISUAL --- */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.source-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    width: 260px;
    flex-shrink: 0;
}

.card-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-l);
}

.card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.card-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line {
    height: 6px;
    background: var(--border-l);
    border-radius: 3px;
}

.w100 { width: 100%; }
.w95  { width: 95%; }
.w90  { width: 90%; }
.w85  { width: 85%; }
.w80  { width: 80%; }
.w75  { width: 75%; }
.w70  { width: 70%; }
.w65  { width: 65%; }
.w60  { width: 60%; }
.w55  { width: 55%; }
.w50  { width: 50%; }

.transform-arrow {
    flex-shrink: 0;
    opacity: 0.4;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 340px;
}

.mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    transition: border-color var(--transition), transform var(--transition);
}
.mini-card:hover {
    border-color: #444;
    transform: translateY(-2px);
}

.mc-icon {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.mc-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.mc-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mc-lines .line { height: 4px; }

/* last card spans 2 cols on grid */
.platform-cards .mini-card:last-child {
    grid-column: 1 / -1;
}

/* --- PAIN POINT --- */
.pain {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.pain-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-xdim);
    margin-bottom: 16px;
}

.pain-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.stat {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 12px;
}

.stat-unit {
    font-size: 0.5em;
    font-weight: 600;
    color: var(--text-dim);
}

.stat-desc {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* --- HOW IT WORKS --- */
.how {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 24px;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 56px;
    flex-shrink: 0;
}

.step-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-xdim);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 0 auto 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* --- DEMO --- */
.demo {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.demo-source, .demo-outputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-card-header {
    margin-bottom: 4px;
}

.demo-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    padding: 4px 10px;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.demo-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.demo-source .demo-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    min-height: 300px;
}

.demo-output-text {
    font-size: 14px;
    line-height: 1.65;
    color: #ccc;
}

.demo-output-text p {
    margin-bottom: 10px;
}
.demo-output-text p:last-child { margin-bottom: 0; }

.demo-meta {
    font-size: 12px;
    color: var(--text-xdim);
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
}

/* --- PLATFORMS --- */
.platforms {
    padding: 120px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.plat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 20px;
    transition: border-color var(--transition), transform var(--transition);
}
.plat-card:hover {
    border-color: #444;
    transform: translateY(-3px);
}

.plat-icon {
    margin-bottom: 16px;
}

.plat-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.plat-formats {
    font-size: 13px;
    color: var(--text-dim);
}

/* --- FEATURES --- */
.features {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
}
.feat-card:hover {
    border-color: #333;
    transform: translateY(-2px);
}

.feat-card-highlight {
    border-color: #333;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
}

.feat-icon {
    margin-bottom: 20px;
    opacity: 0.9;
}

.feat-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

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

.feat-badge {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-xdim);
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

/* --- PRICING --- */
.pricing {
    padding: 120px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--border-l);
    border-radius: 13px;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    padding: 0;
}
.toggle-switch.active { background: #555; }

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: transform var(--transition);
}
.toggle-switch.active .toggle-knob { transform: translateX(22px); }

.toggle-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
    max-width: 960px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: border-color var(--transition), transform var(--transition);
}
.price-card:hover {
    border-color: #333;
    transform: translateY(-3px);
}

.price-card-popular {
    border-color: #444;
    background: linear-gradient(180deg, #181818 0%, var(--bg-card) 100%);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--bg);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-tier {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.price-dollar {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dim);
}

.price-value {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1;
}

.price-period {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dim);
    margin-left: 4px;
}

.price-desc {
    font-size: 14px;
    color: var(--text-xdim);
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features li {
    font-size: 14px;
    color: var(--text);
    padding-left: 24px;
    position: relative;
}
.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--text-dim);
    border-bottom: 2px solid var(--text-dim);
    transform: rotate(-45deg);
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--border-l);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dim);
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.author-title {
    font-size: 13px;
    color: var(--text-dim);
}

/* --- FAQ --- */
.faq {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    gap: 16px;
    transition: color var(--transition);
}
.faq-question:hover { color: #ccc; }
.faq-question::-webkit-details-marker { display: none; }

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
}
details[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
    padding-bottom: 24px;
    max-width: 640px;
}

/* --- FINAL CTA --- */
.cta-final {
    padding: 120px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.cta-final::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.cta-sub {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 520px;
    margin: 0 auto 16px;
}

.cta-input {
    flex: 1;
    min-width: 240px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
}
.cta-input::placeholder { color: var(--text-xdim); }
.cta-input:focus { border-color: #444; }

.cta-note {
    font-size: 13px;
    color: var(--text-xdim);
    margin-top: 12px;
}

/* --- FOOTER --- */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 64px;
}

.footer-brand {
    max-width: 280px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-xdim);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-xdim);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .platform-grid .plat-card:last-child {
        grid-column: auto;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-links, .nav-actions {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open, .nav-actions.open { display: flex; }
    .nav-actions.open { top: auto; border-bottom: none; padding-top: 0; }
    .mobile-toggle { display: flex; }

    /* Hero */
    .hero { padding: 120px 0 80px; }
    .hero-visual { flex-direction: column; gap: 24px; }
    .source-card { width: 100%; max-width: 320px; }
    .transform-arrow { transform: rotate(90deg); }
    .platform-cards { max-width: 100%; grid-template-columns: repeat(3, 1fr); }

    /* Pain */
    .pain-stats { grid-template-columns: 1fr; gap: 16px; }

    /* Steps */
    .steps { flex-direction: column; align-items: center; gap: 24px; }
    .step-connector { transform: rotate(90deg); padding-top: 0; }

    /* Demo */
    .demo-grid { grid-template-columns: 1fr; }
    .demo-source .demo-content { min-height: auto; }

    /* Platforms */
    .platform-grid { grid-template-columns: repeat(2, 1fr); }

    /* Features */
    .feature-grid { grid-template-columns: 1fr; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    /* Testimonials */
    .testimonial-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-main { flex-direction: column; gap: 40px; }
    .footer-links { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 100px 0 60px; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
    .platform-cards { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 24px; }
    .cta-form { flex-direction: column; }
    .cta-form .btn-primary { width: 100%; }
    .price-value { font-size: 44px; }
}