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

:root {
    --bg-deep: #0C0A09;
    --bg-card: #1C1917;
    --bg-subtle: #292524;
    --bg-light: #3A3533;
    --coral: #FF6B6B;
    --rose: #F4A4A0;
    --gold: #E8C872;
    --cream: #FAF5EF;
    --text: #FAFAF9;
    --text-muted: #A8A29E;
    --text-dim: #78716C;
    --green: #6BB68C;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

/* Noise texture */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Nav */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(12, 10, 9, 0.8);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.5px;
}

.logo span { color: var(--coral); }

.nav-cta {
    padding: 10px 24px;
    background: var(--coral);
    color: var(--bg-deep);
    border: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--rose);
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--coral);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 140px 40px 80px;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.12) 0%, rgba(244, 164, 160, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 200, 114, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    position: relative;
}

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

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

h1 .highlight {
    background: linear-gradient(135deg, var(--coral), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 36px;
    background: var(--coral);
    color: var(--bg-deep);
    border: none;
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--rose);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.25);
}

.btn-secondary {
    padding: 16px 28px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--bg-subtle);
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-secondary:hover {
    border-color: var(--text-dim);
    color: var(--text);
}

/* Large Primary CTA - High Conversion */
.btn-primary-large {
    padding: 22px 48px;
    background: var(--coral);
    color: var(--bg-deep);
    border: none;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-primary-large:hover {
    background: var(--rose);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

/* Hero Social Proof Section */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
    padding: 16px 20px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    max-width: fit-content;
}

.social-avatars {
    display: flex;
    align-items: center;
    gap: -8px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--coral);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-plus {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--coral);
    border: 2px solid var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--bg-deep);
    margin-left: -8px;
}

.social-proof-text {
    font-size: 14px;
    color: var(--text);
    margin: 0;
    line-height: 1.4;
}

.social-proof-text strong {
    color: var(--coral);
    font-weight: 700;
}

.trust-line {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.trust-line span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hero Stats Callouts */
.hero-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.hero-stat {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px 24px;
    min-width: 100px;
    transition: all 0.3s;
}

.hero-stat:hover {
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Hero Visual - Product Stack */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.product-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 280px;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.product-card.floating {
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.product-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-name {
    font-weight: 600;
    font-size: 15px;
    flex: 1;
}

.product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--coral);
}

/* Trust Bar */
.trust-bar {
    position: relative;
    padding: 60px 40px;
    z-index: 1;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.trust-bar-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 24px;
    text-align: center;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.brand-logo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: var(--bg-card);
    border: 1px solid var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
    color: var(--coral);
}

/* Sections */
.section {
    position: relative;
    padding: 80px 40px;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--coral);
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 60px;
    max-width: 600px;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(255, 107, 107, 0.2);
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.1);
    color: var(--coral);
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* FAQ Section */
.faqs-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255,107,107,0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--coral);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.faq-answer strong {
    color: var(--text);
}

/* Diff Cards */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
}

.diff-card {
    padding: 32px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.05);
}

.diff-card.them { background: rgba(120, 113, 108, 0.08); }
.diff-card.us {
    background: rgba(255, 107, 107, 0.06);
    border-color: rgba(255, 107, 107, 0.15);
}

.diff-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.diff-card.them .diff-label { color: var(--text-dim); }
.diff-card.us .diff-label { color: var(--coral); }

.diff-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.diff-card li {
    font-size: 15px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.diff-card.them li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--text-dim);
    font-size: 12px;
}

.diff-card.us li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--coral);
}

/* AI Works Grid */
.ai-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
}

.ai-step {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
}

.ai-step:hover {
    border-color: rgba(255, 107, 107, 0.2);
    transform: translateY(-4px);
}

.ai-step-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.ai-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ai-step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* Before/After Results Section */
.results-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 107, 0.03) 100%);
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 1100px;
    align-items: center;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s;
}

.result-card:hover {
    transform: translateY(-4px);
}

.result-card.highlight {
    border-color: rgba(255, 107, 107, 0.3);
    background: rgba(255, 107, 107, 0.05);
}

.result-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.result-badge.before {
    background: rgba(120, 113, 108, 0.2);
    color: var(--text-dim);
}

.result-badge.after {
    background: rgba(255, 107, 107, 0.2);
    color: var(--coral);
}

.result-visual {
    font-size: 64px;
    margin: 20px 0;
}

.result-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0;
}

.result-stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    padding: 8px 16px;
    background: var(--bg-subtle);
    border-radius: 8px;
}

.result-card.highlight .result-stat {
    background: rgba(255, 107, 107, 0.1);
    color: var(--coral);
}

.result-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
}

.result-arrow {
    font-size: 32px;
    color: var(--coral);
    font-weight: 700;
}

/* Product Showcase Grid */
.products-showcase {
    background: var(--bg-deep);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
}

.showcase-product {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.showcase-product:hover {
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.15);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--coral);
    color: var(--bg-deep);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
}

.product-visual {
    font-size: 48px;
    margin: 20px 0;
}

.showcase-product h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.product-detail {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 40px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.product-meta .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--coral);
}

