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

:root {
    --red: #E8192C;
    --red-light: #FDECED;
    --red-mid: #F5A0A7;
    --blue: #1A3A6B;
    --blue-mid: #2D5FA6;
    --blue-light: #EEF3FB;
    --blue-accent: #4A7DD4;
    --white: #FFFFFF;
    --gray-bg: #F7F8FA;
    --gray-light: #F0F2F5;
    --gray-border: #E2E6ED;
    --gray-text: #7A8499;
    --dark: #111827;
    --text: #2C3444;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-border);
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-wrap img {
    max-width: 180px;
    width: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.5px
}

.logo-text span {
    color: var(--red)
}

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

.nav-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: color .2s
}

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

.nav-phone {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none
}

.nav-phone:hover {
    color: var(--red)
}

.nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all .2s;
    white-space: nowrap
}

.nav-cta:hover {
    background: #C41424 !important;
    transform: translateY(-1px)
}

/* URGENCY */
.urgency {
    background: var(--blue);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.urgency .timer {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 2px
}

.udot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.5s infinite;
    flex-shrink: 0
}

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

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns:1fr 1fr;
    align-items: center;
    padding-top: 72px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    right: -200px;
    top: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
    pointer-events: none;
}

.hero-left {
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    border: 1px solid rgba(74, 125, 212, 0.3);
    color: var(--blue-mid);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--blue);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--red)
}

.hero-sub {
    font-size: 17px;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px
}

.btn-red {
    background: var(--red);
    color: #fff;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
    display: inline-block;
    letter-spacing: 0.2px
}

.btn-red:hover {
    background: #C41424;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 25, 44, 0.25)
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--blue-light);
    transition: all .2s;
    display: inline-block
}

.btn-outline:hover {
    border-color: var(--blue);
    background: var(--blue-light)
}

.hero-stats {
    display: flex;
    gap: 0;
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white)
}

.hstat {
    flex: 1;
    padding: 20px 24px;
    text-align: center;
    border-right: 1px solid var(--gray-border)
}

.hstat:last-child {
    border-right: none
}

.hstat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--blue);
    display: block;
    line-height: 1
}

.hstat-num.red {
    color: var(--red)
}

.hstat-label {
    font-size: 11px;
    color: var(--gray-text);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: 4px;
    display: block
}

.hero-right {
    height: 100%;
    min-height: 640px;
    position: relative;
    overflow: hidden
}

.hero-photo-main {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #dce8f8 0%, #eef3fb 60%, #f5f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
}

.photo-placeholder .icon {
    font-size: 64px;
    opacity: 0.3
}

.photo-placeholder .lbl {
    color: var(--blue-mid);
    font-size: 13px;
    font-weight: 700;
    opacity: 0.5;
    text-align: center
}

.photo-placeholder img, .section-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center
}

.hero-photo-main .photo-placeholder {
    gap: 0
}

.cert-badge {
    position: absolute;
    top: 48px;
    right: 24px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(26, 58, 107, 0.15);
    border: 1px solid var(--gray-border);
    text-align: center;
}

.cert-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    display: block
}

.cert-lbl {
    font-size: 11px;
    color: var(--gray-text);
    font-weight: 600;
    letter-spacing: 0.5px
}

.photo-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(26, 58, 107, 0.12);
    border: 1px solid var(--gray-border);
}

.pb-icon {
    width: 44px;
    height: 44px;
    background: var(--red-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.pb-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue)
}

.pb-sub {
    font-size: 12px;
    color: var(--gray-text)
}

/* SECTION COMMONS */
section {
    position: relative
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px
}

.section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 12px
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 900;
    color: var(--blue);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 14px
}

.section-sub {
    font-size: 17px;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 540px
}

/* TRUST STRIP */
.trust-strip {
    background: var(--blue);
    padding: 28px 0
}

.trust-strip-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.tsi {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    flex: 1;
    min-width: 160px
}

.tsi:last-child {
    border-right: none
}

.tsi-icon {
    font-size: 28px;
    flex-shrink: 0
}

.tsi-label {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.tsi-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px
}

