:root {
    --bg: #fff;
    --bg-light: #F6F4FC;
    --dark: #0B0620;
    --dark2: #120B33;
    --panel: #171040;
    --accent: #7C5CFC;
    --accent-hover: #6A4AE8;
    --accent-light: #A78BFA;
    --accent-glow: rgba(124, 92, 252, 0.4);
    --purple: #8B5CF6;
    --pink: #EC4899;
    --green: #10B981;
    --yellow: #F59E0B;
    --red: #EF4444;
    --blue: #3B82F6;
    --teal: #06B6D4;
    --text: #1E1B33;
    --text-secondary: #645E80;
    --text-light: #9691AE;
    --text-on-dark: #fff;
    --text-secondary-dark: #A9A3C7;
    --border: #E7E3F5;
    --border-dark: rgba(255, 255, 255, 0.08);
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 4px 24px rgba(20, 10, 60, 0.06);
    --shadow-lg: 0 16px 44px rgba(20, 10, 60, 0.12);
    --shadow-accent: 0 8px 28px rgba(124, 92, 252, 0.35);
    --transition: 0.25s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth
}

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

h1,
h2,
h3,
h4,
.section-title,
.logo,
.btn,
.num,
.price {
    font-family: 'Unbounded', -apple-system, sans-serif
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #F1EEFA
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px
}

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

.section {
    padding: 88px 0;
    position: relative;
    overflow: hidden
}

.section-dark {
    background: var(--dark);
    color: #fff
}

.section-gray {
    background: var(--bg-light)
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(124, 92, 252, 0.12);
    color: var(--accent);
    margin-bottom: 14px;
    letter-spacing: 0.2px
}

.section-dark .section-badge {
    background: rgba(124, 92, 252, 0.16);
    color: var(--accent-light)
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.5px
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 44px
}

.section-dark .section-subtitle {
    color: var(--text-secondary-dark)
}

.accent-text {
    background: linear-gradient(135deg, var(--accent), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
    font-family: inherit
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-accent)
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px var(--accent-glow)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25)
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06)
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ШАПКА */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    background: rgba(11, 6, 32, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark)
}

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

.logo {
    font-size: 21px;
    font-weight: 800;
    color: #fff
}

.logo span {
    color: var(--accent-light)
}

.age-badge {
    font-size: 11px;
    color: var(--text-secondary-dark);
    font-weight: 500;
    margin-left: 6px;
    position: relative;
    top: -4px
}

.nav {
    display: flex;
    gap: 26px;
    align-items: center
}

.nav a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition)
}

.nav a:hover {
    color: #fff
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 101
}

.burger span {
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px
}

.mobile-menu.active {
    display: flex
}

.mobile-menu a {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    text-decoration: none
}

/* HERO */
.hero {
    background: radial-gradient(ellipse at 30% 20%, #1A1044 0%, #0B0620 55%);
    position: relative;
    overflow: hidden;
    padding: 150px 0 0
}

.hero-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
    padding-bottom: 40px
}

.hero-text {
    flex: 1.1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05)
}

.hero-text h1 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 480px;
    min-height: 52px
}

.hero-subtitle .cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    background: var(--accent-light);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: blink 0.8s infinite
}

@keyframes blink {
    0%,
    100% {
        opacity: 1
    }
    50% {
        opacity: 0
    }
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

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

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px
}

.hero-stat .hs-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(124, 92, 252, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent-light);
    flex-shrink: 0
}

.hero-stat strong {
    display: block;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2
}

.hero-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5)
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.hero-visual img {
    width: 100%;
    max-width: 430px;
    border-radius: 20px
}

.float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    animation: bob 5s ease-in-out infinite;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15)
}

.float-icon .fi-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
    flex-shrink: 0
}

.fi-square {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    color: #fff
}

.float-icon.py {
    top: 2%;
    left: 2%;
    background: rgba(53, 114, 165, 0.92);
    animation-delay: 0s
}

.float-icon.rb {
    bottom: 22%;
    right: 0%;
    background: rgba(239, 68, 68, 0.92);
    animation-delay: 1.5s
}

.float-icon.cs {
    top: 16%;
    right: -6%;
    background: rgba(130, 80, 200, 0.92);
    animation-delay: 3s
}

.float-icon.unity {
    bottom: 4%;
    right: -4%;
    background: rgba(16, 185, 129, 0.92);
    animation-delay: 4.5s
}

