:root {
    /* Brand Colors - Editorial depth */
    --coral: #FF4B5C;
    --violet: #7C3AED;
    --indigo: #0F172A; 

    /* Backgrounds - Organic paper-like colors */
    --bg-primary: #FFFDF9;
    --bg-secondary: #F9F5F0;
    --bg-surface: #F2EDE4;

    /* Text */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;

    /* Status & Platforms */
    --success: #22D3A4;
    --vinted: #09B1BA;
    --allegro: #FF5A00;
    --border: rgba(15, 23, 42, 0.08);

    /* Utilities */
    --radius: 24px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== BASE & RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { 
    overflow-x: hidden; 
    width: 100%;
    -webkit-overflow-scrolling: touch;
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

/* NOISE TEXTURE */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 999;
}

/* BACKGROUND BLOBS */
.blob-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
}
.blob {
    position: absolute;
    width: 45vw; height: 45vw;
    border-radius: 50%; opacity: 0.12;
    animation: move 25s infinite alternate ease-in-out;
}
.blob-1 { background: var(--coral); top: -15%; left: -10%; }
.blob-2 { background: var(--violet); bottom: -15%; right: -10%; animation-delay: -7s; }

@keyframes move {
    from { transform: translate(0, 0) rotate(0deg) scale(1); }
    to { transform: translate(10%, 15%) rotate(15deg) scale(1.15); }
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 120px 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { text-wrap: balance; letter-spacing: -0.03em; color: var(--indigo); }
h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.1; font-weight: 800; margin-bottom: 24px; }
.editorial-italic { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; }
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--coral); margin-bottom: 20px; }
.section-desc { font-size: 18px; color: var(--text-secondary); max-width: 540px; margin-bottom: 64px; }

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    padding-top: calc(env(safe-area-inset-top, 0px) + 20px);
    background: #FFFDF9;
    border-bottom: 1px solid var(--border);
}
nav::before {
    content: "";
    position: fixed;
    top: -100px; left: 0; right: 0;
    height: calc(100px + env(safe-area-inset-top, 0px));
    background: #FFFDF9;
    z-index: 1000;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 500; font-size: 22px; display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--indigo); }
.logo-bold { font-weight: 900; }
.logo-icon { width: 32px; height: 32px; border-radius: 8px; }
.beta-chip { display: inline-flex; align-items: center; padding: 3px 10px; background: rgba(124, 58, 237, 0.12); color: var(--violet); border: 1px solid rgba(124, 58, 237, 0.25); border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1; white-space: nowrap; flex-shrink: 0; }
.nav-cta {
    background: var(--indigo); color: white;
    padding: 10px 24px; border-radius: 100px;
    font-weight: 600; font-size: 14px; text-decoration: none;
    transition: var(--transition);
}
.nav-cta:hover { background: var(--coral); transform: translateY(-2px); }

/* ===== HERO ===== */
.hero { padding: 180px 0 100px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
h1 { font-size: clamp(44px, 8vw, 88px); line-height: 0.9; font-weight: 900; margin-bottom: 32px; }
h1 .alt-font { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: 0.95em; color: var(--violet); }
.hero-sub { font-size: 19px; color: var(--text-secondary); max-width: 480px; margin-bottom: 40px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; background: var(--bg-surface);
    border: 1px solid var(--border); border-radius: 100px;
    font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 24px;
}
.pulse-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

/* EMAIL GROUP */
.hero-email-note { margin-top: 12px; }
.btn-primary {
    height: 56px; padding: 0 32px;
    background: var(--indigo); color: white;
    border-radius: 100px; font-weight: 700;
    border: none; cursor: pointer; display: inline-flex;
    align-items: center; gap: 12px; transition: var(--transition);
    white-space: nowrap; font-size: 16px;
}
.btn-primary:hover:not(:disabled) { background: var(--coral); transform: scale(1.05) rotate(-1deg); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.hero-email-note { font-size: 12px; color: var(--text-muted); }

/* ===== PROOF BAR ===== */
.proof-bar { display: flex; gap: 48px; margin-top: 80px; border-top: 1px solid var(--border); padding-top: 48px; flex-wrap: wrap; }
.proof-number { font-size: 40px; font-weight: 900; color: var(--indigo); line-height: 1; margin-bottom: 8px; }
.proof-label { font-size: 13px; color: var(--text-secondary); max-width: 160px; }

/* ===== AI DEMO WIDGET ===== */
.ai-demo-container { position: relative; display: flex; justify-content: center; }
.ai-demo { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; }
.demo-live-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; background: white; border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--text-secondary); }