/* COURSES */
.courses {
    padding: 100px 0;
    background: var(--gray-bg)
}

.courses-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 24px
}

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

.course-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all .3s;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    border-color: rgba(232, 25, 44, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 58, 107, 0.1)
}

.course-card.featured {
    border-color: var(--red);
    position: relative
}

.course-card.featured::before {
    content: '★ ПОПУЛЯРНИЙ';
    position: absolute;
    top: 18px;
    right: 0;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 14px 5px 14px;
    border-radius: 4px 0 0 4px;
}

.course-thumb {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #dce8f8, #f0e8ea);
}

.course-thumb-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    opacity: 0.3;
}

.course-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 107, 0.35) 0%, transparent 50%);
}

.course-duration {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
}

.course-body {
    padding: 28px 28px 20px
}

.course-cat {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px
}

.course-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 10px
}

.course-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.65;
    margin-bottom: 18px
}

.course-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.ctag {
    font-size: 11px;
    font-weight: 700;
    background: var(--blue-light);
    color: var(--blue-mid);
    padding: 5px 10px;
    border-radius: 100px;
    letter-spacing: 0.3px
}

.ctag.red {
    background: var(--red-light);
    color: var(--red)
}

.course-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-from {
    font-size: 11px;
    color: var(--gray-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.price-val {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1
}

.card-cta {
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap
}

.card-cta:hover {
    background: #C41424;
    transform: translateY(-1px)
}

/* TEAM */
.team {
    padding: 100px 0;
    background: #fff
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px
}

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

.team-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gray-border);
    transition: all .3s
}

.team-card:hover {
    box-shadow: 0 12px 40px rgba(26, 58, 107, 0.1);
    transform: translateY(-3px)
}

.team-photo {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #C9D8F0, #EEF3FB);
}

.team-photo-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    opacity: 0.2;
    color: var(--blue);
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 107, 0.6) 0%, transparent 45%)
}

.team-spec {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 12px 14px;
}

.team-spec-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue)
}

.team-spec-sub {
    font-size: 11px;
    color: var(--gray-text);
    margin-top: 2px
}

.team-info {
    padding: 22px 24px
}

.team-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.5px;
    margin-bottom: 4px
}

.team-role {
    font-size: 13px;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 10px
}

.team-bio {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6
}

/* PRACTICE */
.practice {
    padding: 100px 0;
    background: var(--gray-bg);
}

.practice-header {
    text-align: center;
    margin-bottom: 56px;
}

.practice-header .section-sub {
    margin: 0 auto;
}

.practice-showcase {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: stretch;
}

.practice-photo {
    position: sticky;
    height: 580px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(26, 58, 107, 0.12);
    top: 7%;
}

.practice-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.practice-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(26, 58, 107, .55) 0%,
            rgba(26, 58, 107, .15) 40%,
            transparent 70%
    );
}

.practice-photo-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;

    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);

    border-radius: 18px;
    padding: 18px 22px;
    min-width: 190px;
}

.practice-photo-card span {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}

.practice-photo-card p {
    font-size: 13px;
    line-height: 1.4;
    color: var(--blue);
    font-weight: 700;
}

.practice-content {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.practice-kicker {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
}

.practice-content h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    color: var(--blue);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.practice-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 28px;
}

.practice-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.practice-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;

    padding: 14px 16px;

    border: 1px solid var(--gray-border);
    border-radius: 16px;
    background: var(--gray-bg);
}

.practice-feature-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: var(--blue-light);

    font-size: 20px;
}

.practice-feature h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 4px;
}

.practice-feature p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5;
}

@media (max-width: 1024px) {

    .practice-showcase {
        grid-template-columns: 1fr;
    }

    .practice-photo {
        height: 500px;
    }

    .practice-content h3 {
        font-size: 34px;
    }
}

@media (max-width: 993px) {
    .practice-photo {
        position: relative;
    }
}