@keyframes bob {
    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }
    25% {
        transform: translateY(-14px) rotate(2deg)
    }
    50% {
        transform: translateY(-6px) rotate(-1deg)
    }
    75% {
        transform: translateY(-16px) rotate(1deg)
    }
}

.tech-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 26px 0 36px;
    border-top: 1px solid var(--border-dark);
    position: relative;
    z-index: 1
}

.tech-strip-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
    max-width: 180px
}

.tech-strip-icons {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center
}

.tech-strip-icons span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600
}

.tech-strip-icons img {
    display: block
}

/* ПОЧЕМУ МЫ */
.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: center
}

.why-us-intro h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px
}

.why-us-intro p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 26px;
    line-height: 1.7
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.why-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition)
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: #fff
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    box-shadow: var(--shadow)
}

.why-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text)
}

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

/* НАПРАВЛЕНИЯ */
.dir-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto
}

.dir-card {
    background: var(--panel);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-dark);
    transition: all var(--transition)
}

.dir-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent)
}

.dir-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block
}

.dir-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    color: #fff
}

.dir-tag.hit {
    background: var(--red)
}

.dir-tag.new {
    background: var(--green)
}

.dir-body {
    padding: 22px
}

.dir-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px
}

.dir-icon.red {
    background: rgba(239, 68, 68, 0.15)
}

.dir-icon.blue {
    background: rgba(59, 130, 246, 0.15)
}

.dir-icon.green {
    background: rgba(16, 185, 129, 0.15)
}

.dir-icon.orange {
    background: rgba(245, 158, 11, 0.15)
}

.dir-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.dir-age {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary-dark);
    display: block;
    margin-top: 2px
}

.dir-body p {
    font-size: 13px;
    color: var(--text-secondary-dark);
    line-height: 1.6;
    margin-bottom: 14px;
    min-height: 48px
}

.dir-body a {
    color: var(--accent-light);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none
}

.dir-body a:hover {
    text-decoration: underline
}

/* КВИЗ */
.quiz-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-lg);
    border: 2px solid #DDD6FE;
    text-align: center
}

.quiz-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px
}

.quiz-step p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px
}

.quiz-opt {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    text-align: left;
    font-family: 'Nunito', sans-serif
}

.quiz-opt:hover {
    border-color: var(--accent-light);
    background: #F5F3FF
}

.quiz-opt.selected {
    border-color: var(--accent);
    background: #F5F3FF;
    color: var(--accent)
}

.quiz-result {
    display: none;
    text-align: center
}

.quiz-result h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent)
}

.quiz-result p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px
}

.quiz-progress {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px
}

.quiz-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: background var(--transition)
}

.quiz-dot.active {
    background: var(--accent)
}

/* ПУТЬ УЧЕНИКА */
.path-steps {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto
}

.path-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border) 0 8px, transparent 8px 16px);
    z-index: 0
}

.path-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 6px
}

.path-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12)
}

.path-circle.c1 {
    background: var(--accent)
}

.path-circle.c2 {
    background: var(--pink)
}

.path-circle.c3 {
    background: var(--blue)
}

.path-circle.c4 {
    background: var(--green)
}

.path-circle.c5 {
    background: var(--yellow)
}

.path-step h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px
}

.path-step p {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.55
}

/* КАК ПРОХОДЯТ ЗАНЯТИЯ - скрин */
.how-screenshot-wrap {
    margin-top: 48px
}

.how-screenshot {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.how-screenshot img {
    width: 100%;
    display: block;
    border-radius: var(--radius)
}

.how-platforms .platform-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    padding: 10px 20px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid var(--border)
}

/* ПРОЕКТЫ */
.projects-slider-wrap {
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px 8px
}

.projects-slider {
    display: flex;
    gap: 16px;
    animation: scrollProjects 30s linear infinite;
    width: max-content
}

.projects-slider:hover {
    animation-play-state: paused
}

@keyframes scrollProjects {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-50%)
    }
}

.project-slide {
    flex: 0 0 auto;
    width: 210px;
    background: var(--panel);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-dark)
}

.project-slide img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block
}

.project-info {
    padding: 12px 14px
}

.project-info h3 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px
}

.project-info .meta {
    font-size: 11.5px;
    color: var(--text-secondary-dark)
}