.scan-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--coral), transparent);
    box-shadow: 0 0 20px var(--coral); z-index: 30; opacity: 0; pointer-events: none;
}
.is-scanning .scan-line { animation: scan 3s infinite ease-in-out; opacity: 1; }
@keyframes scan { 0% { top: 15%; } 50% { top: 85%; } 100% { top: 15%; } }

.phone-frame { width: 280px; background: var(--indigo); border-radius: 48px; padding: 14px; box-shadow: 0 48px 96px rgba(0,0,0,0.15); position: relative; }
.phone-notch { width: 80px; height: 10px; background: rgba(255,255,255,0.1); border-radius: 100px; margin: 0 auto 12px; }
.phone-screen { background: white; height: 400px; border-radius: 32px; overflow: hidden; position: relative; }

.demo-state { position: absolute; inset: 0; padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; opacity: 0; transform: translateY(10px); transition: var(--transition); pointer-events: none; }
.demo-state.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.demo-state-header { display: flex; align-items: center; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.demo-state-title { font-size: 14px; font-weight: 700; color: var(--indigo); }

/* States specific */
.demo-photo-area { flex: 1; display: flex; align-items: center; justify-content: center; }
.demo-clothing-visual { width: 120px; height: 140px; background: var(--bg-secondary); border: 2px dashed var(--border); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.demo-clothing-emoji { font-size: 48px; }
.demo-clothing-label { font-size: 10px; color: var(--text-muted); font-family: monospace; }
.demo-action-btn { background: var(--coral); color: white; border-radius: 100px; padding: 10px; font-size: 13px; font-weight: 700; text-align: center; }

.demo-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.demo-tag { background: rgba(124, 58, 237, 0.08); color: var(--violet); border-radius: 100px; padding: 4px 10px; font-size: 12px; font-weight: 600; }
.demo-progress-bar { height: 6px; background: var(--bg-surface); border-radius: 100px; overflow: hidden; }
.demo-progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--coral), var(--violet)); border-radius: 100px; }
.demo-state-processing.active .demo-progress-fill { animation: progress 2.5s ease-in-out forwards; }
@keyframes progress { to { width: 100%; } }

.demo-price-box { background: var(--bg-secondary); border-radius: 12px; padding: 14px; display: flex; justify-content: space-between; align-items: center; }
.demo-price-value { font-size: 20px; font-weight: 800; color: var(--indigo); }
.demo-platform-check { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.demo-check { color: var(--success); font-weight: 800; }

.demo-dots { display: flex; gap: 8px; margin-top: 16px; }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); }
.demo-dot.active { background: var(--coral); transform: scale(1.3); }

/* ===== PROBLEM SECTION ===== */
.problem { 
    background: var(--bg-secondary); 
    padding-bottom: 180px; /* Więcej miejsca na dole dla przesuniętych kart */
}

.problem-grid { 
    display: grid; 
    grid-template-columns: repeat(12, 1fr); 
    gap: 32px; 
    margin-top: 64px; 
    align-items: start;
}

.pain-card { 
    background: white; 
    padding: 48px; 
    border-radius: var(--radius); 
    border: 1px solid var(--border); 
    transition: var(--transition); 
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Karta 1: Duża, po lewej */
.pain-card:nth-child(1) { 
    grid-column: 1 / 8; 
    min-height: 320px;
}

/* Karta 2: Mniejsza, po prawej, lekko niżej */
.pain-card:nth-child(2) { 
    grid-column: 8 / 13; 
    margin-top: 80px;
    min-height: 280px;
}

/* Karta 3: Średnia, wyśrodkowana, znacznie niżej */
.pain-card:nth-child(3) { 
    grid-column: 3 / 10; 
    margin-top: -20px; /* Lekkie wejście pod kartę nr 1 */
    transform: translateY(100px);
}

.pain-card:hover { 
    transform: translateY(-10px) scale(1.02); 
    box-shadow: 0 32px 64px rgba(0,0,0,0.05); 
    z-index: 10; 
}

/* Hover dla karty 3 musi uwzględniać jej bazowe przesunięcie */
.pain-card:nth-child(3):hover {
    transform: translateY(90px) scale(1.02);
}

.pain-icon { font-size: 32px; margin-bottom: 20px; }
.pain-card h3 { font-size: 22px; margin-bottom: 12px; }
.pain-stat { margin-top: 20px; font-size: 12px; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== HOW IT WORKS ===== */
.steps-flow { display: flex; gap: 32px; margin-top: 64px; }
.step-node { flex: 1; text-align: center; }
.step-node-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--indigo); margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; position: relative; color: white; }
.step-node-icon { display: flex; align-items: center; justify-content: center; line-height: 0; }
.step-node-num { position: absolute; top: -5px; right: -5px; background: var(--coral); color: white; width: 24px; height: 24px; border-radius: 50%; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-connector { flex: 0 0 40px; height: 2px; border-top: 2px dashed var(--border); margin-top: 36px; }

/* ===== PLATFORMS ===== */
.platform-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 48px; }
.platform-logo { background: white; padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); text-align: center; transition: var(--transition); }
.platform-logo:hover { border-color: var(--violet); transform: translateY(-5px); }
.platform-icon { font-size: 40px; margin-bottom: 12px; }
.platform-name { font-weight: 800; font-size: 18px; margin-bottom: 4px; }
.platform-status { font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 100px; letter-spacing: 0.05em; }
.status-ready { background: rgba(34, 211, 164, 0.1); color: var(--success); }
.status-soon { background: var(--bg-surface); color: var(--text-muted); }