@media (max-width: 768px) {

    .practice {
        padding: 70px 0;
    }

    .practice-header {
        margin-bottom: 32px;
    }

    .practice-photo {
        height: 360px;
    }

    .practice-content {
        padding: 24px;
    }

    .practice-content h3 {
        font-size: 28px;
    }

    .practice-photo-card {
        left: 16px;
        bottom: 16px;
        min-width: 160px;
        padding: 14px 16px;
    }

    .practice-photo-card span {
        font-size: 28px;
    }

    .practice-content .btn-red {
        width: 100%;
        text-align: center;
    }
}

/* WHY */
.why {
    padding: 100px 0;
    background: #fff
}

.why-inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: center
}

.why-visual {
    position: relative
}

.why-main-photo {
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    background: linear-gradient(135deg, #dce8f8, #eef3fb);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-float-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(26, 58, 107, 0.15);
    border: 1px solid var(--gray-border);
    min-width: 180px;
    text-align: center;
}

.wf-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
    display: block
}

.wf-lbl {
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 600;
    margin-top: 4px
}

.why-float-card2 {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--blue);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(26, 58, 107, 0.3);
    min-width: 160px;
    text-align: center;
}

.wf-num2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    display: block
}

.wf-lbl2 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-top: 4px
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.why-num-box {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--blue-light);
    border: 2px solid rgba(74, 125, 212, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--blue);
}

.why-num-box.r {
    background: var(--red-light);
    border-color: rgba(232, 25, 44, 0.2);
    color: var(--red)
}

.why-item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px
}

.why-item-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.65
}

/* PROCESS */
.process {
    padding: 100px 0;
    background: var(--blue)
}

.process .section-label {
    color: rgba(255, 255, 255, 0.6)
}

.process .section-title {
    color: #fff
}

.process .section-sub {
    color: rgba(255, 255, 255, 0.65)
}

.steps-row {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.step-item {
    padding: 0 20px;
    text-align: center;
    position: relative
}

.step-circle {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all .3s;
}

.step-circle.active {
    background: var(--red);
    border-color: var(--red)
}

.step-title-s {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3
}

.step-text-s {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65
}

/* OFFER */
.offer {
    padding: 80px 0;
    background: var(--gray-bg)
}

.offer-inner {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns:1fr 400px;
}

.offer-left {
    padding: 56px 52px;
    border-right: 1px solid var(--gray-border)
}

.offer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0
}

.offer-li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text)
}

.offer-check {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.offer-right {
    padding: 52px 40px;
    background: var(--blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.offer-course-name {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.offer-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px
}

.offer-price-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px
}

.offer-btn {
    background: var(--red);
    color: #fff;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .2s;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block
}

.offer-btn:hover {
    background: #C41424;
    transform: translateY(-1px)
}

.offer-phone {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 16px
}

.offer-phone a {
    color: #fff;
    font-weight: 700;
    text-decoration: none
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background: #fff
}

.testi-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px
}

.testi-card {
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 32px;
    transition: all .3s;
}

.testi-card:hover {
    border-color: rgba(232, 25, 44, 0.25);
    box-shadow: 0 8px 32px rgba(26, 58, 107, 0.08)
}

.testi-stars {
    color: var(--red);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 16px
}

.testi-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px
}

.testi-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 32px;
    color: var(--red);
    line-height: 1;
    opacity: 0.6
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-border);
    padding-top: 20px
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-light);
    border: 2px solid rgba(74, 125, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: var(--blue)
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue)
}

.testi-course {
    font-size: 12px;
    color: var(--gray-text)
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--gray-bg)
}

.faq-inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: start
}

.faq-visual {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    background: linear-gradient(135deg, #dce8f8, #eef3fb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 1;
    margin-top: 40px;
}

.faq-visual-ph {
    font-size: 80px;
    opacity: 0.2;
    color: var(--blue)
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.faq-item {
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color .2s
}

.faq-item.open {
    border-color: rgba(232, 25, 44, 0.3)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    transition: color .2s;
    user-select: none;
    gap: 16px
}

.faq-q:hover {
    color: var(--red)
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--blue);
    transition: transform .3s, background .2s
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--red-light);
    color: var(--red)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
    padding: 0 24px
}

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

