/* 
========================================
WILD LEMONADE - MAIN STYLESHEET
========================================

STRUCTURE:
1. CSS Variables & Reset
2. Base Typography & Layout
3. Animations & Keyframes
4. Hero Section
5. How It Works Section
6. Feature Highlights Section
7. Testimonial & Stats Section
8. Final CTA Section
9. Footer
10. Responsive Design (Media Queries)

TO CUSTOMIZE:
- Update colors: Edit CSS variables in :root
- Change fonts: Update font-family values
- Adjust spacing: Modify padding/margin values
- Tweak animations: Edit transition properties
========================================
*/

/* ========================================
   1. CSS VARIABLES & RESET
   ======================================== */
:root {
    /* Colors - Softer, warmer palette with personality */
    --gradient-start: #FFF0F5;
    --gradient-mid: #FFF5F0;
    --gradient-end: #FFFAF0;
    
    --card-bg: #FFFFFF;
    --accent-pastel-1: #FFE8F5;
    --accent-pastel-2: #FFF9E8;
    --accent-pastel-3: #FFFAE8;
    
    /* Softer heading colors - not harsh black */
    --text-primary: #2D1B3D;        /* Warm dark purple instead of black */
    --text-heading: #3D2952;        /* Slightly lighter for headings */
    --text-secondary: #6B6B6B;
    --cta-gradient-start: #FFA726;
    --cta-gradient-end: #FF4D82;
    --cta-hover-start: #FF9100;
    --cta-hover-end: #FF1F5A;
    
    --success-bg: #E8F5E9;
    --success-text: #2E7D32;
    --error-text: #FF4444;
    
    /* Typography */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing - More generous, less boxy */
    --container-max: 1200px;
    --section-padding: 3rem 1.5rem;
    --card-radius: 24px;            /* More rounded */
    --card-shadow: 0 8px 30px rgba(255, 107, 157, 0.12);  /* Softer pink shadow */
    
    /* Transitions */
    --transition-standard: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    background: linear-gradient(135deg, 
        var(--gradient-start) 0%, 
        var(--gradient-mid) 50%, 
        var(--gradient-end) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Animated underline effect */
.animated-underline {
    position: relative;
    display: inline-block;
    overflow: visible;
    padding-bottom: 4px;
}

.animated-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B9D 0%, #FFA726 50%, #FFC107 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: drawUnderline 1s ease-out 0.5s forwards;
}

@keyframes drawUnderline {
    to {
        transform: scaleX(1);
    }
}

/* Rotating text effect */
.rotating-text {
    display: inline-block;
    min-width: 200px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    background: linear-gradient(90deg, #FF6B9D 0%, #FFA726 50%, #FFC107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: visible;
}

.rotating-text.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

.rotating-text.fade-in {
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero social proof */
.hero-social-proof {
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: center;
}

.social-proof-line {
    font-size: 1.15rem;
    color: #a25151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-proof-testimonial {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.social-proof-testimonial::before {
    content: '';
    display: inline-block;
    margin-right: 0.25rem;
}

/* ========================================
   2. BASE TYPOGRAPHY & LAYOUT
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-heading); /* Softer warm purple instead of black */
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600; /* Slightly lighter weight */
}

p {
    color: var(--text-secondary);
    line-height: 1.75; /* Improved readability */
}

a {
    color: var(--cta-gradient-end);
    text-decoration: none;
    transition: var(--transition-standard);
}

a:hover {
    color: var(--cta-hover-end);
}

section {
    padding: var(--section-padding);
}

/* ========================================
   3. ANIMATIONS & KEYFRAMES
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 4px 12px rgba(255, 107, 157, 0.25); 
    }
    50% { 
        box-shadow: 0 4px 20px rgba(255, 107, 157, 0.45); 
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger delays for feature cards */
.feature-card:nth-of-type(1) { transition-delay: 0.1s; }
.feature-card:nth-of-type(2) { transition-delay: 0.2s; }
.feature-card:nth-of-type(3) { transition-delay: 0.3s; }

/* Decorative elements for personality */
.section-divider {
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, var(--gradient-start) 100%);
    margin: -1px 0;
}

/* ========================================
   3.5. NAVIGATION MENU
   ======================================== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-heading);
}

.nav-logo {
    width: 40px;
    height: 40px;
    display: block;
}

.nav-logo-full {
    height: 100px;
    width: auto;
    display: block;
}

.nav-brand-name {
    display: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    transition: var(--transition-standard);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    transition: var(--transition-standard);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--card-bg);
    padding: 5rem 2rem 2rem;
    margin: 0;
    list-style: none;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-heading);
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition-standard);
}

.nav-link:hover {
    background: rgba(255, 107, 157, 0.08);
    color: var(--cta-gradient-end);
}

.nav-link-cta {
    background: linear-gradient(90deg, var(--cta-gradient-start) 0%, var(--cta-gradient-end) 100%);
    color: white;
    font-weight: 700;
    margin-top: 1rem;
    text-align: center;
}

.nav-link-cta:hover {
    background: linear-gradient(90deg, var(--cta-hover-start) 0%, var(--cta-hover-end) 100%);
    color: white;                       
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

/* Desktop navigation */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: auto;
        height: auto;
        padding: 0;
        background: none;
        box-shadow: none;
        gap: 0.5rem;
    }
    
    .nav-item {
        margin-bottom: 0;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .nav-link-cta {
        margin-top: 0;
        padding: 0.5rem 1.5rem;
    }
}

