/* ===== RESET & TOKENS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --ink: #07111f;
    --navy: #0b1d38;
    --royal: #1a3a8f;
    --blue: #2563eb;
    --sky: #60a5fa;
    --sun: #f59e0b;
    --gold: #fbbf24;
    --orange: #ea7c1e;
    --cream: #fef9f0;
    --paper: #f5f2ec;
    --mist: #eef2fb;
    --white: #ffffff;
    --slate: #64748b;
    --fog: #94a3b8;
    --green: #059669;
    --lgn: #d1fae5;
    --border: #e2e8f0;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

/* ===== UTILITY ===== */
.mw {
    max-width: 1200px;
    margin: 0 auto
}

.sec {
    padding: 88px 5%
}

.sec-sm {
    padding: 64px 5%
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(37, 99, 235, .09);
    border: 1px solid rgba(37, 99, 235, .22);
    color: var(--blue);
    padding: 5px 16px;
    border-radius: 40px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px
}

.tag.gold {
    background: rgba(245, 158, 11, .12);
    border-color: rgba(245, 158, 11, .3);
    color: var(--gold)
}

.h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -.4px;
    margin-bottom: 14px
}

.h2 em {
    font-style: italic;
    color: var(--royal)
}

.h2.wh {
    color: #fff
}

.h2.wh em {
    color: var(--sky)
}

.lead {
    font-size: .98rem;
    color: var(--slate);
    line-height: 1.78;
    max-width: 520px
}

.lead.wh {
    color: rgba(255, 255, 255, .55)
}

.center {
    text-align: center
}

.center .lead {
    margin: 0 auto
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 11px;
    font-size: .93rem;
    font-weight: 700;
    transition: all .25s;
    min-height: 48px;
    border: none;
    cursor: pointer
}

.btn-sun {
    background: linear-gradient(135deg, var(--sun), var(--gold));
    color: var(--ink);
    box-shadow: 0 5px 22px rgba(245, 158, 11, .36)
}

.btn-sun:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(245, 158, 11, .5)
}

.btn-ghost {
    background: rgba(255, 255, 255, .09);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .18)
}

.btn-dark {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 4px 18px rgba(11, 29, 56, .28)
}

.btn-dark:hover {
    background: #0d2248;
    transform: translateY(-2px)
}

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

.btn-outline:hover {
    background: rgba(7, 17, 31, .07)
}

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

.rv.up {
    opacity: 1;
    transform: none
}

.rv.d1 {
    transition-delay: .1s
}

.rv.d2 {
    transition-delay: .2s
}

.rv.d3 {
    transition-delay: .3s
}

.rv.d4 {
    transition-delay: .4s
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 4px
}

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

/* ==========================
   NAV
========================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: 66px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .3s, box-shadow .3s;
}

.nav.scrolled {
    background: rgba(7, 17, 31, .97);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06)
}

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

.logo-ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--sun), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 12px rgba(245, 158, 11, .4);
    flex-shrink: 0
}

.logo-name {
    font-family: 'Fraunces', serif;
    font-size: 1.18rem;
    color: #fff;
    font-weight: 700
}

.logo-name span {
    color: var(--gold)
}

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

.nav-links a {
    color: rgba(255, 255, 255, .68);
    font-size: .83rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 8px;
    transition: all .2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .09)
}

.nav-cta {
    background: var(--sun) !important;
    color: var(--ink) !important;
    font-weight: 700 !important;
    border-radius: 9px !important;
    padding: 8px 18px !important;
    box-shadow: 0 3px 12px rgba(245, 158, 11, .35) !important
}

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

.nav-ph {
    color: var(--gold) !important;
    font-weight: 700 !important
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .28s
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* Mobile nav drawer */
.m-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(280px, 100%);
    background: var(--navy);
    z-index: 600;
    padding: 70px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, .35);
}

.m-nav.open {
    transform: translateX(0)
}

.m-nav a {
    color: rgba(255, 255, 255, .72);
    font-size: .98rem;
    font-weight: 500;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: color .2s;
    min-height: 48px;
    display: flex;
    align-items: center
}

.m-nav a:hover,
.m-nav a:last-child {
    color: var(--gold)
}

