/* High-Converting Landing Page Styles */
:root {
    --brand-dark: #2d1f1a;
    --brand-golden: #d4a574;
    --brand-golden-dark: #b8934a;
    --brand-cream: #faf7f2;
    --brand-white: #ffffff;
    --brand-text: #4a3728;
    --brand-muted: #8b7355;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--brand-text);
    line-height: 1.6;
    background: var(--brand-cream);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
/* Site Header - Consistent across all pages */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--brand-dark);
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 44px;
    transition: opacity 0.2s;
}

.nav-logo:hover {
    opacity: 0.85;
}

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

.nav-item {
    color: var(--brand-cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
}

.nav-item:hover {
    background: rgba(212, 165, 116, 0.15);
    color: var(--brand-golden);
}

.nav-item.active {
    color: var(--brand-golden);
}

.nav-btn {
    background: var(--brand-golden);
    color: var(--brand-dark);
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-left: 8px;
    transition: all 0.2s;
}

.nav-btn:hover {
    background: var(--brand-golden-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-cream);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--brand-dark);
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    padding: 8px 16px 16px;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile-item {
    color: var(--brand-cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    transition: background 0.2s;
}

.nav-mobile-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.nav-mobile-btn {
    background: var(--brand-golden);
    color: var(--brand-dark);
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* Legacy header support */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--brand-dark);
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 44px;
}

.nav-cta {
    background: var(--brand-golden);
    color: var(--brand-dark);
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

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

/* Hero Section */
.hero {
    background: var(--brand-dark);
    padding: 120px 24px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--brand-cream);
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 165, 116, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--brand-golden);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--brand-cream);
}

.headline .accent {
    color: var(--brand-golden);
}

