/* Global Styles - Earth-toned Wellness Theme */
:root {
    --deep-green: #2d5016;
    --terracotta-orange: #d67441;
    --soft-beige: #f7f3f0;
    --warm-white: #ffffff;
    --dark-text: #333;
    --light-text: #666;
    --success-green: #4a7c59;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--soft-beige);
}

a {
    text-decoration: none;
    color: var(--dark-text);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--deep-green);
}

img {
    max-width: 100%;
}

section {
    padding: 60px 0;
}

/* Header */
header {
    background: var(--warm-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo h1 {
    color: var(--deep-green);
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: var(--soft-beige);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Founder Introduction */
.founder-intro {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.founder-image {
    margin-right: 20px;
}

.circular-bg {
    width: 80px;
    height: 80px;
    background: var(--terracotta-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-avatar {
    width: 80px; /* adjust as needed */
    height: 80px; /* adjust as needed */
    border-radius: 20%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--deep-green);
}

.founder-text p {
    color: var(--light-text);
    font-size: 14px;
}

/* Hero Content */
.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--deep-green);
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--terracotta-orange);
    font-weight: 500;
}

/* Benefits Checklist */
.benefits-checklist {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.checkmark {
    background: var(--deep-green);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
}

/* Opt-in Section */
.opt-in-section {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Product Showcase */
.product-showcase {
    margin-bottom: 30px;
}

.guide-mockup {
    display: inline-block;
}

.guide-cover {
    /* background: linear-gradient(135deg, var(--deep-green) 0%, var(--success-green) 100%); */
    /* color: white; */
    padding: 0px 0px;
    border-radius: 12px;
    width: 200px;
    text-align: center;
    /* box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3); */
    position: relative;
    overflow: hidden;
}

.guide-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.guide-cover h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
}

.guide-cover h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 400;
}

.guide-icon {
    font-size: 40px;
    margin-top: 10px;
}

/* Opt-in Form */
.opt-in-form h3 {
    margin-bottom: 25px;
    font-size: 22px;
    color: var(--deep-green);
}

.opt-in-form input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.opt-in-form input:focus {
    outline: none;
    border-color: var(--deep-green);
}

.cta-button {
    width: 100%;
    padding: 18px 20px;
    background: var(--terracotta-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.cta-button:hover {
    background: #c86438;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 116, 65, 0.3);
}

.privacy-note {
    font-size: 12px;
    color: var(--light-text);
    margin-top: 10px;
}

/* About Merinda Section */
.about-merinda {
    background: var(--warm-white);
    text-align: center;
}

.about-merinda h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--deep-green);
}

.bio-section {
    max-width: 800px;
    margin: 0 auto;
}

.bio-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.7;
}

/* Social Proof Section */
.social-proof {
    background: var(--soft-beige);
    text-align: center;
}

.social-proof h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--deep-green);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: var(--warm-white);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: var(--deep-green);
    font-size: 14px;
}

/* Form Message Styles */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
    text-align: center;
}

.form-message.error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-message.success {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* Input Field Validation */
.opt-in-form input.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.opt-in-form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Success Container Styles */
.success-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.success-message {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    border: 2px solid #22c55e;
    position: relative;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

.success-message h3 {
    color: #16a34a;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.main-message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #374151;
}

.next-steps {
    margin: 2rem 0;
    text-align: left;
}

.next-steps h4 {
    color: #16a34a;
    margin-bottom: 1rem;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.step-number {
    background: #16a34a;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

.download-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #16a34a;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(22, 163, 74, 0.5);
    }
    100% {
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    }
}

.redirect-notice {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #bbf7d0;
    font-size: 0.9rem;
    color: #6b7280;
}

.redirect-notice span {
    font-weight: bold;
    color: #16a34a;
}

/* Button Loading State */
.cta-button:disabled {
    cursor: not-allowed;
    transform: none !important;
}

/* Thank You Page Specific Styles */
.thank-you-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.guide-preview {
    margin: 2rem 0;
}

.guide-image {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.guide-image:hover {
    transform: scale(1.05);
}

.next-steps-detailed {
    margin: 3rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-card h4 {
    color: #16a34a;
    margin-bottom: 1rem;
}

/* Step 4 Backup Option Styling */
.step-card.backup-option {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.backup-download-btn {
    display: inline-block;
    background: #16a34a;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.backup-download-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

.backup-download-btn:active {
    transform: translateY(0);
}

/* Make the backup option slightly different visually */
.step-card.backup-option .step-icon {
    color: #f59e0b;
}

.step-card.backup-option h4 {
    color: #d97706;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .founder-intro {
        justify-content: center;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .opt-in-section {
        padding: 30px 20px;
    }
    
    .success-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-message {
        padding: 1.5rem;
    }
    
    .step-list {
        gap: 0.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-button {
        width: 200px;
        text-align: center;
    }
    
    .backup-download-btn {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}