.m-nav .m-cta {
    background: var(--sun);
    color: var(--ink);
    font-weight: 700;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    margin-top: 14px;
    justify-content: center;
    border: none
}

.m-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .6);
    font-size: 1.6rem;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 599;
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s
}

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

/* ==========================
   HERO
========================== */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 5% 80px;
}

.h-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 25%, rgba(37, 99, 235, .2) 0%, transparent 55%), radial-gradient(ellipse 50% 55% at 10% 90%, rgba(245, 158, 11, .09) 0%, transparent 50%), linear-gradient(160deg, #07111f, #0b1d38 50%, #091629)
}

.h-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 54px 54px
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none
}

.orb1 {
    width: 460px;
    height: 460px;
    background: rgba(37, 99, 235, .14);
    top: -90px;
    right: -50px;
    animation: bob 11s ease-in-out infinite
}

.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(245, 158, 11, .08);
    bottom: -30px;
    left: 4%;
    animation: bob 14s ease-in-out infinite reverse
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-36px)
    }
}

.hero-in {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, .12);
    border: 1px solid rgba(245, 158, 11, .3);
    color: var(--gold);
    padding: 7px 18px;
    border-radius: 40px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 22px
}

.bdot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.6rem, 4.8vw, 4rem);
    color: #fff;
    line-height: 1.07;
    letter-spacing: -.5px;
    margin-bottom: 20px
}

.hero h1 em {
    font-style: italic;
    color: var(--sky)
}

.hero h1 strong {
    color: var(--gold)
}

.h-sub {
    font-size: 1.04rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.78;
    margin-bottom: 32px;
    font-weight: 300
}

.h-sub strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 600
}

.h-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* Hero stats card */
.h-card {
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 22px;
    padding: 32px;
    backdrop-filter: blur(14px)
}

.h-card-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px
}

.stats-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px
}

.stat-b {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center
}

.stat-n {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    color: #fff;
    line-height: 1
}

.stat-n sup {
    font-size: .95rem;
    color: var(--gold)
}

.stat-l {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px
}

.snip {
    background: rgba(245, 158, 11, .09);
    border: 1px solid rgba(245, 158, 11, .22);
    border-radius: 12px;
    padding: 16px
}

.snip-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 7px;
    color: var(--sun);
    font-size: .85rem
}

.snip-q {
    font-size: .83rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.55;
    font-style: italic
}

.snip-who {
    font-size: .71rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 7px
}

.rank {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: rgba(255, 255, 255, .05);
    border-radius: 9px;
    padding: 10px 12px;
    margin-top: 12px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500
}

.rank strong {
    color: #fff
}

/* ==========================
   TRUST STRIP
========================== */
.trust {
    background: var(--ink);
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.t-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 28px;
    border-right: 1px solid rgba(255, 255, 255, .08)
}

.t-item:last-child {
    border-right: none
}

.t-ico {
    font-size: 1.2rem;
    flex-shrink: 0
}

.t-txt strong {
    display: block;
    color: #fff;
    font-size: .8rem;
    font-weight: 700
}

.t-txt span {
    color: rgba(255, 255, 255, .5);
    font-size: .75rem;
    font-weight: 500
}

/* ==========================
   REVIEWS
========================== */
.rev-sec {
    background: linear-gradient(155deg, var(--navy), #102040);
    position: relative;
    overflow: hidden
}

.rev-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 75% at 90% 50%, rgba(37, 99, 235, .1) 0%, transparent 60%)
}

.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
    position: relative;
    z-index: 1
}

.r-card {
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 26px;
    transition: all .28s
}

.r-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px)
}

.r-stars {
    color: var(--sun);
    font-size: .85rem;
    margin-bottom: 11px;
    display: flex;
    gap: 2px
}

.r-q {
    font-size: .88rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.66;
    font-style: italic;
    margin-bottom: 17px
}

.r-auth {
    display: flex;
    align-items: center;
    gap: 11px
}

.r-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sun), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0
}

.r-name {
    font-size: .85rem;
    font-weight: 700;
    color: #fff
}

.r-role {
    font-size: .72rem;
    color: rgba(255, 255, 255, .4)
}

.rev-cta-row {
    text-align: center;
    margin-top: 44px;
    position: relative;
    z-index: 1
}

