/* CSS Variables */
:root {
    --primary: #23aed3;
    --primary-light: #4fc3e0;
    --primary-dark: #1a8ba8;
    --secondary: #F9A826;
    --secondary-light: #FFCF6B;
    --accent: #E8635E;
    --accent-light: #FF9B98;
    
    --bg-light: #FFFEF9;
    --bg-cream: #FFF8E7;
    --bg-soft: #F5F3EE;
    
    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --text-muted: #A0A8AC;
    
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --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);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 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;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(91, 140, 90, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(91, 140, 90, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 254, 249, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-icon {
    font-size: 14px;
    color: var(--primary);
}

.logo-text {
    font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.nav-cta {
    padding: 12px 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    z-index: 999;
    padding: 100px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #b3e5f0 0%, #23aed3 100%);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FFCF6B 0%, #F9A826 100%);
    bottom: -100px;
    left: -50px;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FF9B98 0%, #E8635E 100%);
    top: 50%;
    left: 40%;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 8px;
    background: var(--secondary-light);
    z-index: -1;
    opacity: 0.6;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Comfortaa', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Before/After Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: ew-resize;
    user-select: none;
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.comparison-slider .img-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.comparison-slider .img-after {
    z-index: 0;
}

.comparison-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--white);
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.comparison-slider-handle::after {
    content: '⟨ ⟩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    z-index: 1;
    letter-spacing: 6px;
}

.comparison-labels {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 4;
    pointer-events: none;
}

.comparison-label {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* About block (v-pupky) */
.about-block {
    background: var(--bg-light);
}

.about-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(24px);
}

.about-content-block.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-content-block:hover {
    box-shadow: var(--shadow-lg);
}

.about-content-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.about-content-text p:last-child {
    margin-bottom: 0;
}

.about-content-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
}

.about-content-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Schedule block (v-pupky) */
.schedule-block {
    background: var(--bg-soft);
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schedule-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
    align-items: start;
    padding: 28px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-20px);
}

.schedule-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.schedule-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.schedule-item.animate-in:hover {
    transform: translateX(8px);
}

.schedule-time {
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

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

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-cream);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Skills Section */
.skills {
    background: var(--bg-soft);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.skill-card-wide {
    grid-column: span 2;
}

.skill-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.skill-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.skill-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #FFF5DC 100%);
    border-radius: 50%;
    color: var(--primary);
}

.skill-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.skill-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 0;
}

.section-cta .btn {
    min-width: 200px;
}

.between-section-cta {
    background: var(--bg-soft);
    padding: 40px 0;
    text-align: center;
}

.between-section-cta .section-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.between-section-cta .btn {
    min-width: 280px;
    padding: 18px 48px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    position: relative;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
}

.benefit-card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.benefit-card-large .benefit-desc {
    color: rgba(255, 255, 255, 0.85);
}

.benefit-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
}

.benefit-card-large .benefit-number {
    color: var(--white);
    opacity: 0.4;
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary);
}

.benefit-card-large .benefit-icon {
    color: var(--white);
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Program Section */
.program {
    background: var(--bg-soft);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.program-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.program-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.program-card-highlight {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
}

.program-card-highlight .program-label {
    color: rgba(255, 255, 255, 0.8);
}

.program-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 16px;
}

.program-card-highlight .program-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.program-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.program-value {
    font-size: 16px;
    font-weight: 600;
}

.program-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.program-about-content h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.program-about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.program-about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Learn Section */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.learn-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-20px);
}

.learn-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.learn-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.learn-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    color: var(--white);
}

/* Pricing Section */
.pricing {
    background: var(--bg-soft);
}

.pricing-single-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 60px;
    margin-bottom: 0;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-single-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #a78bfa 100%);
}

.pricing-single-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.pricing-single-left {
    text-align: center;
    padding-right: 40px;
    border-right: 1px solid var(--bg-soft);
}

.pricing-single-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #a78bfa 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.pricing-single-age {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.pricing-single-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-single-amount {
    font-family: 'Comfortaa', sans-serif;
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-single-amount.is-text {
    font-size: 28px;
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: inherit;
    background-clip: unset;
}

.pricing-single-currency {
    font-size: 32px;
    color: var(--primary);
    font-weight: 600;
}

.pricing-single-period {
    display: block;
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 8px;
}