.product-meta .category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    background: var(--bg-subtle);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Sample Results */
.sample-results {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px;
    max-width: 1000px;
}

.routine-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 0;
}

.routine-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text);
}

.routine-col h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    margin-right: 12px;
}

.routine-col h4:last-of-type::before { background: var(--gold); }

.routine-step {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.routine-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-action {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.step-product {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text);
}

.step-brand {
    font-size: 12px;
    color: var(--text-muted);
}

/* Social Proof */
.social-proof { max-width: 1200px; }

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.proof-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
}

.proof-number {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.proof-label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.testimonial {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 28px;
}

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-deep);
    font-size: 12px;
}

.author-info h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.stars {
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 12px;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 100px 40px 120px;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    max-width: 100%;
    margin: 0 auto 20px;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 36px;
}

/* Footer */
footer {
    padding: 40px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
}

footer a:hover { color: var(--text); }

/* Email Capture Section */
.email-capture-section {
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(232, 200, 114, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin: 40px auto;
    max-width: 800px;
}

.email-capture-content {
    max-width: 600px;
    margin: 0 auto;
}

.email-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.email-capture-section h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--cream);
    letter-spacing: -1px;
}

.email-capture-section p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.email-form {
    margin-bottom: 20px;
}

.email-input-group {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input-group input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
}

.email-input-group input:focus {
    outline: none;
    border-color: var(--coral);
    background: var(--bg-subtle);
}

.email-input-group input::placeholder {
    color: var(--text-dim);
}

.email-submit-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--coral), var(--rose));
    color: var(--bg-deep);
    border: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.email-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.email-submit-btn:active {
    transform: translateY(0);
}

.email-message {
    margin-top: 16px;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.email-message.success {
    background: rgba(107, 182, 140, 0.1);
    border-color: var(--green);
    color: var(--green);
}

.email-message.error {
    background: rgba(255, 107, 107, 0.1);
    border-color: var(--coral);
    color: var(--coral);
}

.email-message.info {
    background: rgba(232, 200, 114, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.email-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    color: var(--text-dim);
}

/* Mobile */
@media (max-width: 768px) {
    nav { padding: 16px 20px; }

    /* Hide decorative glows on mobile to prevent horizontal scroll */
    .hero-glow, .hero-glow-2 { display: none; }

    .hero {
        grid-template-columns: 1fr;
        padding: 120px 20px 80px;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        gap: 12px;
        justify-content: space-between;
    }

    .hero-stat {
        flex: 1;
        min-width: 90px;
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 10px;
    }

    .section { padding: 60px 20px; }
    .trust-bar { padding: 40px 20px; }
    .brands-grid { gap: 20px; }
    .steps-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .ai-works-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .routine-preview { grid-template-columns: 1fr; gap: 32px; }
    .hero-actions { flex-direction: column; align-items: flex-start; width: 100%; }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .result-arrow {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .trust-line { flex-direction: column; align-items: flex-start; gap: 12px; }
    h1 { letter-spacing: -1px; }
    footer { flex-direction: column; gap: 12px; text-align: center; }

    /* Ensure all buttons meet 44px minimum touch target */
    .btn-primary, .btn-secondary, .nav-cta {
        min-height: 44px;
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .btn-primary-large {
        width: 100%;
        padding: 18px 32px;
        font-size: 17px;
        justify-content: center;
    }

    .hero-social-proof {
        flex-direction: row;
        max-width: 100%;
        padding: 14px 16px;
        gap: 12px;
    }

    .social-proof-text {
        font-size: 13px;
    }

    /* Larger touch target for nav CTA */
    .nav-cta {
        width: auto;
        min-width: 120px;
    }

    /* Better spacing for brand items on mobile */
    .brands-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .brand-item {
        font-size: 13px;
    }

    /* Improve testimonial readability */
    .testimonial {
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 14px;
    }

    /* Sample results padding */
    .sample-results {
        padding: 24px 20px;
    }

    /* Email capture responsive */
    .email-capture-section {
        padding: 60px 20px;
        margin: 40px 20px;
    }

    .email-input-group {
        flex-direction: column;
        gap: 12px;
    }

    .email-submit-btn {
        width: 100%;
        padding: 16px;
    }

    .email-trust {
        flex-direction: column;
        gap: 12px;
    }
}

/* Small mobile phones (iPhone SE, etc.) */
@media (max-width: 480px) {
    nav {
        padding: 12px 16px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-cta {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 100px;
    }

    .hero {
        padding: 100px 16px 60px;
    }

    .section {
        padding: 60px 16px;
    }

    .trust-bar {
        padding: 32px 16px;
    }

    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    .hero-sub {
        font-size: 17px;
    }

    .btn-primary, .btn-secondary {
        padding: 14px 20px;
        font-size: 15px;
    }

    .step-card,
    .ai-step,
    .diff-card,
    .proof-card,
    .testimonial {
        padding: 20px;
    }

    .sample-results {
        padding: 20px 16px;
    }

    .routine-preview {
        gap: 24px;
    }

    .brands-grid {
        gap: 12px;
    }

    .brand-item {
        font-size: 12px;
    }

    .brand-logo {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
}