/* ===== FOR WHO ===== */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.who-card { background: white; padding: 48px; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.who-card:hover { border-color: var(--violet); }
.tag { display: inline-block; padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 800; margin-bottom: 24px; }
.tag-reseller { background: rgba(255, 75, 92, 0.1); color: var(--coral); }
.tag-shop { background: rgba(124, 58, 237, 0.1); color: var(--violet); }
.who-features { list-style: none; margin-top: 24px; }
.who-features li { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; font-size: 14px; }
.who-features li::before { content: "✓"; color: var(--success); font-weight: 800; }

/* ===== COMPARE TABLE ===== */
.compare { padding: 100px 0; }
.compare-table { max-width: 800px; margin: 48px auto 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.compare-header, .compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.compare-header { background: var(--indigo); color: white; font-weight: 700; font-size: 15px; }
.compare-cell { padding: 16px 20px; }
.compare-label-cell { font-weight: 600; font-size: 14px; }
.compare-row { border-bottom: 1px solid var(--border); }
.compare-row:last-child { border-bottom: none; }
.compare-old { color: var(--text-muted); font-size: 14px; background: rgba(255, 75, 92, 0.04); }
.compare-new { color: var(--success); font-weight: 600; font-size: 14px; background: rgba(34, 211, 164, 0.06); }
.compare-old-header { background: rgba(255,255,255,0.1); }
.compare-new-header { background: rgba(34, 211, 164, 0.2); }

@media (max-width: 600px) {
    .compare-header, .compare-row { grid-template-columns: 1fr 1fr; }
    .compare-label-cell { grid-column: 1 / -1; padding-bottom: 4px; font-weight: 700; border-bottom: none; }
    .compare-cell { padding: 12px 16px; font-size: 13px; }
}

/* ===== PRICING ===== */
.pricing { padding: 100px 0; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 780px; margin: 48px auto 0; }
.pricing-card { background: rgba(255,255,255,0.5); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 40px 32px; text-align: center; position: relative; }
.pricing-card-active { border-color: var(--indigo); box-shadow: 0 0 0 2px var(--indigo), 0 16px 48px rgba(30, 27, 75, 0.1); }
.pricing-badge { display: inline-block; padding: 4px 14px; border-radius: 100px; font-size: 11px; font-weight: 800; text-transform: uppercase; background: var(--indigo); color: white; margin-bottom: 16px; }
.pricing-badge-soon { background: var(--border); color: var(--text-muted); }
.pricing-card h3 { font-size: 22px; margin-bottom: 8px; }
.pricing-price { font-size: 48px; font-weight: 900; color: var(--indigo); margin-bottom: 24px; }
.pricing-price-tbd { color: var(--text-muted); }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: "✓"; color: var(--success); font-weight: 800; flex-shrink: 0; }
.pricing-cta { width: 100%; justify-content: center; }
.pricing-note { font-size: 13px; color: var(--text-muted); font-weight: 600; }

@media (max-width: 600px) {
    .pricing-cards { grid-template-columns: 1fr; }
    .pricing-card { padding: 32px 24px; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 48px 0 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 24px 0; font-size: 18px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: "+"; font-size: 24px; transition: var(--transition); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding-bottom: 24px; color: var(--text-secondary); font-size: 15px; }

/* ===== SIGNUP SECTION ===== */
.signup { background: var(--indigo); color: white; }
.signup .section-label { color: rgba(255,255,255,0.5); }
.signup h2 { color: white; }
.signup-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 64px; border-radius: 40px; backdrop-filter: blur(20px); text-align: center; }
.waitlist-counter { background: rgba(255,255,255,0.05); padding: 12px 24px; border-radius: 100px; display: inline-flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.waitlist-avatars { display: flex; }
.waitlist-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--coral); border: 2px solid var(--indigo); margin-left: -8px; font-size: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.waitlist-avatar:first-child { margin-left: 0; }
.spots-left { color: var(--coral); }

/* ===== MAILERLITE FORM ===== */
/* Signup form */
.signup-form-container { max-width: 520px; margin: 0 auto; }
.signup-form-row { display: flex; gap: 12px; align-items: flex-start; }
.signup-form-row input[type="email"] {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 24px !important;
    border-radius: 100px !important;
    border: 1px solid var(--border) !important;
    background: #ffffff !important;
    color: var(--text-primary) !important;
    font-size: 16px !important;
    font-family: inherit;
    outline: none;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    line-height: 56px !important;
    display: block;
}
.signup-form-row input[type="email"]::placeholder { color: var(--text-muted); opacity: 1; }
.signup-form-row input[type="email"]:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15); }
.signup-form-row .btn-primary {
    font-family: inherit;
    justify-content: center;
}
.signup-form-row .btn-primary:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.signup-msg { margin-top: 16px; padding: 20px; border-radius: var(--radius-sm); text-align: center; }
.signup-msg-error { background: rgba(255, 99, 99, 0.1); color: var(--coral); font-size: 14px; }
.signup-msg-success { background: rgba(34, 211, 164, 0.1); }
.signup-msg-success h4 { color: var(--success); font-size: 20px; margin-bottom: 8px; }
.signup-msg-success p { color: var(--success); margin: 0; }