.pricing-single-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pricing-single-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pricing-single-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pricing-single-features li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-single-features svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.pricing-single-features li div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-single-features li strong {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.pricing-single-features li span {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-single-bonus {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.pricing-single-bonus .bonus-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.pricing-single-bonus p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

.pricing-single-bonus strong {
    color: var(--primary);
}

/* Pricing options (two prices) */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-option-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.pricing-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.pricing-option-card .pricing-single-badge {
    margin-bottom: 16px;
}

.pricing-option-card .pricing-single-age {
    font-size: 20px;
    margin-bottom: 20px;
}

.pricing-option-card .pricing-single-amount {
    font-size: 48px;
}

.pricing-option-card .pricing-single-currency {
    font-size: 28px;
}

.pricing-option-btn {
    margin-top: 28px;
    width: 100%;
    max-width: 220px;
}

.pricing-common {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.pricing-common .pricing-single-features {
    margin-bottom: 24px;
}

/* Responsive для pricing-single */
@media (max-width: 968px) {
    .pricing-single-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-single-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--bg-soft);
        padding-bottom: 40px;
    }
    
    .pricing-single-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-single-card {
        padding: 40px 32px;
    }
    
    .pricing-single-amount {
        font-size: 48px;
    }
    
    .pricing-single-currency {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .pricing-options {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .pricing-option-card {
        padding: 32px 24px;
    }
    
    .pricing-option-card .pricing-single-amount {
        font-size: 40px;
    }
    
    .pricing-common {
        padding: 28px 20px;
    }
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.review-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
}

.review-card-child {
    background: linear-gradient(135deg, #FFF9E8 0%, #FFF5DC 100%);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
}

.author-avatar-child {
    background: var(--secondary);
}

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

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 14px;
    color: var(--text-muted);
}

/* Gallery Section */
.gallery {
    background: var(--bg-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    opacity: 0;
    transform: scale(0.95);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.contact-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-size: 17px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.detail-value {
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--bg-soft);
    border-radius: var(--radius-md);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

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

.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-secondary);
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: 50%;
    color: var(--primary);
    margin-bottom: 24px;
}

.form-success h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-image {
    filter: brightness(0) invert(1);
}

.footer-brand .logo-icon {
    color: var(--secondary);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 8px;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skill-card-wide {
        grid-column: span 2;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-about,
    .about-content-block {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .schedule-time {
        font-size: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .pricing-card-popular {
        transform: none;
    }
    
    .pricing-card-popular:hover {
        transform: translateY(-8px);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skill-card-wide {
        grid-column: 1 / -1;
    }

    .skill-card {
        padding: 24px 16px;
    }

    .skill-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .skill-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .skill-desc {
        font-size: 14px;
    }

    .between-section-cta {
        padding: 32px 0;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .pricing-bonus {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}

/* Animation delays */
.skill-card:nth-child(1) { transition-delay: 0s; }
.skill-card:nth-child(2) { transition-delay: 0.1s; }
.skill-card:nth-child(3) { transition-delay: 0.2s; }
.skill-card:nth-child(4) { transition-delay: 0.3s; }

.benefit-card:nth-child(1) { transition-delay: 0s; }
.benefit-card:nth-child(2) { transition-delay: 0.1s; }
.benefit-card:nth-child(3) { transition-delay: 0.2s; }
.benefit-card:nth-child(4) { transition-delay: 0.3s; }
.benefit-card:nth-child(5) { transition-delay: 0.4s; }

.schedule-item:nth-child(1) { transition-delay: 0s; }
.schedule-item:nth-child(2) { transition-delay: 0.08s; }
.schedule-item:nth-child(3) { transition-delay: 0.16s; }
.schedule-item:nth-child(4) { transition-delay: 0.24s; }
.schedule-item:nth-child(5) { transition-delay: 0.32s; }
.schedule-item:nth-child(6) { transition-delay: 0.4s; }

.program-card:nth-child(1) { transition-delay: 0s; }
.program-card:nth-child(2) { transition-delay: 0.05s; }
.program-card:nth-child(3) { transition-delay: 0.1s; }
.program-card:nth-child(4) { transition-delay: 0.15s; }
.program-card:nth-child(5) { transition-delay: 0.2s; }
.program-card:nth-child(6) { transition-delay: 0.25s; }

.learn-item:nth-child(1) { transition-delay: 0s; }
.learn-item:nth-child(2) { transition-delay: 0.05s; }
.learn-item:nth-child(3) { transition-delay: 0.1s; }
.learn-item:nth-child(4) { transition-delay: 0.15s; }
.learn-item:nth-child(5) { transition-delay: 0.2s; }
.learn-item:nth-child(6) { transition-delay: 0.25s; }
.learn-item:nth-child(7) { transition-delay: 0.3s; }
.learn-item:nth-child(8) { transition-delay: 0.35s; }
.learn-item:nth-child(9) { transition-delay: 0.4s; }
.learn-item:nth-child(10) { transition-delay: 0.45s; }

.gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.2s; }
.gallery-item:nth-child(4) { transition-delay: 0.3s; }
.gallery-item:nth-child(5) { transition-delay: 0.4s; }
.gallery-item:nth-child(6) { transition-delay: 0.5s; }
