/* ============================================================
   Online Manipal — Online MBA Landing Page
   Premium, responsive, data-driven design
   ============================================================ */

:root {
    --orange:        #F26722;
    --orange-dark:   #d8521a;
    --orange-soft:   #FFF1E9;
    --navy:          #0B1F3A;
    --navy-2:        #102a4c;
    --navy-3:        #1c3a63;
    --gold:          #F5A623;
    --ink:           #16243a;
    --muted:         #5d6b80;
    --line:          #e6eaf1;
    --bg:            #ffffff;
    --bg-soft:       #f5f7fb;
    --white:         #ffffff;
    --radius:        18px;
    --radius-sm:     12px;
    --shadow-sm:     0 4px 14px rgba(11,31,58,.07);
    --shadow:        0 18px 45px rgba(11,31,58,.12);
    --shadow-lg:     0 30px 70px rgba(11,31,58,.20);
    --container:     1180px;
    --font:          'Plus Jakarta Sans', system-ui, sans-serif;
    --display:       'Sora', 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

.ico { width: 22px; height: 22px; flex: none; }

/* ---------- Buttons ---------- */
.btn {
    --b: var(--orange);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font);
    font-weight: 700; font-size: .95rem;
    padding: 12px 22px; border-radius: 999px;
    border: 2px solid transparent; cursor: pointer;
    transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn__ico { width: 18px; height: 18px; }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff; box-shadow: 0 10px 24px rgba(242,103,34,.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(242,103,34,.45); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--ghost { background: var(--orange-soft); color: var(--orange-dark); }
.btn--ghost:hover { background: #ffe2d2; }
.btn--light { background: #fff; color: var(--orange-dark); box-shadow: var(--shadow); }
.btn--light:hover { transform: translateY(-2px); }

/* ---------- Section helpers ---------- */
.kicker {
    display: inline-block; font-weight: 800; font-size: .76rem; letter-spacing: .12em;
    text-transform: uppercase; color: var(--orange);
    background: var(--orange-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.section-title {
    font-family: var(--display); font-weight: 800; color: var(--navy);
    font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.15; letter-spacing: -.01em;
}
.section-head { margin-bottom: 38px; }
.section-head--center { text-align: center; max-width: 720px; margin-inline: auto; }
section { scroll-margin-top: 84px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255,255,255,.86); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand--logo { gap: 0; }
.brand__logo {
    display: block;
    height: 44px;
    width: auto;
    max-width: min(260px, 58vw);
}
.brand__mark {
    width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 8px 18px rgba(242,103,34,.35);
}
.brand__star { width: 24px; height: 24px; color: #fff; fill: #fff; }
.brand__text { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 1.12rem; line-height: 1.1; display: flex; flex-direction: column; }
.brand__text small { font-family: var(--font); font-weight: 600; font-size: .64rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.brand--light .brand__text { color: #fff; }
.brand--light .brand__text small { color: rgba(255,255,255,.7); }

.main-nav { display: flex; gap: 26px; }
.main-nav a { font-weight: 600; color: var(--ink); font-size: .95rem; position: relative; padding: 6px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--orange); transition: width .25s; }
.main-nav a:hover { color: var(--orange); }
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; gap: 10px; }
.nav-toggle { display: none; background: var(--orange-soft); border: none; color: var(--orange-dark); width: 44px; height: 44px; border-radius: 12px; cursor: pointer; }
.nav-toggle .ico { width: 24px; height: 24px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 0;
    margin-bottom: 28px;
    background: #071528;
}
.hero__media {
    position: relative;
    z-index: 0;
    width: 100%;
    line-height: 0;
}
.hero__picture {
    display: block;
    width: 100%;
}
.hero__banner {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: left center;
    image-rendering: auto;
}
.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero__form-wrap {
    position: absolute;
    top: 50%;
    right: max(22px, calc((100% - var(--container)) / 2 + 22px));
    transform: translateY(-50%);
    width: min(300px, calc(100% - 44px));
    pointer-events: auto;
}
.hero__spacer { display: none; }
.hero .lead-form {
    padding: 16px 14px 14px;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(11, 31, 58, .2);
    border: 1px solid rgba(255, 255, 255, .85);
}
.hero .lead-form__head { margin-bottom: 12px; }
.hero .lead-form--compact .form-row { grid-template-columns: 1fr; gap: 0; }
.hero .lead-form--compact .form-row--split { grid-template-columns: 1fr 1fr; gap: 10px; }
.hero .lead-form--compact .field { margin-bottom: 10px; }
.hero .lead-form--compact .field label {
    font-size: .74rem;
    margin-bottom: 4px;
}
.hero .lead-form--compact .field input,
.hero .lead-form--compact .field select {
    font-size: .84rem;
    padding: 9px 10px;
    border-radius: 10px;
}
.hero .lead-form--compact .phone-prefix {
    gap: 6px;
    padding: 0 10px;
    font-size: .82rem;
}
.hero .lead-form--compact .phone-flag {
    width: 18px;
    height: 12px;
}
.hero .lead-form--compact .phone-field input {
    font-size: .84rem;
    padding: 9px 10px;
}
.hero .lead-form--compact .consent {
    font-size: .7rem;
    gap: 7px;
    margin: 2px 0 10px;
    line-height: 1.4;
}
.hero .lead-form--compact .consent input { width: 14px; height: 14px; }
.hero .lead-form__title { font-size: 1.05rem; }
.hero .lead-form__note { font-size: .78rem; line-height: 1.35; margin-top: 2px; }
.hero .lead-form .btn--primary {
    border-radius: 10px;
    padding: 10px 16px;
    font-size: .88rem;
}
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    color: #fff; font-weight: 700; font-size: .82rem; padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
}
.pill__ico { width: 18px; height: 18px; color: var(--gold); }
.hero__title {
    font-family: var(--display); font-weight: 800; letter-spacing: -.02em;
    font-size: clamp(2.4rem, 5.2vw, 3.8rem); line-height: 1.05; margin-bottom: 16px;
    background: linear-gradient(100deg, #fff 40%, #ffd9c2 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__subtitle { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 520px; margin-bottom: 24px; }
.hero__badges { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; max-width: 480px; }
.hero__badges li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #fff; }
.badge__ico { width: 24px; height: 24px; color: var(--gold); background: rgba(245,166,35,.15); padding: 4px; border-radius: 8px; box-sizing: content-box; flex: none; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; }

.hero__girl {
    position: absolute; right: -30px; bottom: -70px; width: 300px; max-width: 38%;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); pointer-events: none;
    display: none;
}

/* Hero form */
.lead-form {
    background: #fff; border-radius: var(--radius); padding: 26px 24px;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
}
.lead-form__head { text-align: center; margin-bottom: 18px; }
.lead-form__title { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 1.32rem; }
.lead-form__note { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; display: flex; flex-direction: column; }
.field label { font-weight: 700; font-size: .82rem; color: var(--navy); margin-bottom: 6px; }
.field input, .field select {
    font-family: var(--font); font-size: .94rem; color: var(--ink);
    padding: 12px 14px; border: 1.6px solid var(--line); border-radius: var(--radius-sm);
    background: #fbfcfe; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus {
    outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242,103,34,.12); background: #fff;
}
.field input.invalid, .field select.invalid { border-color: #e23d3d; box-shadow: 0 0 0 4px rgba(226,61,61,.1); }
.phone-field { display: flex; align-items: stretch; border: 1.6px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fbfcfe; transition: border-color .2s, box-shadow .2s; }
.phone-field:focus-within { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242,103,34,.12); background: #fff; }
.phone-prefix {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0 12px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--navy);
    background: #f0f3f8;
    border-right: 1.6px solid var(--line);
}
.phone-flag {
    flex-shrink: 0;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}
.phone-code { line-height: 1; letter-spacing: .02em; }
.phone-field input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    border-radius: 0;
}
.phone-field input:focus { box-shadow: none; }
.consent { display: flex; align-items: flex-start; gap: 9px; font-size: .8rem; color: var(--muted); margin: 4px 0 16px; cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--orange); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--orange); font-weight: 700; }
.lead-form__status { font-size: .85rem; font-weight: 600; margin-top: 10px; text-align: center; }
.lead-form__status.ok { color: #1a9c5b; }
.lead-form__status.err { color: #e23d3d; }

/* ============================================================
   Section 2 — Stats
   ============================================================ */
.stats { margin-top: -52px; position: relative; z-index: 5; }
.stats__grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 26px 10px; border: 1px solid var(--line);
}
.stat { text-align: center; padding: 8px 16px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: var(--line); }
.stat__value { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--orange); line-height: 1; }
.stat__label { font-weight: 600; color: var(--muted); font-size: .86rem; margin-top: 8px; }

/* ============================================================
   Section 3 — Intro
   ============================================================ */
.intro { padding: 80px 0; }
.intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.intro__media::before {
    content: ""; position: absolute; inset: -16px -16px auto auto; width: 70%; height: 70%;
    background: linear-gradient(135deg, var(--orange), var(--gold)); border-radius: var(--radius); z-index: -1; opacity: .15;
}
.intro__media-badge {
    position: absolute; left: -18px; bottom: 26px; background: #fff; border-radius: 14px;
    box-shadow: var(--shadow); padding: 12px 16px; display: flex; align-items: center; gap: 10px;
}
.imb__ico { width: 30px; height: 30px; color: var(--gold); fill: rgba(245,166,35,.18); }
.intro__media-badge strong { display: block; font-family: var(--display); color: var(--navy); font-size: 1.05rem; }
.intro__media-badge span { font-size: .76rem; color: var(--muted); }
.intro__body { color: var(--muted); margin: 18px 0 22px; font-size: 1.02rem; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-list li {
    display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--navy);
    background: var(--bg-soft); border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px;
}
.chip__ico { width: 16px; height: 16px; color: var(--orange); }

/* ============================================================
   Section 4 — Courses
   ============================================================ */
.courses { padding: 80px 0; background: var(--bg-soft); }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.course-card {
    position: relative; background: #fff; border-radius: var(--radius); padding: 30px 26px;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s, border-color .25s; display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(242,103,34,.4); }
.course-card--featured { border: 2px solid var(--orange); box-shadow: 0 24px 50px rgba(242,103,34,.18); }
.course-card__tag {
    position: absolute; top: -13px; left: 26px; background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff; font-weight: 700; font-size: .72rem; letter-spacing: .04em; padding: 6px 14px; border-radius: 999px;
    text-transform: uppercase; box-shadow: 0 8px 18px rgba(242,103,34,.35);
}
.course-card__name { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.28rem; line-height: 1.2; }
.course-card__uni { color: var(--orange); font-weight: 600; font-size: .92rem; margin: 6px 0 18px; }
.course-card__meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; flex: 1; }
.course-card__meta li { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.course-card__meta li:last-child { border-bottom: none; padding-bottom: 0; }
.cm__ico { width: 20px; height: 20px; color: var(--orange); }
.course-card__meta span { color: var(--muted); font-size: .86rem; margin-right: auto; }
.course-card__meta b { color: var(--navy); font-size: .92rem; text-align: right; }

/* ============================================================
   Section 5 — Specializations
   ============================================================ */
.specs { padding: 80px 0; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.spec-card {
    display: flex; align-items: center; gap: 14px; padding: 18px 18px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, background .2s;
}
.spec-card:hover { transform: translateY(-5px); background: var(--navy); box-shadow: var(--shadow); }
.spec-card:hover .spec-card__name { color: #fff; }
.spec-card:hover .spec-card__num { background: var(--orange); color: #fff; }
.spec-card__num {
    width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none;
    background: var(--orange-soft); color: var(--orange-dark); font-family: var(--display); font-weight: 800; font-size: .95rem;
    transition: background .2s, color .2s;
}
.spec-card__name { font-weight: 700; color: var(--navy); font-size: .95rem; line-height: 1.25; transition: color .2s; }

/* ============================================================
   Section 6 — Benefits
   ============================================================ */
.benefits { padding: 80px 0; background: var(--bg-soft); }
.benefits__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.benefits__intro p { color: var(--muted); margin: 16px 0 26px; font-size: 1.05rem; max-width: 420px; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit-list li {
    display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--line);
    border-radius: 14px; padding: 18px; font-weight: 600; color: var(--navy); font-size: .95rem;
    box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.benefit-list li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-list__ico {
    width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff;
}
.benefit-list__ico .ico { width: 18px; height: 18px; }

/* ============================================================
   Section 7 — CTA band
   ============================================================ */
.cta-band { padding: 70px 0; }
.cta-band__inner {
    position: relative; text-align: center; color: #fff; border-radius: 26px; overflow: hidden;
    padding: 56px 30px;
    background: radial-gradient(800px 400px at 80% 0%, rgba(245,166,35,.3), transparent 60%),
                linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    box-shadow: var(--shadow-lg);
}
.cta-band__inner::after {
    content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.12) 1.5px, transparent 1.5px);
    background-size: 24px 24px; opacity: .4;
}
.cta-band__ico { width: 52px; height: 52px; margin: 0 auto 16px; color: #fff; position: relative; z-index: 1; }
.cta-band h2 { position: relative; z-index: 1; font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3.6vw, 2.4rem); max-width: 760px; margin: 0 auto 26px; line-height: 1.18; }
.cta-band .btn { position: relative; z-index: 1; }

/* ============================================================
   Section 8 — FAQs
   ============================================================ */
.faqs { padding: 80px 0; }
.faq-list { max-width: 860px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq--open { border-color: rgba(242,103,34,.45); box-shadow: var(--shadow-sm); }
.faq__q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: none; border: none; cursor: pointer; padding: 20px 22px; text-align: left;
    font-family: var(--font); font-weight: 700; font-size: 1.02rem; color: var(--navy);
}
.faq__icon { position: relative; width: 22px; height: 22px; flex: none; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--orange); border-radius: 2px; transition: transform .25s; }
.faq__icon::before { left: 0; top: 50%; width: 100%; height: 2.4px; transform: translateY(-50%); }
.faq__icon::after { top: 0; left: 50%; height: 100%; width: 2.4px; transform: translateX(-50%); }
.faq--open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 22px 20px; color: var(--muted); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 56px 0 24px; }
.site-footer .brand--footer {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.site-footer .brand__logo { height: 40px; max-width: 240px; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
.footer-about { margin-top: 16px; max-width: 360px; font-size: .92rem; color: rgba(255,255,255,.65); }
.footer-col h4 { color: #fff; font-family: var(--display); font-size: 1.05rem; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.7); padding: 5px 0; font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.site-footer__bottom {
    margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
    display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.55);
}
.site-footer .cookie-settings {
    background: none; border: none; padding: 0; cursor: pointer; font: inherit;
    color: rgba(255,255,255,.72); text-decoration: underline; text-underline-offset: 3px;
}
.site-footer .cookie-settings:hover { color: #fff; }
.site-footer__bottom a { color: rgba(255,255,255,.72); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__bottom a:hover { color: var(--orange); }
.footer-company { margin-top: 14px; font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-address { display: block; color: rgba(255,255,255,.65); padding: 5px 0; font-size: .92rem; }

/* ---------- Disclaimer bar ---------- */
.disclaimer-bar {
    background: #f4f6f9;
    border-top: 1px solid rgba(8,17,33,.08);
    padding: 28px 0;
}
.disclaimer-bar__text {
    font-size: .82rem;
    line-height: 1.65;
    color: var(--muted);
    margin: 0 0 12px;
}
.disclaimer-bar__links {
    font-size: .85rem;
    margin: 0;
}
.disclaimer-bar__links a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.disclaimer-bar__links a:hover { color: var(--orange); }
.disclaimer-bar__links span { margin: 0 8px; color: rgba(8,17,33,.35); }

/* ---------- Legal pages ---------- */
.legal-page { padding: 48px 0 64px; background: #fff; }
.legal-page__inner { max-width: 780px; }
.legal-page__title {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--navy);
    margin-bottom: 8px;
}
.legal-page__meta { color: var(--muted); font-size: .92rem; margin-bottom: 32px; }
.legal-page__meta a { color: var(--orange); }
.legal-section { margin-bottom: 32px; }
.legal-section h2 {
    font-family: var(--display);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.legal-section p { color: var(--muted); line-height: 1.7; margin: 0 0 10px; }
.legal-list { padding-left: 20px; color: var(--muted); line-height: 1.75; }
.legal-list a { color: var(--orange); }
.legal-page__nav { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(8,17,33,.08); font-size: .92rem; }
.legal-page__nav a { color: var(--navy); font-weight: 600; }

/* ---------- Floating CTA ---------- */
.floating-cta {
    position: fixed; right: 18px; bottom: 18px; z-index: 70;
    display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .92rem;
    font-family: var(--font);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff;
    padding: 12px 20px 12px 14px; border-radius: 999px; border: none; cursor: pointer;
    box-shadow: 0 14px 30px rgba(242,103,34,.45);
    transition: transform .2s, box-shadow .2s;
    transform: translateY(120px);
}
.floating-cta__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    flex-shrink: 0;
}
.floating-cta__icon .btn__ico {
    width: 16px; height: 16px;
    stroke-width: 2.5;
    transition: transform .2s ease;
}
.floating-cta.show { transform: translateY(0); }
.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(242,103,34,.5);
}
.floating-cta:hover .floating-cta__icon .btn__ico { transform: translate(1px, -1px); }

/* ---------- Lead popup modal ---------- */
.modal {
    position: fixed; inset: 0; z-index: 100; display: none;
    align-items: center; justify-content: center; padding: 20px;
}
.modal.open { display: flex; }
.modal__overlay {
    position: absolute; inset: 0; background: rgba(8,17,33,.62); backdrop-filter: blur(4px);
    animation: fadeIn .25s ease;
}
.modal__dialog {
    position: relative; z-index: 1; width: 100%; max-width: 880px;
    background: #fff; border-radius: 22px; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-lg); animation: popIn .32s cubic-bezier(.2,.9,.3,1.2);
    max-height: calc(100vh - 40px);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: none; } }
.modal__close {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.9); color: var(--navy); display: grid; place-items: center;
    box-shadow: var(--shadow-sm); transition: transform .2s, background .2s;
}
.modal__close:hover { transform: rotate(90deg); background: #fff; color: var(--orange); }
.modal__aside {
    position: relative; padding: 34px 30px; color: #fff; overflow: hidden;
    background: radial-gradient(600px 320px at 80% 0%, rgba(242,103,34,.35), transparent 60%),
                linear-gradient(150deg, var(--navy) 0%, var(--navy-3) 100%);
    display: flex; flex-direction: column;
}
.modal__aside::after {
    content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 22px 22px; opacity: .5;
}
.modal__badge {
    position: relative; z-index: 1; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
    font-weight: 700; font-size: .76rem; padding: 7px 13px; border-radius: 999px; margin-bottom: 18px;
}
.modal__aside h3 { position: relative; z-index: 1; font-family: var(--display); font-weight: 800; font-size: 1.5rem; line-height: 1.2; }
.modal__points { position: relative; z-index: 1; margin: 18px 0 auto; display: flex; flex-direction: column; gap: 12px; }
.modal__points li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .94rem; }
.modal__points .chip__ico { color: var(--gold); width: 18px; height: 18px; }
.modal__img { position: relative; z-index: 1; width: 180px; max-width: 70%; margin: 14px auto -34px; filter: drop-shadow(0 20px 30px rgba(0,0,0,.4)); }
.modal__body { padding: 30px 28px; overflow-y: auto; }
.modal__body .lead-form { box-shadow: none; padding: 0; border: none; }

@media (max-width: 760px) {
    .modal__dialog { grid-template-columns: 1fr; max-width: 460px; }
    .modal__aside { display: none; }
    .modal__body { padding: 36px 22px 26px; }
}

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ============================================================
   Thank You page
   ============================================================ */
.ty { position: relative; min-height: calc(100vh - 72px); display: flex; align-items: center; overflow: hidden; padding: 60px 0; }
.ty__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(900px 500px at 80% -10%, rgba(242,103,34,.18), transparent 60%),
        radial-gradient(700px 500px at 10% 110%, rgba(28,58,99,.10), transparent 60%),
        var(--bg-soft);
}
.ty__inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin-inline: auto; }
.ty__icon {
    width: 90px; height: 90px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center;
    color: #fff; background: linear-gradient(135deg, #1fae63, #15945a);
    box-shadow: 0 18px 40px rgba(31,174,99,.4); animation: tyPop .5s cubic-bezier(.2,.9,.3,1.4) both;
}
.ty__icon svg { width: 46px; height: 46px; }
.ty__icon::after {
    content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%;
    border: 2px solid rgba(31,174,99,.4); animation: tyRing 1.6s ease-out infinite;
}
@keyframes tyPop { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes tyRing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
.ty .pill { color: var(--orange-dark); }
.ty__title { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: clamp(2rem, 5vw, 3rem); margin: 8px 0 14px; }
.ty__text { color: var(--muted); font-size: 1.08rem; max-width: 600px; margin: 0 auto 36px; }
.ty__text strong { color: var(--navy); }
.ty__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 38px; text-align: left; }
.ty__step { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px; box-shadow: var(--shadow-sm); }
.ty__step span {
    display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; margin-bottom: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; font-family: var(--display); font-weight: 800;
}
.ty__step strong { display: block; color: var(--navy); font-size: 1.02rem; margin-bottom: 4px; }
.ty__step p { color: var(--muted); font-size: .9rem; margin: 0; }
.ty__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ty .ty__call { color: var(--navy); border-color: var(--line); }
.ty .ty__call:hover { background: #fff; border-color: var(--orange); color: var(--orange-dark); }

@media (max-width: 720px) {
    .ty__steps { grid-template-columns: 1fr; }
    .ty__ctas .btn { width: 100%; }
    .ty { min-height: auto; padding: 50px 0; }
}

/* ============================================================
   Responsive
   ============================================================ */
.hero__girl { display: none; }

/* ---- Large tablet / small laptop ---- */
@media (max-width: 1080px) {
    .hero__form-wrap { width: min(280px, calc(100% - 36px)); right: 18px; }
    .intro__grid { gap: 36px; }
    .benefits__grid { gap: 40px; }
    .spec-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Tablet ---- */
@media (max-width: 920px) {
    section { scroll-margin-top: 70px; }
    .main-nav { display: none; }
    .header-actions .btn--ghost { display: none; }
    .header-actions { margin-left: auto; }
    .nav-toggle { display: grid; place-items: center; }
    .site-header.nav-open .main-nav {
        display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
        background: #fff; padding: 14px 22px 18px; gap: 4px; box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
    }
    .site-header.nav-open .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
    .site-header.nav-open .main-nav a:last-child { border-bottom: none; }

    .hero__grid { display: none; }
    .hero__banner { object-position: left top; }
    .hero { margin-bottom: 16px; }
    .stats { margin-top: -36px; }
    .intro__grid, .benefits__grid { grid-template-columns: 1fr; gap: 32px; }
    .intro__media { max-width: 520px; }
    .course-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .benefit-list { gap: 14px; }
    .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 22px 0; padding: 24px 10px; }
    .stat::before { display: none !important; }

    /* tighter vertical rhythm */
    .intro, .courses, .specs, .benefits, .faqs { padding: 60px 0; }
    .cta-band { padding: 56px 0; }
}

/* ---- Phones ---- */
@media (max-width: 640px) {
    :root { --radius: 16px; }
    .container { padding-inline: 18px; }
    .btn { padding: 12px 18px; }
    .btn--lg { padding: 14px 24px; font-size: .98rem; }

    /* Header */
    .site-header__inner { height: 64px; gap: 14px; }
    .brand__logo { height: 38px; max-width: min(220px, 52vw); }
    .brand__mark { width: 38px; height: 38px; }
    .brand__text { font-size: 1rem; }
    .brand__text small { font-size: .58rem; }

    /* Hero — mobile image only, form hidden above 920px breakpoint */
    .pill { font-size: .74rem; padding: 7px 13px; margin-bottom: 16px; }
    .hero__subtitle { font-size: 1rem; }
    .hero__badges { gap: 10px; margin-bottom: 22px; }
    .hero__badges li { font-size: .92rem; }
    .hero__ctas { gap: 10px; }
    .hero__ctas .btn { flex: 1 1 100%; }
    .lead-form { padding: 22px 18px; }
    .lead-form__title { font-size: 1.2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* Stats */
    .hero { margin-bottom: 16px; }
    .stats { margin-top: -36px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }

    /* Intro */
    .intro__media-badge { left: 10px; bottom: 12px; padding: 10px 13px; }

    /* Sections */
    .intro, .courses, .specs, .benefits, .faqs { padding: 52px 0; }
    .section-head { margin-bottom: 28px; }
    .course-grid { grid-template-columns: 1fr; gap: 18px; }
    .spec-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .spec-card { padding: 14px; gap: 11px; }
    .spec-card__num { width: 34px; height: 34px; }
    .spec-card__name { font-size: .9rem; }
    .benefit-list { grid-template-columns: 1fr; }
    .benefits__intro .btn { width: 100%; }

    /* CTA band */
    .cta-band { padding: 44px 0; }
    .cta-band__inner { padding: 42px 20px; border-radius: 20px; }
    .cta-band__ico { width: 44px; height: 44px; }

    /* FAQ */
    .faq__q { padding: 16px 18px; font-size: .96rem; gap: 12px; }
    .faq__a p { padding: 0 18px 18px; }

    /* Footer */
    .site-footer { padding: 44px 0 22px; }
    .site-footer .brand--footer { padding: 8px 12px; border-radius: 8px; }
    .site-footer .brand__logo { height: 36px; max-width: 210px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 26px; }
    .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Floating CTA — compact on phones */
    .floating-cta { right: 14px; bottom: 14px; padding: 11px 16px 11px 12px; font-size: .88rem; gap: 8px; }
    .floating-cta__icon { width: 28px; height: 28px; }
    .floating-cta__icon .btn__ico { width: 15px; height: 15px; }

    /* Modal */
    .modal { padding: 0; align-items: flex-end; }
    .modal__dialog { max-width: 100%; border-radius: 20px 20px 0 0; max-height: 92vh; animation: sheetUp .34s cubic-bezier(.2,.9,.3,1.1); }
    .modal__body { padding: 30px 20px 24px; }
}

@keyframes sheetUp { from { opacity: .4; transform: translateY(100%); } to { opacity: 1; transform: none; } }

/* ---- Small phones ---- */
@media (max-width: 400px) {
    .stats__grid { grid-template-columns: 1fr 1fr; }
    .spec-grid { grid-template-columns: 1fr; }
    .hero__title { font-size: 2.1rem; }
    .brand__text small { display: none; }
}

/* ============================================================
   Cookie consent bar
   ============================================================ */
.cookie-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    padding: 16px 0 calc(16px + env(safe-area-inset-bottom, 0px));
    background: rgba(11, 31, 58, .96); color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 -12px 40px rgba(11, 31, 58, .28);
    transform: translateY(110%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}
.cookie-bar--visible { transform: none; opacity: 1; }
.cookie-bar__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.cookie-bar__text {
    flex: 1 1 320px; margin: 0;
    font-size: .92rem; line-height: 1.55; color: rgba(255, 255, 255, .88);
}
.cookie-bar__actions {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.cookie-bar__clear {
    background: rgba(255, 255, 255, .1); color: #fff;
}
.cookie-bar__clear:hover { background: rgba(255, 255, 255, .18); }
.cookie-bar__accept { min-width: 120px; }
.cookie-settings {
    color: rgba(255, 255, 255, .72); font-size: .84rem;
    text-decoration: underline; text-underline-offset: 3px;
}
.cookie-settings:hover { color: #fff; }

@media (max-width: 640px) {
    .cookie-bar__inner { flex-direction: column; align-items: stretch; }
    .cookie-bar__actions { width: 100%; }
    .cookie-bar__actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; }
}
