/* ====================================
   RESET & BASE STYLES
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Peek-a-boo Brand */
    --color-primary: #5FD4CD;
    --color-primary-dark: #4AB8B1;
    --color-primary-light: #7FDFDA;
    --color-secondary: #F9B5AC;
    --color-accent: #FFD166;
    
    --color-bg: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #f1f5f9;
    --color-bg-dark: #0f172a;
    
    --color-text: #0f172a;
    --color-text-secondary: #475569;
    --color-text-tertiary: #94a3b8;
    
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    
    /* Enhanced Multi-Layer Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 
        0 1px 2px 0 rgba(0, 0, 0, 0.05),
        0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    --shadow-xl: 
        0 10px 20px -5px rgba(0, 0, 0, 0.1),
        0 20px 25px -5px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    --shadow-2xl: 
        0 15px 30px -10px rgba(0, 0, 0, 0.1),
        0 25px 50px -12px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    --shadow-3xl: 
        0 20px 40px -15px rgba(0, 0, 0, 0.15),
        0 35px 60px -15px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    
    /* Colored Shadows for Primary Elements */
    --shadow-primary: 
        0 4px 14px 0 rgba(95, 212, 205, 0.25),
        0 2px 6px 0 rgba(95, 212, 205, 0.15),
        0 0 0 1px rgba(95, 212, 205, 0.1);
    --shadow-primary-lg: 
        0 10px 30px -5px rgba(95, 212, 205, 0.3),
        0 20px 40px -10px rgba(95, 212, 205, 0.2),
        0 0 0 1px rgba(95, 212, 205, 0.1);
    
    /* Spacing System - Generous & Rhythmic */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    --space-5xl: 12rem;
    --space-6xl: 16rem;
    
    /* Typography */
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Fluid Type Scale */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 3rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2vw, 3.75rem);
    --text-5xl: clamp(3rem, 2rem + 3vw, 5rem);
    
    /* Borders */
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(to bottom, #f5f5f7 0%, #ffffff 100%);
    overflow-x: hidden;
    position: relative;
}

/* Ensure all sections have proper z-index to appear above background */
section, nav, footer {
    position: relative;
    z-index: 1;
}

/* ====================================
   TYPOGRAPHY - THE STAR OF THE SHOW
   ==================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

h1 {
    font-size: var(--text-5xl);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
}

p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* ====================================
   NAVIGATION - FLOATING & ELEVATED
   ==================================== */

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--transition-base);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
    max-width: 300px;
}

.logo-icon {
    font-size: var(--text-2xl);
}

.logo-text {
    color: var(--color-text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: var(--space-sm);
}

/* ====================================
   BUTTONS - DEPTH & INTERACTION
   ==================================== */

.btn-primary,
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-lg);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary-large {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    box-shadow: var(--shadow-primary-lg);
}

.btn-primary:hover,
.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 56px -12px rgba(95, 212, 205, 0.35), 0 10px 20px -12px rgba(95, 212, 205, 0.2);
}

.btn-primary:active,
.btn-primary-large:active {
    transform: translateY(0);
}

.btn-secondary,
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    background: white;
    color: var(--color-text);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-lg);
    text-decoration: none;
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-secondary-large {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
}

.btn-secondary:hover,
.btn-secondary-large:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-ghost,
.btn-ghost-large {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: transparent;
    color: var(--color-text);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-lg);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-ghost-large {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
}

.btn-ghost:hover,
.btn-ghost-large:hover {
    background: var(--color-bg-secondary);
    transform: translateX(4px);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
}

.play-icon i {
    font-size: 0.625rem;
    margin-left: 2px;
}