.rev-cta-row p {
    color: rgba(255, 255, 255, .45);
    font-size: .86rem;
    margin-bottom: 14px
}

/* ==========================
   WHY US
========================== */
.why-sec {
    background: var(--cream)
}

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

.w-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all .28s
}

.w-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(37, 99, 235, .08)
}

.w-ico {
    font-size: 2.3rem;
    margin-bottom: 12px
}

.w-card h3 {
    font-size: .94rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px
}

.w-card p {
    font-size: .84rem;
    color: var(--slate);
    line-height: 1.66
}

/* ==========================
   ABOUT
========================== */
.about-sec {
    background: var(--white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center
}

.about-img-wrap {
    position: relative
}

.about-ph {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--mist), #d0e0f8);
    border-radius: 22px;
    border: 3px dashed rgba(37, 99, 235, .22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.about-ph .big {
    font-size: 5rem
}

.about-ph p {
    font-size: .82rem;
    color: var(--royal);
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    line-height: 1.5
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -12px;
    background: var(--sun);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(245, 158, 11, .4)
}

.ab-n {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--ink);
    line-height: 1
}

.ab-l {
    font-size: .65rem;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .5px
}

.about-text p {
    font-size: .96rem;
    color: var(--slate);
    line-height: 1.78;
    margin-bottom: 14px
}

.about-hl {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0
}

.ahl {
    display: flex;
    gap: 13px;
    align-items: flex-start
}

.ahl-ico {
    width: 38px;
    height: 38px;
    background: var(--mist);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.ahl h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px
}

.ahl p {
    font-size: .82rem;
    color: var(--slate);
    line-height: 1.56
}

/* ==========================
   CTA BANNER
========================== */
.cta-banner {
    background: linear-gradient(135deg, var(--sun), var(--orange));
    padding: 78px 5%;
    text-align: center
}

.cta-banner h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -.3px
}

.cta-banner p {
    font-size: 1rem;
    color: rgba(10, 17, 31, .68);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

/* ==========================
   FOOTER
========================== */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .55);
    padding: 60px 5% 28px
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 48px
}

.f-brand .f-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px
}

.f-brand .f-logo span {
    color: var(--gold)
}

.f-brand p {
    font-size: .84rem;
    line-height: 1.7;
    margin-bottom: 16px
}

.f-social {
    display: flex;
    gap: 8px
}

.f-soc {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    transition: all .2s;
    min-height: 34px
}

.f-soc:hover {
    background: var(--gold);
    transform: scale(1.1)
}

.f-col h4 {
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px
}

.f-col a {
    display: block;
    font-size: .83rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 9px;
    transition: color .2s;
    min-height: 32px;
    line-height: 32px
}

.f-col a:hover {
    color: var(--gold)
}

.f-col p {
    font-size: .82rem;
    margin-bottom: 9px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.foot-btm {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .78rem
}

.foot-btm .areas {
    font-size: .74rem;
    color: rgba(255, 255, 255, .28)
}

/* ==========================
   FLOATING BUTTONS
========================== */
.wa-btn {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 400;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, .45);
    transition: transform .25s;
}

.wa-btn:hover {
    transform: scale(1.1)
}

/* Mobile sticky CTA */
.mob-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 490;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .3);
}

.mob-bar a {
    flex: 1;
    padding: 13px;
    border-radius: 10px;
    text-align: center;
    font-size: .88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 48px
}

.mb-call {
    background: rgba(255, 255, 255, .09);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18)
}

.mb-book {
    background: linear-gradient(135deg, var(--sun), var(--gold));
    color: var(--ink);
    box-shadow: 0 3px 14px rgba(245, 158, 11, .38)
}

