:root {
    --primary: #1e2a4a;
    --primary-dark: #0f1830;
    --primary-light: #2d3e6f;
    --accent: #ff7a3c;
    --accent-dark: #e85d1a;
    --accent-light: #ffb088;
    --peach: #ffe9d6;
    --peach-light: #fff4e8;
    --blue: #4a90e2;
    --green: #4caf50;
    --red: #ef5350;
    --teal: #26c6da;
    --yellow: #ffc107;
    --pink: #ec407a;
    --purple: #9c27b0;

    --grad-hero: linear-gradient(135deg, #fff4e8 0%, #ffe9d6 50%, #fff4e8 100%);
    --grad-hero-2: linear-gradient(180deg, #fff4e8 0%, #ffffff 100%);
    --grad-soft: linear-gradient(180deg, #ffffff 0%, #fff4e8 100%);
    --grad-cta-blue: linear-gradient(135deg, #5da3f0 0%, #4a90e2 100%);
    --grad-cta-green: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
    --grad-cta-red: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
    --grad-cta-teal: linear-gradient(135deg, #4dd0e1 0%, #26c6da 100%);
    --grad-btn: linear-gradient(135deg, #ff8a4c 0%, #ff7a3c 100%);
    --grad-footer: linear-gradient(180deg, #fff4e8 0%, #ffffff 100%);

    --bg: #ffffff;
    --bg-soft: #fafbfc;
    --bg-tag: #fff4e8;
    --text: #1e2a4a;
    --muted: #6b7a8f;
    --border: #eef2f7;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 10px rgba(30,42,74,.05);
    --shadow-md: 0 12px 32px rgba(30,42,74,.08);
    --shadow-lg: 0 20px 50px rgba(30,42,74,.12);
    --container: 1200px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: 'Baloo 2', 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 2.2vw + 1rem, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

.gradient-text { color: var(--accent); }
.highlight { color: var(--accent); }

.section-tag {
    display: inline-block;
    background: var(--peach);
    color: var(--accent-dark);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.section-tag.light {
    background: rgba(255,255,255,.2);
    color: #fff;
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head.left { text-align: left; max-width: 620px; margin-left: 0; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(30,42,74,.25);
}
.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 18px rgba(255,122,60,.3);
}
.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(255,122,60,.4);
}
.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-light {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}
.btn-light:hover { background: var(--peach); transform: translateY(-2px); }

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,244,232,.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,122,60,.12);
}
.topbar {
    background: var(--primary);
    font-size: .85rem;
    padding: 8px 0;
    color: #fff;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; opacity: .9; }
.topbar-contact a:hover { opacity: 1; color: var(--accent-light); }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a {
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 50%;
    font-size: .72rem; font-weight: 700;
    transition: all var(--transition);
}
.topbar-social a:hover { background: var(--accent); }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Baloo 2', sans-serif;
}
.brand-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(255,122,60,.18);
    overflow: hidden;
    flex-shrink: 0;
    transition: transform var(--transition);
    border: 2px solid var(--peach);
}
.brand:hover .brand-icon { transform: scale(1.05) rotate(-3deg); }
.brand-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.brand-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

.nav-list { display: flex; align-items: center; gap: 30px; }
.nav-list a {
    font-weight: 600;
    color: var(--primary);
    position: relative;
    font-size: .95rem;
}
.nav-list a:not(.btn):hover { color: var(--accent); }
.nav-list a:not(.btn).active { color: var(--accent); }
.nav-list a:not(.btn)::after {
    content: '';
    position: absolute; left: 0; bottom: -8px;
    width: 0; height: 3px;
    background: var(--accent);
    transition: width var(--transition);
    border-radius: 2px;
}
.nav-list a:not(.btn):hover::after,
.nav-list a:not(.btn).active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--primary); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* HERO - PowerKids style */
.hero {
    position: relative;
    background: var(--grad-hero);
    padding: 90px 0 100px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,122,60,.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px; right: -200px;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(74,144,226,.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px; left: -100px;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content {
    color: var(--primary-dark);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--accent-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--peach);
}
.hero-badge::before { content: '✨'; }
.hero-content h1 {
    margin-bottom: 22px;
    color: var(--primary-dark);
}
.hero-content h1 .highlight { color: var(--accent); }
.hero-content p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 28px;
    background-image: url('https://images.unsplash.com/photo-1587653263995-422546a7a569?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 50px rgba(30,42,74,.18);
    border: 8px solid #fff;
    transform: rotate(-2deg);
    position: relative;
}
.hero-img::before {
    content: '';
    position: absolute;
    inset: -20px -20px auto auto;
    width: 110px; height: 110px;
    background: var(--peach);
    border-radius: 50%;
    z-index: -1;
}
.hero-img::after {
    content: '';
    position: absolute;
    inset: auto auto -20px -20px;
    width: 80px; height: 80px;
    background: var(--accent);
    border-radius: 50%;
    z-index: -1;
    opacity: .3;
}
.phone-frame {
    width: 320px;
    height: 640px;
    background: var(--primary-dark);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 30px 60px rgba(30,42,74,.25), 0 0 0 6px rgba(30,42,74,.06);
    position: relative;
    transform: rotate(-3deg);
}
.phone-frame::before {
    content: '';
    position: absolute;
    top: 24px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 22px;
    background: var(--primary-dark);
    border-radius: 0 0 18px 18px;
    z-index: 3;
}
.phone-screen {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #fff4e8 0%, #ffffff 50%, #ffe9d6 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    padding: 50px 22px 22px;
}
.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: .7rem;
    color: var(--primary-dark);
    font-weight: 700;
}
.phone-greeting {
    margin-bottom: 18px;
}
.phone-greeting .small { font-size: .7rem; color: var(--muted); }
.phone-greeting h4 { font-size: 1rem; color: var(--primary-dark); }
.phone-card {
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 4px 14px rgba(30,42,74,.06);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
}
.phone-card .ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}
.phone-card .info { flex: 1; }
.phone-card .info strong { display: block; color: var(--primary-dark); font-size: .82rem; }
.phone-card .info span { color: var(--muted); font-size: .7rem; }
.phone-card .arr { color: var(--muted); font-size: .8rem; }

.phone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}
.phone-grid-item {
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.phone-badge {
    position: absolute;
    bottom: 30px;
    right: -40px;
    background: var(--accent);
    color: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 800;
    font-size: .9rem;
    transform: rotate(8deg);
    box-shadow: 0 12px 24px rgba(255,122,60,.4);
    font-family: 'Baloo 2', sans-serif;
    letter-spacing: .05em;
}

/* FEATURES */
.features {
    padding: 100px 0;
    background: #fff;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.feature-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 18px;
    text-align: left;
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.feature-card:nth-child(1) .feature-icon { background: var(--grad-cta-blue); }
.feature-card:nth-child(2) .feature-icon { background: var(--grad-cta-red); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #ffb74d 0%, #ff9800 100%); }
.feature-card:nth-child(4) .feature-icon { background: var(--grad-cta-green); }
.feature-card:nth-child(5) .feature-icon { background: var(--grad-cta-teal); }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, #ba68c8 0%, #9c27b0 100%); }
.feature-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.feature-card p { color: var(--muted); font-size: .92rem; }

/* MODULES */
.modules {
    padding: 100px 0;
    background: var(--grad-hero);
    position: relative;
}
.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}
.module-card {
    background: #fff;
    padding: 26px 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(255,122,60,.08);
}
.module-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.module-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
}
.module-card:nth-child(1) .module-icon { background: var(--grad-cta-blue); }
.module-card:nth-child(2) .module-icon { background: var(--grad-cta-green); }
.module-card:nth-child(3) .module-icon { background: linear-gradient(135deg, #ffb74d 0%, #ff9800 100%); }
.module-card:nth-child(4) .module-icon { background: var(--grad-cta-red); }
.module-card:nth-child(5) .module-icon { background: var(--grad-cta-teal); }
.module-card:nth-child(6) .module-icon { background: linear-gradient(135deg, #ba68c8 0%, #9c27b0 100%); }
.module-card:nth-child(7) .module-icon { background: linear-gradient(135deg, #f06292 0%, #ec407a 100%); }
.module-card:nth-child(8) .module-icon { background: linear-gradient(135deg, #ffd54f 0%, #ffc107 100%); }
.module-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.module-card p { color: var(--muted); font-size: .85rem; }

/* CTA CARDS */
.cta {
    padding: 100px 0;
    background: #fff;
}
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}
.cta-card {
    padding: 34px 28px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}
.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.cta-card.blue { background: var(--grad-cta-blue); }
.cta-card.green { background: var(--grad-cta-green); }
.cta-card.red { background: var(--grad-cta-red); }
.cta-card.teal { background: var(--grad-cta-teal); }
.cta-card .ico {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    backdrop-filter: blur(10px);
}
.cta-card h3 { color: #fff; margin-bottom: 8px; }
.cta-card p { font-size: .92rem; opacity: .95; margin-bottom: 0; }
.cta-card a { display: block; }

/* DEMO FORM */
.demo {
    padding: 100px 0;
    background: var(--grad-hero);
}
.demo-wrap {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}
.demo-info {
    padding: 50px 44px;
    background: var(--primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.demo-info::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(80px);
    opacity: .25;
    top: -100px; right: -100px;
}
.demo-info > * { position: relative; }
.demo-info h2 { color: #fff; margin-bottom: 16px; }
.demo-info p { color: rgba(255,255,255,.85); margin-bottom: 28px; }
.demo-info ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255,255,255,.95);
    font-weight: 500;
}
.demo-info ul li::before {
    content: '✓';
    width: 26px; height: 26px;
    background: var(--accent);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .85rem;
}
.demo-form { padding: 50px 44px; }
.demo-form h3 { margin-bottom: 8px; }
.demo-form > p { color: var(--muted); margin-bottom: 26px; }

/* HERO SHAPES (kept for compatibility, unused in new hero) */
.hero-shapes, .hero-slider, .hero-slide, .slider-btn, .slider-dots { display: none; }

/* ABOUT (homepage about section) */
.about {
    padding: 100px 0;
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-images { position: relative; padding: 30px; min-height: 460px; }
.about-images .img {
    background-size: cover;
    background-position: center;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    transition: transform .5s ease;
}
.about-images .img:hover { transform: scale(1.03); }
.about-images .img-1 {
    width: 75%; aspect-ratio: 4/3;
    border: 6px solid #fff;
}
.about-images .img-2 {
    width: 60%; aspect-ratio: 3/4;
    position: absolute;
    right: 0; bottom: 0;
    border: 6px solid #fff;
}
.about-decor {
    position: absolute;
    top: 0; left: 0;
    width: 90px; height: 90px;
    background: var(--peach);
    border-radius: 50%;
    z-index: -1;
}
.about-content h2 { margin-bottom: 16px; }
.about-content > p { color: var(--muted); margin-bottom: 22px; font-size: 1.02rem; }
.about-features { margin-bottom: 28px; }
.about-features li {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 0;
    color: var(--text);
    font-weight: 500;
}
.about-features span {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .82rem;
}

/* PROGRAMS */
.programs {
    padding: 100px 0;
    background: var(--grad-hero);
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.program-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.program-img {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}
.program-body { padding: 22px; }
.program-body h3 { margin-bottom: 6px; }
.program-body p {
    color: var(--accent);
    font-weight: 700;
    font-size: .9rem;
}

/* EVENTS */
.events { padding: 100px 0; }
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 26px;
}
.event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.event-date {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
    z-index: 2;
    line-height: 1;
    font-family: 'Baloo 2', sans-serif;
    box-shadow: 0 6px 16px rgba(255,122,60,.35);
}
.event-date strong { display: block; font-size: 1.4rem; font-weight: 700; }
.event-date span { font-size: .72rem; }
.event-img { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.event-body { padding: 22px; }
.event-tag {
    display: inline-block;
    background: var(--peach);
    color: var(--accent-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.event-body h3 { margin-bottom: 8px; }
.event-body p { color: var(--muted); font-size: .92rem; margin-bottom: 12px; }
.event-link {
    color: var(--accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.event-link:hover { gap: 10px; }

/* GALLERY */
.gallery {
    padding: 100px 0;
    background: var(--grad-hero);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}
.gallery-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.gallery-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: rgba(30,42,74,.45);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.gallery-item:hover { transform: scale(1.04); }
.gallery-item:hover::after { opacity: 1; }
.gallery-actions { text-align: right; }

/* FAQ */
.faq { padding: 100px 0; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.faq-item:hover { border-color: var(--accent-light); }
.faq-item summary {
    padding: 20px 26px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-dark);
    transition: all var(--transition);
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--peach);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
    font-weight: 400;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item[open] summary::after {
    content: '−';
    background: var(--accent);
    color: #fff;
}
.faq-item p {
    padding: 0 26px 22px;
    color: var(--muted);
}

/* DOWNLOAD */
.download {
    padding: 100px 0;
    background: var(--primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.download::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: .2;
    top: -150px; right: -150px;
}
.download .container { position: relative; z-index: 1; }
.download .section-head h2 { color: #fff; }
.download .section-head p { color: rgba(255,255,255,.85); }
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}
.download-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    padding: 30px 22px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.12);
    transition: all var(--transition);
}
.download-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.12);
}
.download-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 18px rgba(255,122,60,.35);
}
.download-card h3 { color: #fff; margin-bottom: 14px; }

/* FOOTER */
.site-footer {
    background: var(--peach-light);
    color: var(--muted);
    padding-top: 70px;
    border-top: 1px solid rgba(255,122,60,.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
}
.footer-col .brand { color: var(--primary-dark); margin-bottom: 18px; }
.footer-col .brand-icon { background: #fff; border-color: var(--peach); }
.footer-col p { font-size: .92rem; margin-bottom: 18px; }
.footer-col h4 {
    color: var(--primary-dark);
    margin-bottom: 22px;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.footer-col ul li {
    padding: 7px 0;
    font-size: .92rem;
    transition: transform var(--transition);
}
.footer-col ul li:hover { transform: translateX(4px); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact li { display: flex; align-items: center; gap: 12px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,122,60,.12);
    padding: 22px 0;
    text-align: center;
    font-size: .88rem;
    background: #fff;
}

/* PAGE BANNER */
.page-banner {
    position: relative;
    padding: 80px 0;
    background: var(--grad-hero);
    color: var(--primary-dark);
    overflow: hidden;
    text-align: center;
}
.page-banner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,122,60,.18) 0%, transparent 70%);
    border-radius: 50%;
    top: -120px; right: -100px;
}
.page-banner::after {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(74,144,226,.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -120px; left: -100px;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--peach);
    font-size: .9rem;
    color: var(--muted);
}
.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: var(--accent); font-weight: 700; }

.page-section { padding: 100px 0; }
.page-section.alt { background: var(--grad-hero); }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.two-col img, .two-col .image-box {
    width: 100%;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}
.two-col h2 { margin-bottom: 16px; }
.two-col p { color: var(--muted); margin-bottom: 16px; }

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.value-card {
    background: #fff;
    padding: 30px 26px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: var(--grad-cta-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.value-card:nth-child(2) .value-icon { background: var(--grad-cta-green); }
.value-card:nth-child(3) .value-icon { background: var(--grad-cta-red); }
.value-card:nth-child(4) .value-icon { background: var(--grad-cta-teal); }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: .94rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}
.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-align: center;
    border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
}
.team-info { padding: 22px; }
.team-info h3 { margin-bottom: 4px; }
.team-info .role {
    display: inline-block;
    background: var(--peach);
    color: var(--accent-dark);
    padding: 4px 14px;
    border-radius: 14px;
    font-size: .82rem;
    font-weight: 700;
}

.program-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}
.program-detail:nth-child(even) > .program-detail-img { order: 2; }
.program-detail-img {
    aspect-ratio: 4/3;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}
.program-detail h3 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}
.program-detail .age {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 14px;
}
.program-detail ul { margin-top: 14px; }
.program-detail ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
}
.program-detail ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 20px; height: 20px;
    background: var(--accent);
    border-radius: 50%;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 11px;
}

.gallery-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-full .gallery-item { aspect-ratio: 1; }

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}
.contact-info-card {
    background: var(--primary);
    color: #fff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3;
    top: -50px; right: -50px;
}
.contact-info-card h3 { color: #fff; margin-bottom: 8px; position: relative; }
.contact-info-card > p { color: rgba(255,255,255,.85); margin-bottom: 28px; position: relative; }
.contact-info-list { position: relative; z-index: 1; }
.contact-info-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .ico {
    width: 44px; height: 44px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-list strong { display: block; margin-bottom: 2px; }
.contact-info-list span { color: rgba(255,255,255,.85); font-size: .92rem; }

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: .9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: .95rem;
    color: var(--text);
    background: var(--bg-soft);
    transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,122,60,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.demo-form .btn,
.contact-form .btn { width: 100%; padding: 15px; background: var(--accent); }
.demo-form .btn:hover,
.contact-form .btn:hover { background: var(--accent-dark); }

.map-wrap {
    margin-top: 50px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* AUTH */
.auth-wrap {
    min-height: calc(100vh - 200px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.auth-side {
    background: var(--primary);
    color: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.auth-side::before {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(110px);
    opacity: .25;
    top: 10%; left: -100px;
}
.auth-side > * { position: relative; z-index: 1; }
.auth-side h2 { color: #fff; margin-bottom: 14px; }
.auth-side p { color: rgba(255,255,255,.85); margin-bottom: 28px; max-width: 420px; }
.auth-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.auth-features li::before {
    content: '✓';
    width: 28px; height: 28px;
    background: var(--accent);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.auth-form-side {
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-hero);
}
.auth-card {
    background: #fff;
    padding: 44px 40px;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    border: 1px solid var(--border);
}
.auth-card h3 { margin-bottom: 8px; }
.auth-card > p { color: var(--muted); margin-bottom: 26px; }
.auth-tabs {
    display: flex;
    background: var(--peach-light);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
}
.auth-tabs button {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-family: inherit;
    color: var(--muted);
    transition: all var(--transition);
    font-size: .9rem;
}
.auth-tabs button.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,122,60,.3);
}
.auth-card .btn-primary { width: 100%; padding: 15px; background: var(--accent); }
.auth-card .btn-primary:hover { background: var(--accent-dark); }
.auth-extra {
    margin-top: 22px;
    text-align: center;
    color: var(--muted);
    font-size: .92rem;
}
.auth-extra a { color: var(--accent); font-weight: 700; }
.auth-extra a:hover { color: var(--accent-dark); }
.checkbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    font-size: .9rem;
}
.checkbox-row label { display: flex; align-items: center; gap: 8px; color: var(--muted); cursor: pointer; }
.checkbox-row a { color: var(--accent); font-weight: 700; }

/* WHATSAPP FLOATING BUTTON */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
    z-index: 999;
    transition: transform var(--transition);
}
.wa-float:hover {
    transform: scale(1.1);
    color: #fff;
}
.wa-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    position: relative;
    z-index: 2;
}
.wa-float::before,
.wa-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: .6;
    animation: waPulse 2s ease-out infinite;
    z-index: 1;
}
.wa-float::after { animation-delay: 1s; }
@keyframes waPulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.8); opacity: 0; }
}
.wa-float .wa-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #fff;
    color: #1e2a4a;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 2;
}
.wa-float .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: #fff;
}
.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
@media (max-width: 480px) {
    .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
    .wa-float svg { width: 28px; height: 28px; }
    .wa-float .wa-tooltip { display: none; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .phone-frame { width: 280px; height: 560px; }
}
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .demo-wrap { grid-template-columns: 1fr; }
    .about-grid, .two-col, .program-detail, .contact-grid, .auth-wrap { grid-template-columns: 1fr; gap: 40px; }
    .program-detail:nth-child(even) > .program-detail-img { order: 0; }
    .gallery-full { grid-template-columns: repeat(3, 1fr); }
    .auth-side, .auth-form-side, .demo-info, .demo-form { padding: 40px 30px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .topbar-contact { gap: 14px; font-size: .8rem; }
    .topbar-social { display: none; }
    .nav-toggle { display: flex; }
    .nav-list {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 24px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease, padding .35s ease;
    }
    .nav-list.open { max-height: 600px; padding: 14px 24px 24px; }
    .nav-list li { width: 100%; }
    .nav-list a { display: block; padding: 14px 0; }
    .nav-list a.btn { text-align: center; margin-top: 10px; }
    .navbar { position: relative; }

    .hero { padding: 60px 0 80px; }
    .phone-frame { width: 260px; height: 520px; }
    .phone-badge { right: -20px; bottom: 10px; padding: 10px 14px; font-size: .8rem; }

    .features, .modules, .cta, .demo, .about, .programs, .events, .gallery, .faq, .download { padding: 70px 0; }
    .section-head { margin-bottom: 36px; }
    .section-head h2 br { display: none; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-full { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .contact-info-card, .contact-form, .auth-card { padding: 28px; }
    .brand-icon { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .phone-frame { width: 240px; height: 480px; }
    .phone-badge { right: -10px; }
}