/* ====================================
   HERO SECTION - MAXIMUM IMPACT
   ==================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-5xl) var(--space-xl) var(--space-4xl);
    max-width: 1200px;
    margin: var(--space-4xl) auto;
    gap: var(--space-4xl);
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 0 60px rgba(95, 212, 205, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    animation: heroGlow 4s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        box-shadow: 
            0 0 60px rgba(95, 212, 205, 0.3),
            0 0 120px rgba(249, 181, 172, 0.2),
            0 0 180px rgba(147, 197, 253, 0.15);
    }
    33% {
        box-shadow: 
            0 0 80px rgba(249, 181, 172, 0.35),
            0 0 140px rgba(147, 197, 253, 0.25),
            0 0 200px rgba(95, 212, 205, 0.15);
    }
    66% {
        box-shadow: 
            0 0 70px rgba(147, 197, 253, 0.3),
            0 0 130px rgba(95, 212, 205, 0.25),
            0 0 190px rgba(249, 181, 172, 0.15);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(95, 212, 205, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow1 6s ease-in-out infinite;
}

@keyframes pulseGlow1 {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 181, 172, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow2 8s ease-in-out infinite;
}

@keyframes pulseGlow2 {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.15) translateY(-20px);
        opacity: 0.7;
    }
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content {
    flex: 1;
    max-width: 650px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    text-align: left;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-spacing {
    display: block;
    margin-top: var(--space-md);
    padding-bottom: var(--space-xl);
}

.hero-subtitle {
    font-size: var(--text-xl);
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border-light);
}

.stat-card {
    text-align: left;
    opacity: 1 !important;
    transform: none !important;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-3xl);
    padding: 12px;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: calc(var(--radius-2xl) - 8px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 3;
}

.card-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.card-icon {
    font-size: var(--text-xl);
    color: var(--color-primary);
}

.card-icon i {
    font-size: var(--text-lg);
}

.card-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

/* ====================================
   SECTION HEADERS - SPACIOUS & CLEAR
   ==================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
}

.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ====================================
   FEATURES SECTION - GRID WITH DEPTH
   ==================================== */

.features {
    padding: var(--space-5xl) var(--space-xl);
    max-width: 1200px;
    margin: var(--space-5xl) auto;
    background: white;
    border-radius: 32px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}



.features-grid {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(95, 212, 205, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px);
}

.feature-card.large {
    grid-column: span 2;
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
}

.feature-visual {
    flex: 1;
    min-height: 300px;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.feature-content {
    flex: 1;
}

.feature-icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(95, 212, 205, 0.1) 0%, rgba(249, 181, 172, 0.1) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
}

.feature-icon i {
    font-size: var(--text-3xl);
}

.feature-card h3 {
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.feature-link:hover {
    transform: translateX(4px);
}

/* ====================================
   BENEFITS SECTION - ALTERNATING LAYOUT
   ==================================== */

.benefits {
    padding: var(--space-5xl) var(--space-xl);
    max-width: 1200px;
    margin: var(--space-5xl) auto;
    background: white;
    border-radius: 32px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}



.benefits-content {
    position: relative;
    z-index: 1;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-5xl);
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    opacity: 1 !important;
    transform: none !important;
}

.benefit-item.reverse {
    direction: rtl;
}

.benefit-item.reverse .benefit-text {
    direction: ltr;
}

.benefit-visual {
    min-height: 500px;
    position: relative;
}