/* ==========================
   RESPONSIVE
========================== */
@media(max-width:1024px) {
    .hero-in {
        grid-template-columns: 1fr
    }

    .h-card {
        display: none
    }

    .circle-grid,
    .math-grid,
    .about-grid,
    .sched-grid {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .prog-grid,
    .rev-grid,
    .why-grid,
    .price-grid {
        grid-template-columns: 1fr 1fr
    }

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

    .circle-diagram {
        order: -1
    }

    .about-img-wrap {
        max-width: 400px;
        margin: 0 auto
    }
}

@media(max-width:768px) {

    /* Nav */
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    /* Sections */
    .sec,
    .sec-sm {
        padding: 56px 4%
    }

    .hero {
        padding: 84px 4% 56px;
        min-height: auto
    }

    .hero h1 {
        font-size: clamp(2rem, 8.5vw, 2.9rem)
    }

    .h-sub {
        font-size: .93rem
    }

    .h-btns {
        flex-direction: column;
        gap: 10px
    }

    .h-btns .btn {
        width: 100%
    }

    /* Trust */
    .trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 14px 4%
    }

    .t-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding: 10px 8px;
        justify-content: center
    }

    .t-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .08)
    }

    .t-item:nth-last-child(-n+2) {
        border-bottom: none
    }

    /* Circle diagram */
    .cd-wrap {
        width: 280px;
        height: 280px
    }

    .cd-hub {
        width: 96px;
        height: 96px
    }

    .cd-hub-t {
        font-size: .76rem
    }

    .cd-node {
        width: 62px;
        height: 62px
    }

    .cd-char {
        font-size: 1.2rem
    }

    .cd-word {
        font-size: .42rem
    }

    /* Recalculate positions for 280px box (center=140, r=106, node=62, offset=31) */
    .cdn-c1 {
        top: 3px;
        left: 109px
    }

    .cdn-i {
        top: 55px;
        left: 201px
    }

    .cdn-r {
        top: 163px;
        left: 201px
    }

    .cdn-c2 {
        top: 215px;
        left: 109px
    }

    .cdn-l {
        top: 163px;
        left: 17px
    }

    .cdn-e {
        top: 55px;
        left: 17px
    }

    /* Grids */
    .prog-grid,
    .rev-grid,
    .why-grid,
    .price-grid {
        grid-template-columns: 1fr
    }

    .math-stats {
        grid-template-columns: 1fr 1fr
    }

    .p-card.feat {
        order: -1
    }

    .why-grid .w-card {
        text-align: left;
        display: flex;
        gap: 14px;
        align-items: flex-start
    }

    .w-card .w-ico {
        margin-bottom: 0;
        flex-shrink: 0
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .foot-btm {
        flex-direction: column;
        align-items: flex-start
    }

    /* Mobile sticky bar */
    .mob-bar {
        display: flex
    }

    footer {
        padding-bottom: 76px
    }

    .wa-btn {
        bottom: 78px;
        right: 14px;
        width: 48px;
        height: 48px;
        font-size: 1.35rem
    }

    /* Headings */
    .h2 {
        font-size: clamp(1.65rem, 6.5vw, 2.2rem)
    }
}

@media(max-width:480px) {
    .nav {
        height: 60px
    }

    .logo-name {
        font-size: 1.05rem
    }

    .logo-ico {
        width: 34px;
        height: 34px;
        font-size: 1.1rem
    }

    .sec,
    .sec-sm {
        padding: 48px 4%
    }

    .hero {
        padding: 76px 4% 48px
    }

    .hero h1 {
        font-size: clamp(1.8rem, 9vw, 2.5rem)
    }

    .trust {
        grid-template-columns: 1fr
    }

    .t-item {
        border-right: none !important
    }

    .t-item:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .08) !important
    }

    .t-item:last-child {
        border-bottom: none !important
    }

    .cd-wrap {
        width: 240px;
        height: 240px
    }

    .cd-hub {
        width: 82px;
        height: 82px
    }

    .cd-hub-t {
        font-size: .68rem
    }

    .cd-node {
        width: 54px;
        height: 54px
    }

    .cd-char {
        font-size: 1.05rem
    }

    /* Positions for 240px (center=120, r=90, node=54, offset=27) */
    .cdn-c1 {
        top: 3px;
        left: 93px
    }

    .cdn-i {
        top: 47px;
        left: 171px
    }

    .cdn-r {
        top: 138px;
        left: 171px
    }

    .cdn-c2 {
        top: 183px;
        left: 93px
    }

    .cdn-l {
        top: 138px;
        left: 15px
    }

    .cdn-e {
        top: 47px;
        left: 15px
    }

    .h2 {
        font-size: clamp(1.5rem, 7.5vw, 2rem)
    }

    .prog-grid,
    .rev-grid {
        gap: 10px
    }

    .m-nav {
        width: 100%
    }

    .cta-btns {
        flex-direction: column;
        align-items: stretch
    }

    .cta-btns .btn {
        width: 100%
    }
}