.project-info .tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 9.5px;
    font-weight: 700;
    background: rgba(124, 92, 252, 0.2);
    color: var(--accent-light);
    margin-top: 4px
}

/* ПРЕПОДАВАТЕЛИ */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto
}

.teacher-card {
    text-align: center
}

.teacher-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 14px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto
}

.teacher-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px
}

.teacher-card .spec {
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 2px
}

.teacher-card .exp {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px
}

.teacher-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto
}

/* ОТЗЫВЫ */
.reviews-slider-wrap {
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px 8px;
    position: relative
}

.reviews-grid {
    display: flex;
    gap: 18px;
    width: max-content;
    transition: transform 0.4s ease;
    will-change: transform
}

.review-card {
    flex: 0 0 270px;
    background: var(--panel);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border-dark)
}

.review-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

.review-head img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0
}

.review-head strong {
    display: block;
    font-size: 12.5px;
    color: #fff;
    font-weight: 700;
    line-height: 1.3
}

.stars {
    color: var(--yellow);
    font-size: 12px;
    letter-spacing: 1px
}

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

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

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden
}

.faq-q {
    padding: 18px 20px;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none
}

.faq-toggle {
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0
}

.faq-item.open .faq-toggle {
    content: '−'
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 18px
}

/* CTA БАННЕР */
.cta-banner {
    background: linear-gradient(120deg, #6C4CE0 0%, #8B5CF6 55%, #5A3FD9 100%);
    position: relative;
    overflow: hidden;
    padding: 64px 0
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1
}

.cta-text {
    max-width: 640px
}

.cta-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.5px
}

.cta-form-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.cta-form-fields input,
.cta-form-fields select {
    flex: 1;
    min-width: 140px;
    padding: 13px 16px;
    border-radius: 100px;
    border: none;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text)
}

.cta-form-fields select {
    color: var(--text-secondary);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none
}

.cta-form-fields input::placeholder {
    color: var(--text-light)
}

.cta-form-fields .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    width: 100%;
    margin: 6px 0 10px
}

.cta-form-fields .form-check input {
    width: 16px;
    height: 16px;
    accent-color: #fff;
    flex: 0 0 auto;
    min-width: auto
}

.cta-form-fields .form-check a {
    color: #fff;
    text-decoration: underline
}

.btn-cta-submit {
    background: var(--dark);
    color: #fff;
    flex-basis: 100%;
    text-align: center;
    padding: 15px 24px;
    border-radius: 100px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    transition: all var(--transition)
}

.btn-cta-submit:hover {
    background: #000;
    transform: translateY(-2px)
}

.cta-note {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.75)
}

.cta-note a {
    color: #fff;
    text-decoration: underline
}

.cta-visual {
    flex-shrink: 0
}

.cta-visual img {
    display: block
}

.form-success {
    display: none;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    font-weight: 600
}

.form-fields.hidden,
.cta-form-fields.hidden {
    display: none
}

.form-success.visible {
    display: block
}

/* ЦЕНЫ В CTA */
.cta-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 12px 0 16px;
    flex-wrap: wrap
}

.price-free {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2)
}

.price-free strong {
    font-size: 18px
}

.price-from {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500
}

/* HONEYPOT */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none
}

/* КАРТОЧКИ ПРОГРАММЫ КУРСА (используются на страницах направлений) */
.card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition)
}

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

.card-body {
    padding: 20px 22px 24px
}

.card-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text)
}

.card-body p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 6px
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    background: var(--bg-light)
}

.icon.blue-bg {
    background: rgba(59, 130, 246, 0.14)
}

.icon.green-bg {
    background: rgba(16, 185, 129, 0.14)
}

.pricing-hint {
    max-width: 700px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 15px;
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    border: 1px dashed var(--accent-light)
}

.pricing-hint .small {
    display: block;
    font-size: 12.5px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 6px
}

/* ВАРИАНТ ОТЗЫВОВ С ВИДЕО-ПРЕВЬЮ (используется на страницах направлений) */
.review-card:has(> img) {
    padding: 0
}

.review-card:has(> img) img {
    width: 100%;
    display: block;
    border-radius: var(--radius) var(--radius) 0 0
}

.review-card .review-body {
    padding: 16px 18px
}

.review-card .review-body p {
    margin: 10px 0
}

