/* ========================================
   JuicyChat.AI - Spicy Dark Theme
   Colors: Deep Burgundy #8B1538 / Hot Pink #FF006E / Dark #1a0a0f
   ======================================== */

:root {
    /* Primary Colors */
    --color-primary: #FF006E;
    --color-primary-dark: #8B1538;
    --color-primary-light: #FF4D9E;
    
    /* Secondary Colors */
    --color-secondary: #FF4D00;
    --color-accent: #FFB800;
    --color-gold: #FFD700;
    
    /* Background Colors */
    --bg-dark: #1a0a0f;
    --bg-darker: #0d0508;
    --bg-card: #241218;
    --bg-card-hover: #2d161d;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e8d5db;
    --text-muted: #a0808a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF006E 0%, #8B1538 100%);
    --gradient-hero: linear-gradient(135deg, #1a0a0f 0%, #2d0f18 50%, #1a0a0f 100%);
    --gradient-text: linear-gradient(135deg, #FF006E 0%, #FF4D9E 50%, #FFB800 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(255, 0, 110, 0.3) 0%, transparent 70%);
    
    /* Effects */
    --shadow-glow: 0 0 30px rgba(255, 0, 110, 0.4);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1280px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-text);
    -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 28px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a0a0f;
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.6);
}

.btn-cta-large {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.btn-cta-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 0, 110, 0.6);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
}

.logo-juicy {
    color: var(--color-primary);
}

.logo-chat {
    color: white;
}

.logo-ai {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-primary-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 110, 0.15);
    border: 1px solid rgba(255, 0, 110, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: 24px;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--color-primary);
}

.hero-image {
    position: relative;
    overflow: visible;
}

.hero-image img {
    width: 140%;
    max-width: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    transform: translateX(-10%);
    object-fit: cover;
}

.hero-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-glow);
    border-radius: var(--radius-lg);
    z-index: -1;
    filter: blur(40px);
    opacity: 0.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 0, 110, 0.15);
    color: var(--color-primary-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SECTIONS CHARACTERS - FEMALE & MALE
   ======================================== */

/* FEMALE Section - Pink/Rose theme */
.characters {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #1a0a0f 0%, #240f18 30%, #1a0a0f 100%);
    position: relative;
}

.characters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FF006E 50%, transparent 100%);
}

/* MALE Section - Blue/Cyan theme */
.characters-male {
    background: linear-gradient(180deg, #0a0f1a 0%, #0d1525 30%, #0a0f1a 100%);
    position: relative;
    border-top: none;
}

.characters-male::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #00D4FF 50%, transparent 100%);
}

/* Section headers distinct colors */
.section-tag-pink {
    background: rgba(255, 0, 110, 0.2);
    color: #FF4D9E;
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.section-tag-blue {
    background: rgba(0, 212, 255, 0.2);
    color: #00D4FF;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.section-tag-blue {
    background: rgba(0, 212, 255, 0.15);
    color: #00D4FF;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 50%, #00FF88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-outline-blue {
    background: transparent;
    color: #00D4FF;
    border: 2px solid #00D4FF;
}

.btn-outline-blue:hover {
    background: #00D4FF;
    color: var(--bg-dark);
}

/* Male section uses same grid as Female - unified design */
/* Character cards are now identical in both sections for consistency */

.characters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.character-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.character-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(255, 0, 110, 0.3);
}

/* Male section cards - Blue theme */
.characters-male .character-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.character-media {
    position: relative;
    aspect-ratio: 3/4; /* Format portrait plus compact (moins étiré) */
    overflow: hidden;
}

/* Grid adapté pour 6 personnages par section */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes pour 6 cartes */
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .characters-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
    }
}

@media (max-width: 480px) {
    .characters-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
    }
}

.character-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    opacity: 1 !important; /* Force visible immediately */
}

.character-card:hover .character-media img {
    transform: scale(1.05);
}

.character-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 21, 56, 0.95) 0%, rgba(139, 21, 56, 0.4) 40%, transparent 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: all var(--transition-normal);
    backdrop-filter: blur(2px);
}

.character-card:hover .character-overlay {
    opacity: 1;
}

/* Male section overlay - Blue theme */
.characters-male .character-overlay {
    background: linear-gradient(to top, rgba(0, 100, 150, 0.95) 0%, rgba(0, 212, 255, 0.4) 40%, transparent 70%);
}

/* Overlay toujours visible sur mobile */
@media (max-width: 768px) {
    .character-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(139, 21, 56, 0.95) 0%, transparent 60%);
        padding-bottom: 16px;
    }
    .characters-male .character-overlay {
        background: linear-gradient(to top, rgba(0, 100, 150, 0.95) 0%, transparent 60%);
    }
    .chat-btn {
        transform: translateY(0);
        font-size: 13px;
        padding: 10px 20px;
    }
}

.chat-btn {
    background: white;
    color: var(--color-primary-dark);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.character-card:hover .chat-btn {
    transform: translateY(0);
}

.chat-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(0) scale(1.05);
}

/* Male section chat button - Blue theme */
.characters-male .chat-btn {
    color: #0077AA;
}

.characters-male .chat-btn:hover {
    background: #00D4FF;
    color: white;
}

.character-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.character-badge:not(.new):not(.animated) {
    background: var(--gradient-primary);
    color: white;
}

.character-badge.new {
    background: var(--color-accent);
    color: var(--bg-dark);
}

.character-badge.animated {
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    color: white;
}

/* Male section badges - Blue theme */
.characters-male .character-badge:not(.new):not(.animated) {
    background: linear-gradient(135deg, #00D4FF 0%, #0077AA 100%);
    color: white;
}

.character-info {
    padding: 20px;
}

.character-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.character-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.character-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.character-tags span {
    background: rgba(255, 0, 110, 0.15);
    color: var(--color-primary-light);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

/* Male section tags - Blue theme */
.characters-male .character-tags span {
    background: rgba(0, 212, 255, 0.15);
    color: #00D4FF;
}

.characters-cta {
    text-align: center;
}

/* Features Section */
.features {
    padding: var(--section-padding) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 110, 0.2);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 21, 56, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card.diamond {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, #241218 0%, #2a1f14 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.pricing-price .currency {
    font-size: 20px;
    font-weight: 600;
    margin-top: 4px;
}

.pricing-price .amount {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.pricing-price .period {
    font-size: 14px;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 6px;
}

.yearly {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li strong {
    color: var(--color-primary-light);
}

.pricing-card .btn {
    width: 100%;
}

.pricing-image {
    text-align: center;
}

.pricing-image img {
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary-light);
}

.faq-question svg {
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0.3;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 16px 0 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-primary);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .characters-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .navbar .container {
        height: 64px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 100%;
        transform: none;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item.large {
        grid-row: span 1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .characters-grid {
        grid-template-columns: 1fr;
    }
    
    .character-media {
        aspect-ratio: 3/4;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .btn-cta, .btn-cta-large {
        padding: 16px 28px;
        font-size: 15px;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations - Only for non-essential elements */
.feature-card, .pricing-card, .faq-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Character cards visible immediately - no opacity issue */
.character-card {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for cards */
.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.15s; }
.feature-card:nth-child(4) { animation-delay: 0.2s; }
.feature-card:nth-child(5) { animation-delay: 0.25s; }
.feature-card:nth-child(6) { animation-delay: 0.3s; }