@media screen and (max-width: 560px) {
    .signup-form-row { flex-direction: column; }
    .signup-form-row input[type="email"] { width: 100%; }
    .signup-form-row button { width: 100%; }
}

/* ===== FOOTER ===== */
footer { padding: 64px 0; border-top: 1px solid var(--border); text-align: center; font-size: 14px; }
footer a { color: var(--text-secondary); text-decoration: none; margin: 0 12px; transition: var(--transition); }
footer a:hover { color: var(--coral); }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 24px; right: 24px; width: 340px; max-width: calc(100vw - 48px); background: white; padding: 24px; border-radius: var(--radius); box-shadow: 0 24px 48px rgba(0,0,0,0.1); border: 1px solid var(--border); z-index: 2000; display: none; }
.cookie-banner.visible { display: block; }

@media (max-width: 480px) {
    .cookie-banner { bottom: 12px; right: 12px; left: 12px; width: auto; padding: 20px; }
}
.cookie-content p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn { flex: 1; padding: 10px; border-radius: 100px; font-size: 12px; font-weight: 700; cursor: pointer; border: 1px solid var(--border); transition: var(--transition); }
.cookie-accept { background: var(--indigo); color: white; border: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin: 0 auto 32px; }
    .hero-email-btn { margin: 0 auto; }
    .hero-badge { margin-bottom: 20px; }
    .proof-bar { justify-content: center; text-align: center; gap: 32px; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; overflow: hidden; }
    .container { padding: 0 20px; width: 100%; }
    .hero { padding: 120px 0 40px; }
    .hero h1 { font-size: clamp(32px, 9vw, 42px); }
    .logo { font-size: 18px; gap: 8px; margin: 0 auto; flex-wrap: nowrap; white-space: nowrap; }
    .logo-icon { width: 28px; height: 28px; }
    .beta-chip { padding: 2px 7px; font-size: 9px; letter-spacing: 0.06em; }
    nav .container { justify-content: center; }
    .nav-cta { display: none; }
    .hero-email-btn { justify-content: center; width: 100%; }
    .waitlist-counter { flex-direction: column; border-radius: 20px; padding: 16px; width: 100%; }
    .waitlist-avatars { margin-bottom: 8px; }
    .problem-grid { grid-template-columns: 1fr; }
    .pain-card:nth-child(n) { grid-column: auto; transform: none; margin-top: 0; padding: 24px; }
    .steps-flow { flex-direction: column; align-items: center; }
    .step-connector { display: none; }
    .step-node { margin-bottom: 40px; width: 100%; }
    .who-grid { grid-template-columns: 1fr; }
    .signup-box { padding: 40px 20px; border-radius: 24px; width: 100%; }
    .btn-primary { justify-content: center; }
    .proof-bar { gap: 24px; flex-direction: column; align-items: center; }
    .proof-item { width: 100%; max-width: none; }
    .proof-label { max-width: none; }
}

@media (max-width: 480px) {
    .phone-frame { transform: scale(0.85); transform-origin: top center; margin-bottom: -60px; }
    .hero h1 { font-size: 32px; }
    .section-label { font-size: 10px; }
}

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* STICKY MOBILE CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    left: 24px;
    left: calc(24px + env(safe-area-inset-left));
    right: 24px;
    right: calc(24px + env(safe-area-inset-right));
    z-index: 1000;
    display: none;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
    opacity: 0;
    transform: translateY(20px);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta-btn {
    box-shadow: 0 10px 30px rgba(255, 75, 92, 0.3);
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .sticky-cta { display: block; }
}
@media (min-width: 769px) {
    .sticky-cta { display: none !important; }
}