.review-card .review-body .author {
    font-size: 12px;
    color: var(--text-secondary-dark);
    font-weight: 600;
    margin: 0
}

/* СТРЕЛКИ ДЛЯ ОТЗЫВОВ */
.slider-arrows {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px
}

.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition)
}

.arrow-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.05)
}

.arrow-btn:active {
    transform: scale(0.95)
}

/* КНОПКА НАВЕРХ */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 84px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 84;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    color: var(--text);
    box-shadow: var(--shadow)
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto
}

.scroll-top:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

/* ПОДВАЛ */
.footer {
    background: var(--dark);
    color: var(--text-secondary-dark);
    padding: 48px 0 24px;
    font-size: 13px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px
}

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

.footer a {
    color: var(--text-secondary-dark);
    display: block;
    margin-bottom: 6px;
    text-decoration: none
}

.footer a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
    text-align: center;
    font-size: 11px;
    color: var(--text-light)
}

/* ЧАТ-БОТ */
.chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 85
}

.chat-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 20px var(--accent-glow);
    transition: all var(--transition);
    border: none
}

.chat-bubble:hover {
    transform: translateY(-2px)
}

.chat-window {
    display: none;
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    border: 1px solid var(--border)
}

.chat-window.open {
    display: block
}

.chat-header {
    background: var(--accent);
    color: #fff;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.chat-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer
}

.chat-body {
    padding: 16px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
    max-height: 320px;
    overflow-y: auto
}

.chat-msg {
    background: var(--bg-light);
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 13px
}

.chat-btn {
    display: block;
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    text-align: left;
    transition: all var(--transition);
    font-family: 'Nunito', sans-serif
}

.chat-btn:hover {
    background: #F8FAFC;
    border-color: #CBD5E1
}

.chat-input {
    display: flex;
    gap: 8px;
    margin-top: 12px
}

.chat-input input {
    flex: 1;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 13px;
    font-family: 'Nunito', sans-serif
}

.chat-input button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    font-family: 'Nunito', sans-serif
}

/* МОДАЛКИ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 300;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal-overlay.active {
    display: flex
}

.modal {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    max-width: 560px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    color: var(--text);
    position: relative
}

.modal h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px
}

.modal p,
.modal ol {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 10px
}

.modal ol {
    padding-left: 18px
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-light)
}

/* COOKIE */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark2);
    color: #CBD5E1;
    z-index: 200;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    transform: translateY(100%);
    transition: transform 0.4s ease
}

.cookie-bar.visible {
    transform: translateY(0)
}

.cookie-bar a {
    color: var(--accent-light);
    text-decoration: underline
}

.cookie-bar button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Nunito', sans-serif
}

/* EXIT POPUP */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 250;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.exit-popup-overlay.active {
    display: flex
}

.exit-popup {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    max-width: 420px;
    width: 100%;
    text-align: center
}

.exit-popup h3 {
    font-size: 22px;
    font-weight: 700
}

.exit-popup p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px
}

.exit-popup .btn {
    width: 100%;
    margin-bottom: 10px
}

.exit-popup .btn-close {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    font-family: 'Nunito', sans-serif
}

/* ===== СРАВНЕНИЕ С ДРУГИМИ ШКОЛАМИ ===== */
.compare-table {
    max-width: 900px;
    margin: 44px auto 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.compare-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    align-items: center;
}

.compare-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.compare-row.compare-head {
    background: var(--bg-light);
}

.compare-cell {
    padding: 16px 18px;
    font-size: 14px;
    color: var(--text-secondary);
}

.compare-label {
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
}

.compare-us {
    background: rgba(124, 92, 252, 0.06);
    color: var(--text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 1px solid rgba(124, 92, 252, 0.15);
    border-right: 1px solid rgba(124, 92, 252, 0.15);
}

.compare-them {
    display: flex;
    align-items: center;
    gap: 8px;
}

.compare-us-badge {
    display: inline-block;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-accent);
}

.compare-us-badge span {
    color: var(--accent);
}

.compare-head .compare-them {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-light);
    text-align: left;
}