/* ========================================
   3.6. COOKIE CONSENT
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    min-width: 250px;
}

.cookie-link {
    color: var(--cta-gradient-end);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: var(--cta-hover-end);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-standard);
    white-space: nowrap;
}

.cookie-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid #E5E5E5;
}

.cookie-decline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--text-secondary);
}

.cookie-accept {
    background: linear-gradient(90deg, var(--cta-gradient-start) 0%, var(--cta-gradient-end) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.25);
}

.cookie-accept:hover {
    background: linear-gradient(90deg, var(--cta-hover-start) 0%, var(--cta-hover-end) 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.35);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-text {
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ========================================
   4. HERO SECTION
   ======================================== */
.hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Hero Content (on gradient background) */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.title-text {
    position: relative;
    display: inline-block;
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B9D 0%, #FFA726 50%, #FFC107 100%);
    border-radius: 2px;
    animation: drawUnderline 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes drawUnderline {
    to {
        width: 100%;
    }
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--text-primary);
}

.hero-description strong {
    color: var(--text-primary);
}

/* Hero Video Container */
.hero-video-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
    border: 3px solid rgba(255, 107, 157, 0.15);
    background: #000;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* Hero Form Card (white box for form only) */
.hero-form-card {
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    padding: 2.5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid rgba(255, 107, 157, 0.1);
}

/* Waitlist Form Styling */
.waitlist-form {
    margin-top: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.email-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.25rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    transition: var(--transition-standard);
    outline: none;
}

.email-input:focus {
    border-color: var(--cta-gradient-end);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.email-input.valid {
    border-color: #4CAF50;
}

.email-input.invalid {
    border-color: var(--error-text);
}

/* Input status icon */
.input-status {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.input-status.valid {
    opacity: 1;
    color: #4CAF50;
}

.input-status.invalid {
    opacity: 1;
    color: var(--error-text);
}

.btn-primary {
    width: 100%;
    min-height: 52px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;              /* Bolder for more personality */
    font-family: var(--font-body);
    color: #FFFFFF;
    background: linear-gradient(90deg, var(--cta-gradient-start) 0%, var(--cta-gradient-end) 100%);
    border: none;
    border-radius: 16px;           /* More rounded */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary:not(:disabled):hover {
    background: linear-gradient(90deg, var(--cta-hover-start) 0%, var(--cta-hover-end) 100%);
    transform: translateY(-3px) scale(1.02);  /* More playful hover */
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.45);
}

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

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Subtle pulse animation when not hovering */
.btn-primary:not(:hover):not(:disabled) {
    animation: pulse 3s ease-in-out infinite;
}

/* Button loading state */
.button-loader {
    display: inline-block;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-subtext {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-align: center;
}

.form-error {
    color: var(--error-text);
    font-size: 0.875rem;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.form-error.visible {
    display: block;
}

.form-success {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--success-bg) 0%, #C8E6C9 100%);
    color: var(--success-text);
    border-radius: 12px;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.4s ease-out;
}

.success-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.success-text {
    flex: 1;
}

/* ========================================
   5. HOW IT WORKS SECTION - ULTRA MODERN
   ======================================== */
.how-it-works-section {
    padding: 3rem 1.5rem;
    background: transparent;
    position: relative;
}

/* Section Header */
.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Modern Grid - Very Clean */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ultra-Minimal Cards - Almost No Borders */
.step-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.8);
}

/* Smaller, More Refined Gradient Badges */
.step-icon-badge {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFA726 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.25);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon-badge {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.35);
}

