/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-bg) 0%, #ede9fe 50%, #fdf4ff 100%);
    padding: 5rem 0 4rem;
    overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; }
.hero-title { font-size: 3rem; line-height: 1.15; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }
.hero-cta { display: flex; gap: 1rem; margin-bottom: 1rem; }
.hero-reassure { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat { text-align: center; }
.hero-stat-number { display: block; font-size: 1.8rem; font-weight: 900; color: var(--primary); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-cards { display: flex; gap: 1rem; perspective: 800px; }
.hero-card {
    width: 150px;
    height: 200px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}
.hero-card:hover { transform: translateY(-10px) rotateY(5deg); }
.hero-card-1 { transform: rotate(-5deg); }
.hero-card-2 { transform: rotate(2deg) translateY(-20px); }
.hero-card-3 { transform: rotate(-3deg) translateY(10px); }

/* Age selector */
.age-selector-section { background: var(--bg-white); }
.age-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 700px; margin: 0 auto; }
.age-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text);
}
.age-card:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--text);
}
.age-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.age-range { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.25rem; }
.age-desc { font-size: 0.85rem; color: var(--text-muted); }

/* Categories */
.categories-section { background: var(--bg-white); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: var(--bg);
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text);
}
.category-card:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--text);
}
.category-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.category-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.2rem; }
.category-count { font-size: 0.75rem; color: var(--text-muted); }

/* How it works */
.how-section { background: var(--bg-white); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.how-step { text-align: center; padding: 1.5rem; }
.how-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.how-step h3 { margin-bottom: 0.5rem; }
.how-step p { color: var(--text-muted); font-size: 0.95rem; }

/* Pricing */
.pricing-section { background: linear-gradient(to bottom, var(--bg), var(--bg-white)); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card-popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}
.pricing-card-popular:hover { transform: scale(1.02) translateY(-4px); }
.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.pricing-price span { font-size: 1.2rem; }
.pricing-features { margin-bottom: 1.5rem; }
.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border: none; }

/* Packs */
.packs-section { background: var(--bg-white); }
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pack-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.pack-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.pack-cover { width: 100%; height: 180px; object-fit: cover; }
.pack-cover-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--primary-bg);
}
.pack-body { padding: 1.25rem; }
.pack-title { font-size: 1.1rem; margin-bottom: 0.25rem; }
.pack-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.pack-price { font-size: 1.3rem; font-weight: 900; color: var(--primary); margin-bottom: 0.75rem; }

/* CTA */
.cta-section { padding: 2rem 0 4rem; }
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
}
.cta-box h2 { font-size: 2rem; margin-bottom: 0.75rem; color: white; }
.cta-box p { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1.1rem; }
.cta-box .btn { background: white; color: var(--primary); border-color: white; }
.cta-box .btn:hover { background: var(--bg); }