.ok-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.no-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F1F0F7;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.compare-cta {
    text-align: center;
    margin-top: 32px;
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ===== */
@media (max-width: 768px) {
    .compare-row {
        grid-template-columns: 1fr;
    }
    .compare-label {
        background: var(--bg-light);
        font-size: 13px;
        padding: 10px 16px 4px;
    }
    .compare-us {
        border-left: none;
        border-right: none;
        border-top: 1px dashed rgba(124, 92, 252, 0.2);
        padding: 10px 16px;
    }
    .compare-them {
        padding: 10px 16px 14px;
    }
    .compare-head {
        display: none;
    }
    .compare-row:not(.compare-head) {
        display: block;
        padding-bottom: 4px;
    }
    .compare-table {
        margin-top: 28px;
    }

    /* ===== FIX: WHY-US НА МОБИЛЬНЫХ ===== */
    .why-us-layout {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding: 0 4px;
    }

    .why-us-intro {
        text-align: center;
    }

    .why-us-intro h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .why-us-intro p {
        font-size: 15px;
        max-width: 100%;
    }

    .why-us-grid {
        grid-template-columns: 1fr !important; /* ОДНА КОЛОНКА */
        gap: 14px;
        width: 100%;
    }

    .why-card {
        padding: 18px 16px;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    }

    .why-card h3 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .why-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* ДОПОЛНИТЕЛЬНО ДЛЯ ОЧЕНЬ МАЛЕНЬКИХ ЭКРАНОВ (до 400px) */
@media (max-width: 400px) {
    .why-us-grid {
        gap: 10px;
    }
    .why-card {
        padding: 14px 12px;
    }
    .why-card h3 {
        font-size: 14px;
    }
    .why-card p {
        font-size: 12.5px;
    }
}

/* ===== ОСТАЛЬНЫЕ МЕДИА-ЗАПРОСЫ (БЫЛИ В КОНЦЕ ФАЙЛА) ===== */
@media(max-width:1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center
    }
    .hero-buttons,
    .hero-stats {
        justify-content: center
    }
    .hero-text h1 {
        font-size: 36px
    }
    .hero-visual img {
        max-width: 320px
    }
    .hero-text {
        order: 2
    }
    .hero-visual {
        order: 1
    }
    .why-us-layout {
        grid-template-columns: 1fr;
        text-align: center
    }
    .why-us-intro .btn {
        margin: 0 auto
    }
    .teachers-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
    .path-steps {
        flex-wrap: wrap
    }
    .path-steps::before {
        display: none
    }
    .path-step {
        flex: 1 1 40%
    }
    .scroll-top {
        bottom: 80px;
        right: 76px
    }
    .float-icon {
        font-size: 11px;
        padding: 8px 12px;
        gap: 6px
    }
    .float-icon .fi-logo {
        width: 16px;
        height: 16px
    }
    .cta-inner {
        flex-direction: column;
        text-align: center
    }
    .cta-visual {
        display: none
    }
    .dir-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px
    }
}

@media(max-width:768px) {
    .section {
        padding: 52px 0
    }
    .section-title {
        font-size: 26px
    }
    .nav {
        display: none
    }
    .burger {
        display: flex
    }
    .hero-text h1 {
        font-size: 28px
    }
    .hero-visual img {
        max-width: 240px
    }
    .footer-grid {
        grid-template-columns: 1fr
    }
    .float-icon {
        font-size: 10px;
        padding: 6px 10px;
        gap: 5px
    }
    .float-icon .fi-logo {
        width: 14px;
        height: 14px
    }
    .cookie-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px
    }
    .chat-window {
        width: 260px
    }
    .scroll-top {
        bottom: 80px;
        right: 16px
    }
    .tech-strip {
        justify-content: center;
        text-align: center
    }
    .tech-strip-label {
        max-width: none
    }
    .cta-form-fields input,
    .cta-form-fields select {
        flex-basis: 100%
    }
    .path-step {
        flex: 1 1 100%
    }
    .cta-form-fields .form-check {
        font-size: 11px
    }
    .dir-grid {
        grid-template-columns: 1fr;
        max-width: 380px
    }
    .teachers-grid {
        grid-template-columns: 1fr;
        max-width: 300px
    }
    .reviews-grid .review-card {
        flex: 0 0 240px
    }
    .projects-slider .project-slide {
        width: 170px
    }
    .cta-prices {
        gap: 12px
    }
    .price-free {
        font-size: 13px;
        padding: 6px 14px
    }
    .price-from {
        font-size: 12px
    }
    .how-screenshot {
        border-radius: var(--radius-sm)
    }
    .how-platforms .platform-icons {
        gap: 12px
    }
    .platform-item {
        font-size: 12px;
        padding: 8px 14px
    }
}