.step-icon-badge svg {
    width: 28px;
    height: 28px;
}

/* Bolder, Cleaner Typography */
.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #Ff914d;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.step-description {
    font-size: 1.0625rem;
    color: #666;
    line-height: 1.7;
    max-width: 100%;
    font-weight: 400;
}

/* Desktop - 3 Columns */
@media (min-width: 1024px) {
    .how-it-works-section {
        padding: 4rem 2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .section-title {
        font-size: 3.25rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3.5rem;
    }
}

/* Tablet - 2 Columns */
@media (min-width: 768px) and (max-width: 1023px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .step-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .how-it-works-section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .step-card {
        padding: 2.75rem 2rem;
    }
    
    .step-icon-badge {
        width: 56px;
        height: 56px;
    }
    
    .step-title {
        font-size: 1.375rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
}

/* ========================================
   6. FEATURE HIGHLIGHTS SECTION - ULTRA MODERN
   ======================================== */
.feature-highlights-section {
    padding: 4rem 1.5rem;
    background: #fff;
}

/* Cleaner Grid - Less Boxy */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Ultra-Minimal Feature Items */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-item:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.8);
}

/* Smaller, Cleaner Icon Circles */
.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 167, 38, 0.1) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(255, 167, 38, 0.15) 100%);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

/* Cleaner Typography */
.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    color: #a25151;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

/* Desktop - 2 Columns */
@media (min-width: 768px) {
    .feature-highlights-section {
        padding: 5rem 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .feature-highlights-section {
        padding: 4rem 1.5rem;
    }
    
    .feature-item {
        padding: 1.75rem 1.5rem;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .feature-title {
        font-size: 1.0625rem;
    }
    
    .feature-text {
        font-size: 0.9375rem;
    }
}

/*  6.5. COMPARISON TABLE SECTION
   ======================================== */

/* ========================================

/* ========================================
   6.5 COMPARISON SECTION
   STYLES MOVED TO INLINE IN index.html
   ======================================== */

   /* ========================================
   7. TESTIMONIAL & STATS SECTION
   ======================================== */
.testimonial-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.testimonial-card {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 3rem 2.5rem;
    background: var(--card-bg);
    border-radius: 32px;           /* More rounded, less boxy */
    box-shadow: var(--card-shadow);
    text-align: center;
    border: 2px solid rgba(255, 107, 157, 0.08);
}

.testimonial-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-heading);    /* Softer purple */
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.testimonial-attribution {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFA726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========================================
   7.5. FAQ SECTION
   ======================================== */
.faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(255, 107, 157, 0.08);
    border: 2px solid transparent;
    transition: var(--transition-standard);
}

.faq-item:hover {
    border-color: rgba(255, 107, 157, 0.15);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.12);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-standard);
    font-family: var(--font-body);
}

.faq-question:hover {
    background: rgba(255, 107, 157, 0.03);
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-heading);
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
}