/* ==========================
   PROGRAMS DROPDOWN NAV
========================== */
.nav-links .has-drop {
    position: relative;
}

.nav-links .has-drop>a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-links .has-drop>a::after {
    content: '▾';
    font-size: .65rem;
    opacity: .6;
    transition: transform .2s;
}

.nav-links .has-drop:hover>a::after,
.nav-links .has-drop:focus-within>a::after {
    transform: rotate(180deg);
}

.drop-menu {
    position: absolute;
    top: 100%;
    /* flush — no gap */
    left: 50%;
    min-width: 220px;
    background: rgba(7, 17, 31, .97);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 16px 8px 8px;
    /* extra top padding replaces the visual gap */
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity .22s, transform .22s;
    z-index: 600;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .4);
}

/* Invisible bridge fills the space between the nav link and the menu top,
   so the mouse never "leaves" the hover zone while moving downward */
.drop-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    /* reaches up to cover any visual gap */
    left: 0;
    right: 0;
    height: 12px;
}

.nav-links .has-drop:hover .drop-menu,
.nav-links .has-drop:focus-within .drop-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.drop-menu a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 14px !important;
    border-radius: 9px;
    color: rgba(255, 255, 255, .72) !important;
    font-size: .85rem !important;
    font-weight: 500 !important;
    transition: all .18s;
    min-height: 40px !important;
}

.drop-menu a:hover {
    background: rgba(255, 255, 255, .1) !important;
    color: #fff !important;
}

.drop-ico {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

/* Mobile dropdown — expand inline */
.m-drop-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .72);
    font-size: .98rem;
    font-weight: 500;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    min-height: 48px;
    font-family: inherit;
    transition: color .2s;
}

.m-drop-btn:hover {
    color: var(--gold);
}

.m-drop-arrow {
    font-size: .7rem;
    transition: transform .25s;
}

.m-drop-open .m-drop-arrow {
    transform: rotate(180deg);
}

.m-drop-items {
    display: none;
    flex-direction: column;
    padding: 4px 0 8px 16px;
    gap: 2px;
}

.m-drop-open+.m-drop-items {
    display: flex;
}

.m-drop-items a {
    color: rgba(255, 255, 255, .55) !important;
    font-size: .9rem !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .04) !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    min-height: 40px !important;
}

.m-drop-items a:hover {
    color: var(--gold) !important;
}

/* ==========================
   PROGRAM SUMMARY CARDS (index)
========================== */
.prog-summary-sec {
    background: var(--cream);
}

.prog-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ps-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.ps-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ps-accent, var(--blue));
}

.ps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
    border-color: transparent;
}

.ps-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    background: color-mix(in srgb, var(--ps-accent, var(--blue)) 12%, transparent);
}

.ps-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.ps-card p {
    font-size: .88rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ps-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.ps-pill {
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 40px;
    background: color-mix(in srgb, var(--ps-accent, var(--blue)) 10%, transparent);
    color: var(--ps-accent, var(--blue));
    border: 1px solid color-mix(in srgb, var(--ps-accent, var(--blue)) 25%, transparent);
}

.ps-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--ps-accent, var(--blue));
    transition: gap .2s;
}

.ps-link:hover {
    gap: 10px;
}

@media(max-width:768px) {
    .prog-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   HERO CTA SECTION (index bottom)
========================== */
.hero-cta-sec {
    background: linear-gradient(135deg, var(--navy), #1a3060);
    position: relative;
    overflow: hidden;
    padding: 88px 5%;
    text-align: center;
}

.hero-cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(37, 99, 235, .15) 0%, transparent 65%);
}

.hero-cta-sec .h-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 54px 54px;
}

.hero-cta-in {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero-cta-in h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.4px;
    margin-bottom: 16px;
}

.hero-cta-in h2 em {
    color: var(--gold);
    font-style: italic;
}

.hero-cta-in p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.78;
    margin-bottom: 36px;
}

.cta-cards {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 16px 22px;
    text-align: center;
    min-width: 120px;
}

.cta-card-n {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}

.cta-card-l {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 600;
    margin-top: 4px;
}