/* FINAL CTA */
.final-cta {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--blue) 0%, #2D5FA6 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.final-cta .section-label {
    color: rgba(255, 255, 255, 0.6)
}

.final-cta .section-title {
    color: #fff;
    margin: 0 auto 16px
}

.final-cta .section-sub {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 40px
}

.cta-trust-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 48px 40px 24px
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto
}

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

.footer-top-logo {
    max-width: 180px;
    width: 100%;
    object-fit: cover;
}

.footer-brand-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    display: block;
    margin-bottom: 12px
}

.footer-brand-name span {
    color: var(--red)
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 20px
}

.footer-col-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color .2s
}

.footer-links li a:hover {
    color: #fff
}

.footer-ci {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px
}

.footer-ci a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color .2s
}

.footer-ci a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3)
}

/* STICKY */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--red);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform .4s ease;
}

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

.sticky-text {
    font-size: 14px;
    color: var(--blue);
    font-weight: 600
}

.sticky-text strong {
    color: var(--red)
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(17, 24, 39, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all
}

.modal {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform .3s;
    box-shadow: 0 24px 80px rgba(17, 24, 39, 0.2)
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1)
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    color: var(--gray-text);
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.modal-close:hover {
    background: var(--red-light);
    color: var(--red)
}

.modal-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px
}

.modal-icon {
    width: 48px;
    height: 48px;
    background: var(--red-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.modal-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.5px
}

.modal-sub {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 28px;
    line-height: 1.6
}

.form-field {
    margin-bottom: 14px
}

.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px
}

.form-field input, .form-field select {
    width: 100%;
    background: var(--gray-bg);
    border: 1.5px solid var(--gray-border);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--text);
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    outline: none;
    transition: border-color .2s
}

.form-field input:focus, .form-field select:focus {
    border-color: var(--red);
    background: #fff
}

.form-field input::placeholder {
    color: var(--gray-text)
}

.form-field select option {
    background: #fff
}

.form-submit {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    transition: all .2s;
    margin-top: 6px
}

.form-submit:hover {
    background: #C41424;
    transform: translateY(-1px)
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 10px;
    line-height: 1.5
}

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

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

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns:1fr;
        min-height: auto
    }

    .hero-right {
        display: none
    }

    .hero-left {
        padding: 60px 40px
    }

    .courses-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .team-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .why-inner {
        grid-template-columns:1fr;
        gap: 40px
    }

    .faq-inner {
        grid-template-columns:1fr;
        gap: 40px
    }

    .faq-visual {
        height: 260px
    }

    .offer-inner {
        grid-template-columns:1fr
    }

    .offer-right {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px
    }

    .gallery-grid {
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto
    }

    .gallery-item.tall {
        grid-row: span 1
    }

    .footer-top {
        grid-template-columns:1fr 1fr
    }

    .steps-row {
        grid-template-columns:1fr 1fr;
        gap: 32px
    }

    .steps-row::before {
        display: none
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 16px
    }

    .nav-links a:not(.nav-cta) {
        display: none
    }

    .nav-phone {
        display: none
    }

    .hero-left {
        padding: 36px 20px 48px
    }

    .container {
        padding: 0 20px
    }

    .hero-stats {
        flex-direction: column
    }

    .hstat {
        border-right: none;
        border-bottom: 1px solid var(--gray-border);
        padding: 14px 20px
    }

    .hstat:last-child {
        border-bottom: none
    }

    .courses-grid, .team-grid, .testi-grid, .steps-row {
        grid-template-columns:1fr
    }

    .gallery-grid {
        grid-template-columns:1fr;
        grid-template-rows:auto
    }

    .trust-strip-inner {
        flex-direction: column;
        padding: 0 20px
    }

    .tsi {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1)
    }

    .offer-left {
        padding: 32px 20px
    }

    .footer-top {
        grid-template-columns:1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .sticky-bar {
        padding: 12px 16px;
        flex-direction: column;
        gap: 10px
    }

    .final-cta {
        padding: 60px 20px
    }

    .why-float-card, .why-float-card2 {
        display: none
    }

    .modal {
        padding: 32px 20px
    }

    .steps-row::before {
        display: none
    }
}