/* ========================================
   8. FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.cta-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 32px;           /* More rounded, less boxy */
    box-shadow: var(--card-shadow);
    text-align: center;
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.cta-title {
    font-size: 2rem;
    color: var(--text-heading);    /* Softer purple */
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ========================================
   9. FOOTER
   ======================================== */
.site-footer {
    padding: 4rem 1.5rem 2rem;
    background: linear-gradient(180deg, var(--gradient-end) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-top: 1px solid rgba(255, 107, 157, 0.1);
}

.footer-main {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.footer-brand {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-emoji {
    font-size: 3rem;
    line-height: 1;
    display: inline-block;
}

/* When logo image is uploaded, use this: */
.footer-logo-img {
    width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-tagline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.footer-column {
    text-align: center;
}

.footer-column-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-standard);
}

.footer-links a:hover {
    color: var(--cta-gradient-end);
}

.footer-connect-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-cta-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(90deg, var(--cta-gradient-start) 0%, var(--cta-gradient-end) 100%);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-standard);
    box-shadow: 0 2px 10px rgba(255, 107, 157, 0.25);
}

.footer-cta-link:hover {
    background: linear-gradient(90deg, var(--cta-hover-start) 0%, var(--cta-hover-end) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.35);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-location {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-contact {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.footer-contact a:hover {
    color: var(--cta-gradient-end);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

/* Desktop footer layout */
@media (min-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-brand {
        text-align: center;
    }
}

/* ========================================
   10. RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px and up) */
@media (min-width: 768px) {
    :root {
        --section-padding: 4rem 2rem;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .hero-form-card {
        padding: 3rem 3rem;
    }
    
    .form-group {
        flex-direction: row;
        align-items: stretch;
    }
    
    .input-wrapper {
        flex: 1;
    }
    
    .btn-primary {
        width: auto;
        padding: 1rem 2.5rem;
        white-space: nowrap;
    }
    
    .three-column-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    :root {
        --section-padding: 5rem 2rem;
    }
    
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 4rem;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
    .hero-content {
        margin-bottom: 4rem;
    }
    
    .hero-form-card {
        padding: 3.5rem 4rem;
    }
    
    .three-column-grid {
        gap: 2rem;
    }
    
    .feature-card {
        padding: 3rem 2.5rem;
    }
    
    .features-grid {
        gap: 2rem;
    }
    
    .feature-item {
        padding: 2rem;
    }
    
    .stats-row {
        gap: 3rem;
    }
    
    .testimonial-card {
        padding: 3rem 3.5rem;
        margin-bottom: 5rem;
    }
    
    .testimonial-quote {
        font-size: 1.75rem;
    }
    
    .cta-card {
        padding: 4rem 3.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

/* Large Desktop (1440px and up) - Optional refinements */
@media (min-width: 1440px) {
    .container {
        max-width: 1300px;
    }
    
    .title-main {
        font-size: 4rem;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 767px) {
    body {
        padding-bottom: 2rem;
    }
    
    .btn-primary {
        min-height: 52px;
        font-size: 1rem;
    }
    
    .email-input {
        min-height: 52px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .nav-logo-full {
        height: 60px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-form-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-video-container {
        margin-bottom: 2rem;
        border-radius: 16px;
    }
    
    .hero-video {
        max-height: 300px;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .card-step-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .social-proof-line {
        font-size: 1.175rem;
    }
    
    .social-proof-testimonial {
        font-size: 0.8125rem;
    }
    
    .animated-underline::after {
        bottom: -4px;
        height: 3px;
    }
}

/* 
========================================
ACCESSIBILITY & PRINT STYLES
========================================
*/

/* Focus Styles for Keyboard Navigation */
button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 3px solid var(--cta-primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    .hero-card,
    .feature-card,
    .feature-item,
    .testimonial-card,
    .cta-card {
        box-shadow: none;
        border: 1px solid #E5E5E5;
    }
}
/* REMOVE ALL BLOCKY SECTION BACKGROUNDS */
.how-it-works-section,
.feature-highlights-section,
.comparison-section,
.site-footer,
.faq-section,
.testimonial-section,
.final-cta-section {
    background: transparent !important;
}

/* ========================================
   MOBILE CARDS - BULLETPROOF GLASS EFFECT
   ======================================== */

/* Base styles - apply to ALL screen sizes first */
.comparison-section .feature-card {
    background: rgba(255, 255, 255, 0.85) !important; /* More opaque for better visibility */
    backdrop-filter: blur(10px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(180%) !important;
    border-radius: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    overflow: hidden !important;
}

.comparison-section .feature-header {
    background: linear-gradient(135deg, rgba(255, 249, 232, 0.7) 0%, rgba(255, 232, 245, 0.7) 100%) !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid rgba(255, 107, 157, 0.15) !important;
}

.comparison-section .winner-row {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.12) 0%, rgba(196, 69, 105, 0.08) 100%) !important;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1) !important;
}

.comparison-section .loser-row {
    background: rgba(0, 0, 0, 0.03) !important;
}

/* Then desktop overrides these for table layout */
@media (min-width: 768px) {
    .comparison-section .feature-card {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        border: none !important;
        border-bottom: 1px solid rgba(255, 107, 157, 0.08) !important;
    }
    
    .comparison-section .feature-header {
        background: transparent !important;
    }
    
    .comparison-section .winner-row {
        background: transparent !important;
        border-bottom: none !important;
    }
    
    .comparison-section .loser-row {
        background: transparent !important;
    }
}