/* ===== Стили для страниц направлений (roblox, python, unity, web) ===== */
/* Light theme для страниц-лендингов */
body.u2-light .header {
    background: #fff;
    box-shadow: 0 1px 0 rgba(15, 15, 40, 0.06);
    border-bottom: none
}
body.u2-light .logo {
    color: #1E1B33
}
body.u2-light .logo span {
    color: #7C5CFC
}
body.u2-light .age-badge {
    color: #8B87A3
}
body.u2-light .nav a {
    color: #4B4768
}
body.u2-light .nav a:hover {
    color: #7C5CFC
}
body.u2-light .burger span {
    background: #1E1B33
}

.u2-crumb {
    background: transparent;
    padding: 14px 0 0;
    font-size: 13px;
    color: #8B87A3;
    margin-top: 78px
}
.u2-crumb a {
    color: #7C5CFC;
    text-decoration: none
}

.u2-hero {
    background: linear-gradient(135deg, #F4F2FD 0%, #FBFAFF 45%, #EFF3FF 100%);
    padding: 28px 0 56px;
    position: relative;
    overflow: hidden
}
.u2-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center
}
.u2-badge-age {
    display: inline-block;
    background: #EDE9FE;
    color: #7C3AED;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 18px
}
.u2-hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    color: #181433;
    margin-bottom: 18px
}
.u2-hero h1 .u2-accent {
    color: #7C5CFC
}
.u2-hero-sub {
    font-size: 16px;
    color: #5B5678;
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 26px
}
.u2-quicklist {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 30px;
    margin-bottom: 30px
}
.u2-quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #302B4D
}
.u2-quick-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(124, 92, 252, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0
}
.u2-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}
.u2-btn-primary {
    background: #7C5CFC;
    color: #fff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 16px 26px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 28px rgba(124, 92, 252, 0.32);
    transition: all .25s ease
}
.u2-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(124, 92, 252, 0.42)
}
.u2-btn-outline {
    background: #fff;
    color: #302B4D;
    font-weight: 700;
    font-size: 14.5px;
    padding: 16px 26px;
    border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid #E4E1F5;
    transition: all .25s ease
}
.u2-btn-outline:hover {
    border-color: #7C5CFC;
    color: #7C5CFC
}
.u2-hero-visual {
    position: relative
}
.u2-hero-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(30, 20, 80, 0.16)
}
.u2-hero-img-wrap img {
    width: 100%;
    display: block
}
.u2-check-card {
    position: absolute;
    right: -8%;
    bottom: -9%;
    background: #fff;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 20px 50px rgba(30, 20, 80, 0.16);
    max-width: 250px
}
.u2-check-card h4 {
    font-size: 13.5px;
    font-weight: 800;
    color: #181433;
    margin-bottom: 12px
}
.u2-check-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}
.u2-check-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #4B4768
}
.u2-check-card li .ck {
    color: #10B981;
    font-weight: 900
}
@media(max-width:900px) {
    .u2-hero-grid {
        grid-template-columns: 1fr
    }
    .u2-hero h1 {
        font-size: 32px
    }
    .u2-check-card {
        position: static;
        margin-top: 18px;
        max-width: none
    }
}

.u2-strip {
    padding: 44px 0;
    background: #fff
}
.u2-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}
.u2-strip-item {
    display: flex;
    gap: 14px;
    align-items: flex-start
}
.u2-strip-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}
.u2-strip-item h4 {
    font-size: 14.5px;
    font-weight: 800;
    color: #181433;
    margin-bottom: 5px
}
.u2-strip-item p {
    font-size: 12.5px;
    color: #767296;
    line-height: 1.5
}
@media(max-width:900px) {
    .u2-strip-grid {
        grid-template-columns: 1fr 1fr
    }
}
@media(max-width:560px) {
    .u2-strip-grid {
        grid-template-columns: 1fr
    }
}

