/* ======================================
   VirtuPet Website Styles
   Mobile-first, responsive design
   ====================================== */

/* CSS Variables */
:root {
    /* Primary palette - warm and inviting */
    --primary: #FF6B4A;
    --primary-dark: #E85A3A;
    --primary-light: #FF8A70;
    
    /* Secondary palette - soft and friendly */
    --secondary: #4ECDC4;
    --secondary-dark: #3DB8B0;
    --secondary-light: #7EDED8;
    
    /* Accent colors */
    --accent-yellow: #FFD93D;
    --accent-purple: #A855F7;
    --accent-pink: #EC4899;
    --accent-green: #22C55E;
    
    /* Background colors */
    --bg-cream: #FFF9F5;
    --bg-warm: #FFF5EE;
    --bg-card: #FFFFFF;
    --bg-dark: #1A1A2E;
    
    /* Text colors - improved contrast for accessibility */
    --text-primary: #1F1F1F;
    --text-secondary: #4A5568;
    --text-light: #718096;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B4A 0%, #FF8E53 50%, #FFD93D 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #44A8B3 100%);
    --gradient-hero: linear-gradient(180deg, #FFF9F5 0%, #FFE8DC 100%);
    --gradient-spotlight: linear-gradient(135deg, #FFFBF7 0%, #FFF5EE 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(255, 107, 74, 0.3);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container - Mobile First */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 4px 20px rgba(255, 107, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(255, 107, 74, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-icon {
    font-size: 18px;
}

.apple-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Floating Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 20px;
    opacity: 0.2;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ======================================
   NAVIGATION
   ====================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(255, 249, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1002;
}

.logo-icon {
    font-size: 24px;
    animation: bounce-subtle 2s ease-in-out infinite;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    animation: bounce-subtle 2s ease-in-out infinite;
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Nav Links */
.nav-links {
    display: none;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
}

.nav-cta.desktop-only {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 2px 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile CTA in nav */
.mobile-cta {
    display: block;
}

.nav-cta-mobile {
    display: block;
    background: var(--gradient-primary);
    color: white !important;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-align: center;
    font-weight: 700;
    margin-top: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.nav-cta-mobile::after {
    display: none !important;
}

/* Mobile Nav Slide-in Menu */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 90px 24px 40px;
    gap: 0;
    z-index: 1001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    overflow-y: auto;
}

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

.nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links.active li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation for menu items */
.nav-links.active li:nth-child(1) { transition-delay: 0.05s; }
.nav-links.active li:nth-child(2) { transition-delay: 0.1s; }
.nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
.nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
.nav-links.active li:nth-child(5) { transition-delay: 0.25s; }
.nav-links.active li:nth-child(6) { transition-delay: 0.3s; }
.nav-links.active li:nth-child(7) { transition-delay: 0.35s; }

.nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-links a::after {
    display: none;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-links {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        gap: 32px;
        box-shadow: none;
        display: flex;
        overflow: visible;
    }
    
    .nav-links li {
        opacity: 1;
        transform: none;
        width: auto;
    }
    
    .nav-links a {
        display: inline;
        padding: 0;
        font-size: 15px;
        border-bottom: none;
    }
    
    .nav-links a::after {
        display: block;
    }
    
    .mobile-cta {
        display: none;
    }
    
    .nav-cta.desktop-only {
        display: inline-flex;
    }
    
    .mobile-menu-overlay {
        display: none;
    }
}

/* ======================================
   HERO SECTION - Mobile First
   ====================================== */
.hero {
    min-height: 100vh;
    padding: 100px 16px 60px;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.08) 0%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    flex: 1;
    max-width: 100%;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    animation: fade-in-up 0.8s ease forwards;
}

.hero-title {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 16px;
    animation: fade-in-up 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
    animation: fade-in-up 0.8s ease 0.2s forwards;
    opacity: 0;
    padding: 0 8px;
}

.hero-phone-inline {
    margin: 40px auto;
    display: flex;
    justify-content: center;
    animation: fade-in-up 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-phone-inline .phone-mockup {
    transform: scale(0.85);
    margin: 0 auto;
}

.hero-phone-inline .phone-screen {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.hero-phone-inline .pet-showcase {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone-inline .hero-pet {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    display: none;
}

.hero-phone-inline .hero-pet.active {
    display: block;
}

.hero-phone-inline .app-ui-overlay {
    padding: 12px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    animation: fade-in-up 0.8s ease 0.4s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.stat-divider {
    display: none;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.phone-mockup {
    width: 240px;
    height: 480px;
    background: linear-gradient(145deg, #2D2D2D 0%, #1A1A1A 100%);
    border-radius: 36px;
    padding: 8px;
    box-shadow: var(--shadow-xl), 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #1A1A1A;
    border-radius: 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFF9F5 0%, #FFE8DC 100%);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 16px 30px;
}

.pet-showcase {
    position: relative;
    width: 150px;
    height: 150px;
}

.hero-pet {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.hero-pet.active {
    opacity: 1;
    transform: scale(1);
}

/* Video Showcase Styles */
.video-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    border-radius: 28px;
}

.showcase-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 1;
    border-radius: 28px;
}

.showcase-video.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.showcase-video.fade-out {
    opacity: 0;
    transform: scale(0.98);
    z-index: 1;
}

/* Video Progress Indicators */
.video-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.video-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-indicator.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transform: scale(1.2);
}

.video-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.video-indicator.active:hover {
    background: var(--primary);
}

.app-ui-overlay {
    width: 100%;
    margin-top: auto;
}

.step-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 12px;
}

.step-icon {
    font-size: 20px;
}

.step-count {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.step-goal {
    font-size: 13px;
    color: var(--text-secondary);
}

.health-bar {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 10px;
}

.health-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: fill-health 2s ease forwards;
}

@keyframes fill-health {
    from { width: 0; }
}

.mood-indicator {
    text-align: center;
    font-weight: 700;
    color: var(--accent-green);
    font-size: 14px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Floating Elements - Hidden on mobile */
.floating-elements {
    display: none;
}

/* Hero Desktop */
@media (min-width: 768px) {
    .hero {
        padding: 120px 24px 80px;
        flex-direction: column;
        text-align: center;
        gap: 40px;
        align-items: center;
    }
    
    .hero-content {
        max-width: 700px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 48px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 0;
        text-align: center;
        max-width: 550px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-phone-inline .phone-mockup {
        transform: scale(1);
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .floating-elements {
        display: block;
        position: absolute;
        inset: 0;
        pointer-events: none;
    }
    
    .float-element {
        position: absolute;
        font-size: 28px;
        animation: float-around 8s ease-in-out infinite;
    }
    
    .float-element.heart { top: 10%; right: 10%; }
    .float-element.star { top: 30%; left: 5%; animation-delay: 2s; }
    .float-element.paw { bottom: 20%; right: 5%; animation-delay: 4s; }
    .float-element.sparkle { bottom: 30%; left: 10%; animation-delay: 6s; }
}

@media (min-width: 1024px) {
    .hero {
        padding: 140px 40px 80px;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 800px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        max-width: 600px;
    }
    
    .phone-mockup {
        width: 300px;
        height: 600px;
    }
}

@keyframes float-around {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
    25% { transform: translate(10px, -15px) rotate(10deg); opacity: 1; }
    50% { transform: translate(-5px, -25px) rotate(-5deg); opacity: 0.9; }
    75% { transform: translate(-15px, -10px) rotate(5deg); opacity: 1; }
}

/* ======================================
   SPOTLIGHT SECTION - Mobile First
   ====================================== */
.spotlight {
    padding: 60px 16px;
    background: var(--gradient-spotlight);
}

.spotlight-card.main {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    border: 3px solid var(--accent-green);
}

.spotlight-content {
    flex: 1;
    padding: 32px 24px;
    text-align: center;
}

.spotlight-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.spotlight-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.spotlight-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.spotlight-visual {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.spotlight-pet {
    width: 180px;
    height: 180px;
    object-fit: contain;
    animation: bounce-pet 2s ease-in-out infinite;
}

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

.spotlight-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spotlight-card.small {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.spotlight-card.small:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.spotlight-card.small .card-pet {
    width: 120px;
    min-width: 120px;
    height: 120px;
    object-fit: contain;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 16px;
}

.spotlight-card.small .card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.card-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.card-content h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.card-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Spotlight Desktop */
@media (min-width: 768px) {
    .spotlight {
        padding: 80px 24px;
    }
    
    .spotlight-card.main {
        flex-direction: row;
    }
    
    .spotlight-content {
        padding: 48px;
        text-align: left;
    }
    
    .spotlight-content h2 {
        font-size: 32px;
    }
    
    .spotlight-visual {
        min-height: 350px;
    }
    
    .spotlight-pet {
        width: 220px;
        height: 220px;
    }
    
    .spotlight-grid {
        flex-direction: row;
        gap: 20px;
    }
    
    .spotlight-card.small .card-pet {
        width: 160px;
        min-width: 160px;
        height: 160px;
    }
    
    .card-content h3 {
        font-size: 18px;
    }
}

/* ======================================
   SECTION HEADER
   ====================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
}

.section-title {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .section-subtitle {
        font-size: 17px;
    }
}

/* ======================================
   HOW IT WORKS SECTION - Mobile First
   ====================================== */
.how-it-works {
    padding: 60px 16px;
    background: var(--bg-cream);
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-visual {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-visual.goals {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    width: 100%;
    max-width: 200px;
}

.goal-bubble {
    width: auto;
    min-width: 44px;
    padding: 6px 10px;
    background: var(--bg-cream);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

.goal-bubble .goal-label {
    font-size: 8px;
    font-weight: 600;
    opacity: 0.7;
    margin-top: 2px;
}

.goal-bubble.active {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.goal-bubble.active .goal-label {
    opacity: 0.9;
}

/* How It Works Desktop */
@media (min-width: 768px) {
    .how-it-works {
        padding: 100px 24px;
    }
    
    .steps-timeline {
        gap: 32px;
    }
    
    .step-card {
        flex-direction: row;
        padding: 36px;
        text-align: left;
    }
    
    .step-card:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .step-visual {
        width: 160px;
        height: 160px;
    }
}

/* ======================================
   FEATURES SECTION - Mobile First
   ====================================== */
.features {
    padding: 60px 16px;
    background: white;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* Features Showcase - New Layout */
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-cream);
    padding: 20px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    opacity: 1;
    transform: translateY(0);
}

/* Alternate layout on mobile: even rows have picture on left */
.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

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

.feature-text {
    flex: 1;
    min-width: 0;
}

.feature-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Feature Phone Mockup */
.feature-mockup {
    position: relative;
    flex-shrink: 0;
}

.feature-phone {
    width: 80px;
    height: 160px;
    background: linear-gradient(145deg, #2D2D2D 0%, #1A1A1A 100%);
    border-radius: 16px;
    padding: 4px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-phone-notch {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 10px;
    background: #1A1A1A;
    border-radius: 8px;
    z-index: 10;
}

.feature-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.feature-phone-screen img,
.feature-phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Health Arrow Indicator */
.health-arrow {
    position: absolute;
    top: 30%;
    right: -45px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: pulse-arrow 2s ease-in-out infinite;
}

.arrow-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: white;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transform: rotate(-135deg);
}

@keyframes pulse-arrow {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(-5px); opacity: 0.7; }
}

/* Tablet View */
@media (min-width: 640px) {
    .features-showcase {
        gap: 28px;
    }
    
    .feature-row {
        padding: 24px;
        gap: 24px;
        flex-direction: row; /* Reset alternating for tablet+ */
    }
    
    .feature-row:nth-child(even) {
        flex-direction: row; /* Override mobile alternating */
    }
    
    .feature-text h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .feature-text p {
        font-size: 14px;
    }
    
    .feature-phone {
        width: 100px;
        height: 200px;
        border-radius: 20px;
        padding: 5px;
    }
    
    .feature-phone-notch {
        width: 35px;
        height: 12px;
        top: 9px;
    }
    
    .feature-phone-screen {
        border-radius: 15px;
    }
    
    .feature-phone-screen img,
    .feature-phone-screen video {
        border-radius: 15px;
    }
    
    .health-arrow {
        right: -55px;
    }
    
    .arrow-label {
        font-size: 16px;
        padding: 5px 10px;
    }
    
    .arrow-icon {
        width: 24px;
        height: 24px;
    }
}

/* Desktop View */
@media (min-width: 1024px) {
    .features {
        padding: 100px 40px;
    }
    
    .features-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .feature-row {
        padding: 28px;
        gap: 28px;
    }
    
    .feature-text h3 {
        font-size: 20px;
    }
    
    .feature-text p {
        font-size: 15px;
    }
    
    .feature-phone {
        width: 110px;
        height: 220px;
        border-radius: 22px;
        padding: 5px;
    }
    
    .feature-phone-notch {
        width: 40px;
        height: 13px;
        top: 10px;
    }
    
    .feature-phone-screen {
        border-radius: 17px;
    }
    
    .feature-phone-screen img,
    .feature-phone-screen video {
        border-radius: 17px;
    }
    
    .health-arrow {
        right: -60px;
        top: 35%;
    }
    
    .arrow-label {
        font-size: 18px;
        padding: 6px 12px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .features-showcase {
        gap: 40px;
        max-width: 1100px;
    }
    
    .feature-row {
        padding: 32px;
    }
    
    .feature-phone {
        width: 120px;
        height: 240px;
        border-radius: 24px;
        padding: 6px;
    }
    
    .feature-phone-notch {
        width: 44px;
        height: 14px;
        top: 11px;
    }
    
    .feature-phone-screen {
        border-radius: 18px;
    }
    
    .feature-phone-screen img,
    .feature-phone-screen video {
        border-radius: 18px;
    }
}

/* ======================================
   PETS SHOWCASE SECTION - Mobile First
   ====================================== */
.pets-showcase {
    padding: 60px 16px;
    background: var(--gradient-hero);
}

.pets-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

.pet-selector {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 32px;
}

.pet-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    background: white;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.pet-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pet-btn.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(255, 107, 74, 0.1);
}

.pet-selector-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.pet-btn:hover .pet-selector-img {
    transform: scale(1.1);
}

.pet-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
}

.pet-display {
    position: relative;
    min-height: auto;
}

.pet-panel {
    display: none;
    animation: fade-in 0.5s ease;
}

.pet-panel.active {
    display: block;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.pet-info {
    text-align: center;
    margin-bottom: 24px;
}

.pet-info h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.pet-personality {
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 12px;
}

.pet-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
}

.pet-badge.free {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.pet-badge.premium {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-purple);
}

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

.mood-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.mood-card.featured {
    grid-column: span 2;
    border: 2px solid var(--accent-green);
}

.mood-card img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}

.mood-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Pets Desktop */
@media (min-width: 640px) {
    .pet-selector {
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    
    .pet-btn {
        padding: 14px 20px;
    }
    
    .pet-selector-img {
        width: 44px;
        height: 44px;
    }
    
    .pet-name {
        font-size: 13px;
    }
    
    .mood-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mood-card.featured {
        grid-column: span 3;
    }
}

@media (min-width: 768px) {
    .pets-showcase {
        padding: 100px 24px;
    }
    
    .mood-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .mood-card.featured {
        grid-column: span 1;
    }
    
    .mood-card img {
        height: 100px;
    }
}

/* ======================================
   MINIGAMES SECTION - Mobile First
   ====================================== */
.minigames {
    padding: 50px 12px;
    background: linear-gradient(180deg, #ffffff 0%, #FFF9F0 100%);
    overflow: hidden;
}

/* Phone Mockups Showcase - Mobile: 2x2 Grid */
.games-phone-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    margin: 30px auto;
    max-width: 340px;
    padding: 10px 0;
}

.game-phone-wrapper {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile: No rotation, clean grid */
.game-phone-wrapper:nth-child(1),
.game-phone-wrapper:nth-child(2),
.game-phone-wrapper:nth-child(3),
.game-phone-wrapper:nth-child(4) {
    transform: none;
    z-index: 1;
    margin-right: 0;
}

.game-phone-wrapper:active {
    transform: scale(0.96);
}

/* Phone Mockup Frame - Mobile */
.game-phone-mockup {
    width: 130px;
    height: 260px;
    background: linear-gradient(145deg, #2D2D2D 0%, #1A1A1A 100%);
    border-radius: 24px;
    padding: 5px;
    position: relative;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Dynamic Island / Notch */
.game-phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 14px;
    background: #1A1A1A;
    border-radius: 10px;
    z-index: 10;
}

/* Phone Screen */
.game-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 19px;
    overflow: hidden;
    background: #000;
}

.game-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 19px;
}

/* Game Label - Always visible on mobile */
.game-phone-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 12px;
    text-align: center;
    opacity: 1;
    transform: none;
}

.game-emoji {
    font-size: 20px;
}

.game-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.game-desc {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.3;
    max-width: 140px;
}

/* Credit Info Badge */
.games-credit-info {
    text-align: center;
    margin-top: 25px;
}

.credit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFF7E6 0%, #FFE8CC 100%);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.2);
}

.credit-icon {
    font-size: 18px;
}

.credit-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.credit-subtext {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 6px;
}

/* Tablet View - Horizontal with overlap */
@media (min-width: 640px) {
    .minigames {
        padding: 60px 16px;
    }
    
    .games-phone-showcase {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        max-width: 100%;
        margin: 40px auto;
        padding: 20px 0;
    }
    
    .game-phone-mockup {
        width: 150px;
        height: 300px;
        border-radius: 26px;
        padding: 6px;
    }
    
    .game-phone-notch {
        width: 48px;
        height: 15px;
        top: 9px;
    }
    
    .game-phone-screen {
        border-radius: 20px;
    }
    
    .game-phone-screen img {
        border-radius: 20px;
    }
    
    /* Fanned layout for tablet+ */
    .game-phone-wrapper:nth-child(1) {
        transform: rotate(-8deg) translateY(15px);
        z-index: 4;
        margin-right: -30px;
    }
    
    .game-phone-wrapper:nth-child(2) {
        transform: rotate(-3deg) translateY(5px);
        z-index: 3;
        margin-right: -30px;
    }
    
    .game-phone-wrapper:nth-child(3) {
        transform: rotate(3deg) translateY(5px);
        z-index: 2;
        margin-right: -30px;
    }
    
    .game-phone-wrapper:nth-child(4) {
        transform: rotate(8deg) translateY(15px);
        z-index: 1;
        margin-right: 0;
    }
    
    .game-phone-wrapper:hover {
        transform: rotate(0deg) translateY(-15px) scale(1.05);
        z-index: 10;
    }
    
    .game-phone-label {
        margin-top: 16px;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    .game-phone-wrapper:hover .game-phone-label {
        opacity: 1;
        transform: translateY(0);
    }
    
    .game-emoji {
        font-size: 24px;
    }
    
    .game-name {
        font-size: 14px;
    }
    
    .game-desc {
        font-size: 12px;
        max-width: 160px;
    }
}

/* Desktop View */
@media (min-width: 1024px) {
    .minigames {
        padding: 100px 40px;
    }
    
    .games-phone-showcase {
        margin: 60px auto;
        padding: 40px 0;
    }
    
    .game-phone-mockup {
        width: 200px;
        height: 400px;
        border-radius: 32px;
        padding: 7px;
    }
    
    .game-phone-notch {
        width: 60px;
        height: 18px;
        top: 12px;
    }
    
    .game-phone-screen {
        border-radius: 25px;
    }
    
    .game-phone-screen img {
        border-radius: 25px;
    }
    
    .game-phone-wrapper:nth-child(1) {
        transform: rotate(-10deg) translateY(20px);
        margin-right: -45px;
    }
    
    .game-phone-wrapper:nth-child(2) {
        transform: rotate(-4deg) translateY(5px);
        margin-right: -45px;
    }
    
    .game-phone-wrapper:nth-child(3) {
        transform: rotate(4deg) translateY(5px);
        margin-right: -45px;
    }
    
    .game-phone-wrapper:nth-child(4) {
        transform: rotate(10deg) translateY(20px);
    }
    
    .game-phone-wrapper:hover {
        transform: rotate(0deg) translateY(-25px) scale(1.08);
    }
    
    .game-phone-label {
        margin-top: 20px;
    }
    
    .game-emoji {
        font-size: 28px;
    }
    
    .game-name {
        font-size: 16px;
    }
    
    .game-desc {
        font-size: 13px;
        max-width: 180px;
    }
    
    .credit-badge {
        padding: 14px 32px;
    }
    
    .credit-text {
        font-size: 16px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .game-phone-mockup {
        width: 240px;
        height: 480px;
        border-radius: 38px;
        padding: 8px;
    }
    
    .game-phone-notch {
        width: 72px;
        height: 22px;
        top: 14px;
    }
    
    .game-phone-screen {
        border-radius: 30px;
    }
    
    .game-phone-screen img {
        border-radius: 30px;
    }
    
    .game-phone-wrapper:nth-child(1) {
        transform: rotate(-12deg) translateY(25px);
        margin-right: -55px;
    }
    
    .game-phone-wrapper:nth-child(2) {
        margin-right: -55px;
    }
    
    .game-phone-wrapper:nth-child(3) {
        margin-right: -55px;
    }
    
    .game-phone-wrapper:nth-child(4) {
        transform: rotate(12deg) translateY(25px);
    }
    
    .game-emoji {
        font-size: 32px;
    }
    
    .game-name {
        font-size: 18px;
    }
    
    .game-desc {
        font-size: 14px;
        max-width: 200px;
    }
}

/* ======================================
   FAQ SECTION - Mobile First
   ====================================== */
.faq-section {
    padding: 60px 16px;
    background: var(--bg-cream);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    gap: 12px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span {
    flex: 1;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 16px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .faq-section {
        padding: 100px 24px;
    }
    
    .faq-question {
        padding: 22px 24px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 24px 22px;
        font-size: 15px;
    }
}

/* ======================================
   REVIEWS SECTION - Mobile First
   ====================================== */
.reviews {
    padding: 60px 16px;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-normal);
    opacity: 1;
    transform: translateY(0);
}

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

.review-card.featured {
    border: 2px solid var(--primary);
    background: white;
}

.review-stars {
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 4px;
    display: flex;
    gap: 4px;
}

.review-stars .star {
    color: #F5A623;
    text-shadow: 0 2px 8px rgba(245, 166, 35, 0.4);
    font-size: 22px;
}

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

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

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
}

.reviewer-date {
    font-size: 12px;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .reviews {
        padding: 100px 24px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .review-card {
        padding: 32px;
    }
    
    .review-text {
        font-size: 16px;
    }
}

/* ======================================
   DOWNLOAD CTA SECTION - Mobile First
   ====================================== */
.download-cta {
    padding: 60px 16px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-pets {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.cta-pet {
    width: 56px;
    height: 56px;
    object-fit: contain;
    animation: bounce-stagger 2s ease-in-out infinite;
}

.cta-pet.pet-1 { animation-delay: 0s; }
.cta-pet.pet-2 { animation-delay: 0.1s; margin-left: -8px; }
.cta-pet.pet-3 { animation-delay: 0.2s; margin-left: -8px; }
.cta-pet.pet-4 { animation-delay: 0.3s; margin-left: -8px; }
.cta-pet.pet-5 { animation-delay: 0.4s; margin-left: -8px; }

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

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.app-store-icon {
    width: 22px;
    height: 22px;
}

.app-store-icon svg {
    width: 100%;
    height: 100%;
}

.cta-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.cta-features span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (min-width: 640px) {
    .cta-features {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

@media (min-width: 768px) {
    .download-cta {
        padding: 100px 24px;
    }
    
    .cta-pet {
        width: 80px;
        height: 80px;
    }
    
    .cta-pet.pet-2,
    .cta-pet.pet-3,
    .cta-pet.pet-4,
    .cta-pet.pet-5 {
        margin-left: -12px;
    }
    
    .cta-content h2 {
        font-size: 42px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
}

/* ======================================
   FOOTER - Mobile First
   ====================================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 48px 16px 32px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

@media (min-width: 768px) {
    .footer {
        padding: 64px 24px 40px;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 48px;
    }
    
    .footer-links {
        gap: 48px;
    }
    
    .footer-column a {
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
}

/* ======================================
   MODAL STYLES - Mobile First
   ====================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    font-size: 22px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 32px 24px 20px;
    background: white;
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 12px;
}

.modal-icon.privacy-icon {
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.2), rgba(255, 107, 74, 0.1));
}

.modal-icon.terms-icon {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(78, 205, 196, 0.1));
}

.modal-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.modal-date {
    font-size: 12px;
    color: var(--text-secondary);
}

.modal-body {
    padding: 20px 24px 32px;
    overflow-y: auto;
    flex: 1;
}

.policy-section {
    margin-bottom: 24px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-section li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
}

.policy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.policy-section a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .modal-header {
        padding: 40px 40px 24px;
    }
    
    .modal-body {
        padding: 24px 40px 40px;
    }
    
    .modal-header h2 {
        font-size: 26px;
    }
}

/* ======================================
   WAITLIST BAR - Sticky Header
   ====================================== */
.waitlist-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 10px 16px;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(255, 107, 74, 0.3);
}

.waitlist-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.waitlist-bar-text {
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.waitlist-bar-form {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 400px;
}

.waitlist-bar-input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    outline: none;
}

.waitlist-bar-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.waitlist-bar-btn {
    padding: 10px 20px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.waitlist-bar-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Adjust navbar position for waitlist bar */
.navbar {
    top: 72px; /* Height of waitlist bar on mobile */
}

@media (min-width: 640px) {
    .waitlist-bar {
        padding: 12px 24px;
    }
    
    .waitlist-bar-content {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
    
    .waitlist-bar-text {
        font-size: 14px;
    }
    
    .waitlist-bar-form {
        width: auto;
        max-width: none;
    }
    
    .waitlist-bar-input {
        width: 250px;
    }
    
    .navbar {
        top: 52px; /* Height of waitlist bar on desktop */
    }
}

/* Adjust hero section padding for fixed elements */
.hero {
    padding-top: 180px; /* Waitlist bar + navbar height */
}

@media (min-width: 640px) {
    .hero {
        padding-top: 160px;
    }
}

/* ======================================
   WAITLIST CTA SECTION
   ====================================== */
.waitlist-cta {
    padding: 80px 16px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.waitlist-input {
    padding: 16px 20px;
    border: 2px solid rgba(255, 107, 74, 0.2);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: all var(--transition-fast);
    text-align: center;
}

.waitlist-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.1);
}

.waitlist-submit {
    width: 100%;
}

.waitlist-message {
    text-align: center;
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

.waitlist-message.success {
    color: var(--accent-green);
}

.waitlist-message.error {
    color: #EF4444;
}

@media (min-width: 640px) {
    .waitlist-input-group {
        flex-direction: row;
    }
    
    .waitlist-input {
        flex: 1;
        text-align: left;
    }
    
    .waitlist-submit {
        width: auto;
    }
}

/* ======================================
   WAITLIST POPUP MODAL
   ====================================== */
.waitlist-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.waitlist-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.waitlist-popup {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.waitlist-popup-overlay.active .waitlist-popup {
    transform: scale(1) translateY(0);
}

.waitlist-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.waitlist-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-cream);
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.waitlist-popup-close:hover {
    background: var(--primary-light);
    color: white;
    transform: rotate(90deg);
}

.waitlist-popup-content {
    padding: 40px 32px 32px;
    text-align: center;
}

.waitlist-popup-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.waitlist-popup h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.waitlist-popup p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.waitlist-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.waitlist-popup-input {
    padding: 14px 18px;
    border: 2px solid rgba(255, 107, 74, 0.2);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: all var(--transition-fast);
}

.waitlist-popup-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.1);
}

.waitlist-popup-btn {
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.waitlist-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.waitlist-popup-message {
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

.waitlist-popup-message.success {
    color: var(--accent-green);
}

.waitlist-popup-message.error {
    color: #EF4444;
}

.waitlist-popup-instagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.waitlist-popup-instagram span {
    font-size: 12px;
    color: var(--text-light);
}

.instagram-link-popup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.instagram-link-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.waitlist-popup-note {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 16px;
}

/* ======================================
   FOOTER WAITLIST SECTION
   ====================================== */
.footer-waitlist {
    background: var(--bg-dark);
    padding: 40px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-waitlist-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.footer-waitlist-text h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
}

.footer-waitlist-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}

.footer-waitlist-input {
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: all var(--transition-fast);
}

.footer-waitlist-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-waitlist-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.footer-waitlist-btn {
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.footer-waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-waitlist-message {
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

.footer-waitlist-message.success {
    color: var(--accent-green);
}

.footer-waitlist-message.error {
    color: #EF4444;
}

.footer-instagram {
    margin-top: 20px;
}

.instagram-link-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.instagram-link-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.5);
}

@media (min-width: 640px) {
    .footer-waitlist {
        padding: 50px 24px;
    }
    
    .footer-waitlist-text h3 {
        font-size: 26px;
    }
    
    .footer-waitlist-form {
        flex-direction: row;
    }
    
    .footer-waitlist-input {
        flex: 1;
    }
}

/* ======================================
   UTILITY CLASSES
   ====================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ======================================
   SUCCESS NOTIFICATION
   ====================================== */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 420px;
    width: calc(100% - 40px);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.success-notification-content {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    border-left: 4px solid var(--primary);
}

.success-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.success-icon svg {
    width: 100%;
    height: 100%;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-circle {
    animation: successCircle 0.6s ease-out;
    transform-origin: center;
}

.success-checkmark {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: successCheck 0.4s ease-out 0.2s forwards;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes successCircle {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes successCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.success-text {
    flex: 1;
}

.success-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Fredoka', sans-serif;
}

.success-text p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.success-email {
    margin-top: 12px;
    padding: 8px 12px;
    background: var(--bg-cream);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Fredoka', sans-serif;
}

.success-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.success-instagram:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.success-instagram svg {
    flex-shrink: 0;
}

.success-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--bg-cream);
    color: var(--text-tertiary);
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

@media (max-width: 640px) {
    .success-notification {
        top: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
    
    .success-notification-content {
        padding: 20px;
    }
    
    .success-icon {
        width: 40px;
        height: 40px;
    }
    
    .success-text h3 {
        font-size: 16px;
    }
    
    .success-text p {
        font-size: 13px;
    }
}