.benefit-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.benefit-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background: rgba(95, 212, 205, 0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.benefit-text h2 {
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

.benefit-text > p {
    margin-bottom: var(--space-xl);
    font-size: var(--text-lg);
    max-width: 550px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.benefit-list li {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    padding-left: var(--space-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.benefit-list li i {
    color: var(--color-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ====================================
   TESTIMONIALS - ELEVATED CARDS
   ==================================== */

.testimonials {
    padding: var(--space-5xl) var(--space-xl);
    max-width: 1200px;
    margin: var(--space-5xl) auto;
    background: white;
    border-radius: 32px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}



.testimonials-grid {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(249, 181, 172, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    box-shadow: var(--shadow-md);
}

.author-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: var(--text-base);
}

.author-role {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

/* ====================================
   PRICING - CARD ELEVATION
   ==================================== */

.pricing {
    padding: var(--space-5xl) var(--space-xl);
    max-width: 1200px;
    margin: var(--space-5xl) auto;
    background: white;
    border-radius: 32px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}



.pricing-grid {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(95, 212, 205, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-primary-lg);
    transform: scale(1.05);
    background: 
        linear-gradient(135deg, rgba(95, 212, 205, 0.03) 0%, white 50%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: var(--space-2xl);
}

.pricing-header h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.price-amount {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-text);
    font-family: var(--font-display);
}

.price-period {
    font-size: var(--text-base);
    color: var(--color-text-tertiary);
}

.price-description {
    color: var(--color-text-tertiary);
    font-size: var(--text-sm);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.pricing-features li {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    padding-left: var(--space-sm);
}

.pricing-card .btn-primary-large,
.pricing-card .btn-secondary-large {
    width: 100%;
}

/* ====================================
   CTA SECTION - FINAL PUSH
   ==================================== */

.cta {
    padding: var(--space-5xl) var(--space-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 
        0 4px 16px rgba(95, 212, 205, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}



.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    margin-bottom: var(--space-lg);
    font-size: var(--text-4xl);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.cta .btn-primary-large {
    background: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-2xl);
}

.cta .btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3xl);
}

.cta .btn-ghost-large {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta .btn-ghost-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-trust {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust span {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* ====================================
   FOOTER - CLEAN & ORGANIZED
   ==================================== */

.footer {
    background: var(--color-bg-dark);
    color: white;
    padding: var(--space-4xl) var(--space-xl) var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.footer .logo-image {
    background: white;
    padding: var(--space-xs);
    border-radius: var(--radius-full);
    height: 70px;
    width: auto;
    max-width: 300px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-4xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: var(--space-lg) 0;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: var(--text-base);
}

.social-links a i {
    font-size: var(--text-base);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: white;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
}

/* ====================================
   COMPARISON SECTION
   ==================================== */

.comparison {
    padding: var(--space-5xl) var(--space-xl);
    max-width: 1200px;
    margin: var(--space-5xl) auto;
    background: white;
    border-radius: 32px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}



.comparison-table,
.comparison-cta {
    position: relative;
    z-index: 1;
}

.comparison-table {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    position: relative;
}

.comparison-table::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(95, 212, 205, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--color-bg-tertiary);
    font-weight: 700;
    font-size: var(--text-sm);
    border-bottom: 2px solid var(--color-border);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border-light);
    transition: background var(--transition-fast);
}

.comparison-row:hover {
    background: var(--color-bg-secondary);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    font-weight: 500;
    color: var(--color-text);
}

.comparison-competitor {
    text-align: center;
    color: var(--color-text-secondary);
}

.comparison-us {
    text-align: center;
    font-weight: 600;
    color: var(--color-text);
}

.comparison-us.highlight {
    color: var(--color-primary);
    font-weight: 700;
}

.comparison-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

.comparison-cta p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

/* ====================================
   FAQ SECTION
   ==================================== */

.faq {
    padding: var(--space-5xl) var(--space-xl);
    max-width: 1200px;
    margin: var(--space-5xl) auto;
    background: white;
    border-radius: 32px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}



.faq-grid,
.faq-cta {
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.faq-item {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-base);
}

.faq-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.faq-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.faq-item h3 {
    color: var(--color-text);
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.faq-item p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.inline-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    transition: opacity var(--transition-fast);
}

.inline-link:hover {
    opacity: 0.7;
}

/* ====================================
   SOCIAL PROOF SECTION
   ==================================== */

.social-proof {
    padding: var(--space-4xl) var(--space-xl);
    background: 
        linear-gradient(135deg, white 0%, rgba(248, 250, 252, 0.8) 100%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(95, 212, 205, 0.01) 20px, rgba(95, 212, 205, 0.01) 40px);
    border-top: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.social-proof::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(95, 212, 205, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.social-proof::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 181, 172, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.social-proof-content {
    position: relative;
    z-index: 1;
}

.social-proof-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-3xl);
    text-align: center;
}

.proof-stat {
    padding: var(--space-lg);
    position: relative;
}

.proof-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(95, 212, 205, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: var(--radius-lg);
}

.proof-stat:hover::before {
    opacity: 1;
}

.proof-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.proof-label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ====================================
   CONTACT FORM SECTION
   ==================================== */

.contact-form-section {
    padding: var(--space-5xl) var(--space-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 
        0 4px 16px rgba(95, 212, 205, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    color: white;
    margin-bottom: var(--space-lg);
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    line-height: 1.6;
    margin-bottom: var(--space-3xl);
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.contact-benefit {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    font-size: var(--text-sm);
}

.benefit-icon i {
    font-size: var(--text-sm);
}

.contact-benefit h4 {
    color: white;
    margin-bottom: var(--space-xs);
    font-size: var(--text-base);
}

.contact-benefit p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

.contact-trust {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.contact-trust p {
    color: white;
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
}

.contact-trust strong {
    font-weight: 700;
}

.trust-badges {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

.contact-alternate {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-alternate p {
    color: white;
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
}

.phone-number {
    display: inline-block;
    font-size: var(--text-xl);
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin: var(--space-sm) 0;
    transition: transform var(--transition-fast);
}

.phone-number:hover {
    transform: translateX(4px);
}

.phone-hours {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-xs);
}

.contact-form-container {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-3xl);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(95, 212, 205, 0.01) 20px, rgba(95, 212, 205, 0.01) 40px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(249, 181, 172, 0.01) 20px, rgba(249, 181, 172, 0.01) 40px);
    pointer-events: none;
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form h3 {
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    color: var(--color-text-tertiary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
    font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    background: white;
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(95, 212, 205, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    margin-top: var(--space-xl);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    margin-top: var(--space-lg);
    font-size: var(--text-lg);
    padding: var(--space-md);
}

.form-privacy {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
    margin-top: var(--space-md);
    line-height: 1.5;
}

.form-privacy a {
    color: var(--color-primary);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* ====================================
   BACK TO TOP BUTTON
   ==================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: visible;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-primary-lg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -12px rgba(95, 212, 205, 0.4), 0 10px 24px -12px rgba(95, 212, 205, 0.25);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* ====================================
   TEDDY DECORATIONS
   ==================================== */

/* Teddy peeking from bottom of hero */
.teddy-hero-peek {
    position: absolute;
    bottom: -80px;
    right: 8%;
    width: 280px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Teddy hanging on features section */
.teddy-features-hang {
    position: absolute;
    top: -50px;
    right: 5%;
    width: 220px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Teddy laying down on benefits */
.teddy-benefits-laydown {
    position: absolute;
    top: -80px;
    left: 5%;
    width: 500px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Teddy winking in pricing */
.teddy-pricing-wink {
    position: absolute;
    bottom: -76px;
    left: 3%;
    width: 500px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Teddy hanging on CTA */
.teddy-cta-hang {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 230px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Teddy on contact form */
.teddy-contact-peek {
    position: absolute;
    top: -80px;
    right: -4%;
    width: 260px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.teddy-above-title {
    top: -120px;
}

.img-hor-vert {
    -webkit-transform: scale(-1, -1);
    -moz-transform: scale(-1, -1);
    -o-transform: scale(-1, -1);
    transform: scale(-1, 1);
}

/* Make emoji toys more prominent */
.features::before,
.benefits::before,
.testimonials::before,
.pricing::before,
.comparison::before,
.faq::before,
.social-proof::before {
    font-size: 140px !important;
    opacity: 0.12 !important;
    transition: all 0.5s ease;
}

.features::after,
.benefits::after,
.pricing::after,
.comparison::after,
.social-proof::after {
    font-size: 120px !important;
    opacity: 0.12 !important;
    transition: all 0.5s ease;
}

/* Add subtle animation to emojis */
@keyframes emoji-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.features::before,
.features::after,
.benefits::before,
.benefits::after,
.pricing::before,
.pricing::after {
    animation: emoji-float 6s ease-in-out infinite;
}

/* Rocket and toy emoji enhancements */
.section-emoji {
    font-size: 100px;
    opacity: 0.15;
    filter: grayscale(0) !important;
    transition: all 0.3s ease;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: var(--space-4xl);
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .benefit-item,
    .benefit-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .benefit-visual {
        order: -1;
    }
    
    .feature-card.large {
        grid-column: span 1;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: var(--space-md);
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        gap: var(--space-xs);
    }
    
    .nav-cta .btn-secondary {
        display: none;
    }

    .nav-cta .btn-ghost {
        font-size: var(--text-sm);
        padding: var(--space-xs) var(--space-sm);
    }
    
    .hero {
        padding: var(--space-3xl) var(--space-md);
        min-height: auto;
    }

    .hero-badge {
        padding-top: var(--space-lg);
    }

    .hero-title {
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .hero-visual {
        min-height: 400px;
    }

    .btn-primary-large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .teddy-above-title {
        top: -80px;
    }
    
    /* Scale down teddies on mobile */
    .teddy-hero-peek {
        width: 160px;
        right: 3%;
        bottom: -45px;
    }
    
    .teddy-features-hang {
        width: 130px;
        right: 3%;
        top: -30px;
    }
    
    .teddy-benefits-laydown {
        width: 180px;
        left: 3%;
        top: -50px;
    }
    
    .teddy-pricing-wink {
        width: 140px;
        left: 2%;
        bottom: -45px;
    }
    
    .teddy-cta-hang {
        width: 140px;
        top: -40px;
    }
    
    .teddy-contact-peek {
        width: 150px;
        right: 3%;
        top: -50px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .floating-card {
        padding: var(--space-sm);
    }
    
    .card-text {
        font-size: var(--text-xs);
    }
    
    .features,
    .benefits,
    .testimonials,
    .pricing,
    .cta {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .section-header {
        margin-bottom: var(--space-2xl);
    }
    
    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: var(--space-sm);
        padding: var(--space-md);
        font-size: var(--text-sm);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .social-proof-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: var(--space-xl);
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}