.subheadline {
    font-size: 1.2rem;
    color: rgba(250, 247, 242, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Signup Form */
.signup-form {
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: var(--radius);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-cream);
    transition: all 0.2s;
}

.email-input::placeholder {
    color: rgba(250, 247, 242, 0.5);
}

.email-input:focus {
    outline: none;
    border-color: var(--brand-golden);
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    background: var(--brand-golden);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.submit-btn:hover {
    background: var(--brand-golden-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.form-bonus {
    font-size: 14px;
    color: var(--brand-golden);
}

.trust-signals {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: rgba(250, 247, 242, 0.6);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
}

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

.success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brand-golden);
    margin-bottom: 8px;
}

.success-message p {
    color: rgba(250, 247, 242, 0.8);
}

/* Phone Mockup */
.hero-preview {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    transform: rotate(2deg);
}

.phone-screen {
    background: white;
    border-radius: 32px;
    overflow: hidden;
}

.email-preview {
    padding: 20px;
}

.email-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.email-from {
    font-weight: 600;
    color: var(--brand-dark);
}

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

.email-subject {
    font-weight: 600;
    font-size: 15px;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.email-body {
    font-size: 13px;
    color: var(--brand-text);
    line-height: 1.6;
}

.email-body p {
    margin-bottom: 12px;
}

.email-body strong {
    color: var(--brand-dark);
}

/* Benefits Section */
.benefits {
    padding: 80px 24px;
    background: var(--brand-white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 48px;
    color: var(--brand-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.benefit strong {
    display: block;
    font-size: 1.1rem;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.benefit p {
    font-size: 14px;
    color: var(--brand-muted);
    margin: 0;
}

/* Recipes Section */
.recipes {
    padding: 80px 24px;
    background: var(--brand-cream);
}

.section-subtitle {
    text-align: center;
    color: var(--brand-muted);
    margin-top: -32px;
    margin-bottom: 48px;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.recipe-card {
    background: var(--brand-white);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.recipe-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-time {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-dark);
    color: var(--brand-cream);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.recipe-info {
    padding: 20px;
}

.recipe-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.recipe-info p {
    font-size: 14px;
    color: var(--brand-muted);
    margin: 0;
    line-height: 1.5;
}

.recipes-note {
    text-align: center;
    margin-top: 32px;
    color: var(--brand-muted);
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: 80px 24px;
    background: var(--brand-cream);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: var(--brand-white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stars {
    margin-bottom: 12px;
    font-size: 14px;
}

.testimonial p {
    font-size: 15px;
    color: var(--brand-text);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.6;
}

.author strong {
    display: block;
    color: var(--brand-dark);
    font-size: 14px;
}

.author span {
    font-size: 13px;
    color: var(--brand-muted);
}

/* FAQ */
.faq {
    padding: 80px 24px;
    background: var(--brand-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item h3 {
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    color: var(--brand-muted);
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 100px 24px;
    background: var(--brand-dark);
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--brand-cream);
    margin-bottom: 16px;
}

.cta-box > p {
    color: rgba(250, 247, 242, 0.7);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.final-cta .form-row {
    justify-content: center;
}

.final-cta .email-input {
    max-width: 300px;
}

/* Footer */
.footer {
    padding: 48px 24px;
    background: var(--brand-cream);
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--brand-muted);
    margin-bottom: 12px;
}

.copyright {
    font-size: 13px;
    color: var(--brand-muted);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .headline {
        font-size: 2.4rem;
    }
    
    .hero-preview {
        display: none;
    }
    
    .trust-signals {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .benefits-grid,
    .testimonial-cards,
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .headline {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 8px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .final-cta .email-input {
        max-width: 100%;
    }
}

/* Past Newsletters Section */
.newsletters-section {
    padding: 80px 24px;
    background: var(--brand-white);
}

.newsletters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-card {
    background: var(--brand-cream);
    border-radius: var(--radius);
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.newsletter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.newsletter-date {
    font-size: 13px;
    color: var(--brand-golden-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.newsletter-desc {
    font-size: 14px;
    color: var(--brand-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

.newsletter-link {
    font-size: 14px;
    color: var(--brand-golden-dark);
    font-weight: 600;
    margin-top: auto;
}

.view-all-link {
    text-align: center;
    margin-top: 32px;
}

.view-all-btn {
    display: inline-block;
    color: var(--brand-golden-dark);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--brand-golden);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.view-all-btn:hover {
    background: var(--brand-golden);
    color: white;
}

@media (max-width: 900px) {
    .newsletters-grid {
        grid-template-columns: 1fr;
    }
}

/* As Featured In Section */
.featured-in {
    padding: 40px 24px;
    background: var(--brand-white);
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.featured-label {
    text-align: center;
    color: var(--brand-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.featured-logo {
    color: var(--brand-muted);
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.featured-logo:hover {
    opacity: 1;
}

/* Mid-Page CTA */
.mid-cta {
    padding: 80px 24px;
    background: linear-gradient(135deg, #d4a574 0%, #b8934a 100%);
}

.mid-cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.mid-cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 16px;
}

.mid-cta-box > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.mid-form .form-row {
    justify-content: center;
}

.mid-input {
    background: white !important;
    color: var(--brand-dark) !important;
    border-color: white !important;
    max-width: 300px;
}

.mid-input::placeholder {
    color: var(--brand-muted) !important;
}

.mid-form .submit-btn {
    background: var(--brand-dark);
}

.mid-form .submit-btn:hover {
    background: #1a110d;
}

.mid-success h3 {
    color: white;
}

.mid-success p {
    color: rgba(255, 255, 255, 0.9);
}

/* Sticky Bottom Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--brand-dark);
    padding: 16px 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.sticky-text {
    color: var(--brand-cream);
    font-weight: 600;
    font-size: 15px;
}

.sticky-form {
    display: flex;
    gap: 8px;
}

.sticky-input {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    width: 200px;
}

.sticky-btn {
    background: var(--brand-golden);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.sticky-btn:hover {
    background: var(--brand-golden-dark);
}

.sticky-close {
    background: none;
    border: none;
    color: rgba(250, 247, 242, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.sticky-close:hover {
    color: white;
}

.sticky-success {
    color: var(--brand-golden);
    font-weight: 600;
    text-align: center;
    width: 100%;
    padding: 8px;
}

/* Exit Intent Modal */
.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-modal.visible {
    opacity: 1;
    visibility: visible;
}

.exit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.exit-content {
    position: relative;
    background: var(--brand-cream);
    padding: 48px;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.exit-modal.visible .exit-content {
    transform: scale(1);
}

.exit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--brand-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.exit-close:hover {
    color: var(--brand-dark);
}

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

.exit-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.exit-content > p {
    color: var(--brand-text);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.exit-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.exit-input {
    padding: 14px 18px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.exit-input:focus {
    outline: none;
    border-color: var(--brand-golden);
}

.exit-btn {
    background: var(--brand-golden);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.exit-btn:hover {
    background: var(--brand-golden-dark);
    transform: translateY(-2px);
}

.exit-note {
    font-size: 13px;
    color: var(--brand-muted);
}

.exit-success {
    padding: 20px 0;
}

.exit-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brand-golden-dark);
    margin-bottom: 8px;
}

.exit-success p {
    color: var(--brand-text);
}

/* Animated Counter */
.animated-count {
    display: inline-block;
    font-weight: 700;
    min-width: 50px;
}

/* Fade In Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lead Magnet Selector */
.lead-magnet-selector {
    margin-top: 16px;
}

.select-label {
    font-size: 14px;
    color: var(--brand-golden);
    margin-bottom: 10px;
}

.magnet-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.magnet-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(250, 247, 242, 0.8);
    transition: color 0.2s;
}

.magnet-option:hover {
    color: var(--brand-cream);
}

.magnet-option input[type="radio"] {
    accent-color: var(--brand-golden);
}

.magnet-label {
    font-size: 13px;
}

/* Responsive adjustments for new elements */
@media (max-width: 600px) {
    .sticky-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .sticky-form {
        flex-direction: column;
        width: 100%;
    }
    
    .sticky-input {
        width: 100%;
    }
    
    .sticky-btn {
        width: 100%;
    }
    
    .exit-content {
        padding: 32px 24px;
    }
    
    .exit-content h2 {
        font-size: 1.5rem;
    }
    
    .featured-logos {
        gap: 16px;
    }
    
    .featured-logo {
        font-size: 12px;
    }
    
    .mid-cta-box h2 {
        font-size: 1.8rem;
    }
}