.u2-steps-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap
}
.u2-steps-wrap::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: repeating-linear-gradient(to right, #D9D4F5 0 8px, transparent 8px 18px);
    z-index: 0
}
.u2-step {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 0 8px
}
.u2-step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    margin: 0 auto -8px;
    position: relative;
    z-index: 2
}
.u2-step-circle {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 14px;
    box-shadow: 0 8px 20px rgba(30, 20, 80, 0.1)
}
.u2-step h4 {
    font-size: 14.5px;
    font-weight: 800;
    color: #181433;
    margin-bottom: 6px
}
.u2-step p {
    font-size: 12px;
    color: #767296;
    line-height: 1.5
}
@media(max-width:900px) {
    .u2-steps-wrap {
        flex-direction: column;
        gap: 26px
    }
    .u2-steps-wrap::before {
        display: none
    }
}

.u2-games-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 26px;
    flex-wrap: wrap;
    gap: 10px
}
.u2-games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}
.u2-game-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(20, 10, 60, 0.06);
    transition: transform .25s ease, box-shadow .25s ease
}
.u2-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(20, 10, 60, 0.12)
}
.u2-game-thumb {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden
}
.u2-game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.u2-game-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #7C5CFC;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px
}
.u2-game-body {
    padding: 14px 16px
}
.u2-game-body h4 {
    font-size: 14px;
    font-weight: 800;
    color: #181433;
    margin-bottom: 4px
}
.u2-game-body p {
    font-size: 11.5px;
    color: #767296;
    line-height: 1.4
}
@media(max-width:1000px) {
    .u2-games-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}
@media(max-width:640px) {
    .u2-games-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.u2-teacher {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(20, 10, 60, 0.06);
    padding: 34px;
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 34px;
    align-items: center
}
.u2-teacher-photo {
    width: 160px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover
}
.u2-teacher-role {
    font-size: 12.5px;
    color: #8B87A3;
    font-weight: 600;
    margin-bottom: 4px
}
.u2-teacher-name {
    font-size: 22px;
    font-weight: 800;
    color: #181433;
    margin-bottom: 2px
}
.u2-teacher-title {
    color: #7C5CFC;
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 14px
}
.u2-teacher-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}
.u2-teacher-facts li {
    font-size: 13px;
    color: #4B4768;
    display: flex;
    gap: 8px
}
.u2-teacher-facts li .ck {
    color: #10B981;
    font-weight: 900
}
.u2-teacher-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 18px
}
.u2-teacher-logo {
    background: #F6F4FC;
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 800;
    font-size: 13px;
    color: #4B4768
}
.u2-teacher-quote {
    background: #F6F4FC;
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 13.5px;
    color: #302B4D;
    font-style: italic;
    position: relative
}
@media(max-width:900px) {
    .u2-teacher {
        grid-template-columns: 1fr;
        text-align: center
    }
    .u2-teacher-photo {
        margin: 0 auto
    }
    .u2-teacher-facts li {
        justify-content: center
    }
}

.u2-cta {
    background: linear-gradient(120deg, #6C4FE0 0%, #7C5CFC 55%, #9B7BFA 100%);
    border-radius: 26px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden
}
.u2-cta-icon {
    font-size: 64px;
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.14
}
.u2-cta h2 {
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px
}
.u2-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    margin-bottom: 0
}
.u2-cta-fields {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0 14px
}
.u2-cta-fields input {
    flex: 1;
    min-width: 140px;
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
    font-size: 13.5px;
    font-family: 'Nunito', sans-serif
}
.u2-cta-side {
    display: flex;
    flex-direction: column;
    gap: 20px
}
.u2-cta-stat {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #fff
}
.u2-cta-stat-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0
}
.u2-cta-stat h5 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px
}
.u2-cta-stat p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75)
}
@media(max-width:900px) {
    .u2-cta {
        grid-template-columns: 1fr;
        padding: 30px
    }
}
.what-is-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto
}
.what-is-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s
}
.what-is-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1)
}
.what-is-card .wi-icon {
    font-size: 40px;
    margin-bottom: 12px
}
.what-is-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px
}
.what-is-card p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5
}
.highlight-box {
    background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
    border-left: 4px solid #7C5CFC;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.teacher-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F3E8FF;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #7C3AED;
    margin: 4px 4px;
}
.teacher-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}
.course-slide {
    flex: 0 0 280px;
    scroll-snap-align: start;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}
.course-slide:hover {
    transform: translateY(-4px);
}
.course-slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.course-slide-body {
    padding: 16px;
}
.course-slide-body h3 {
    font-size: 16px;
    color: #1E293B;
}
.course-slide-body p {
    font-size: 12px;
}