:root {
    /* Base Brand Colors */
    --ink: #0D1B35;
    --ink2: #1A2E52;
    --dark: #0D1B35;
    --gold: #F5A623;
    --gold-l: #FFD580;
    --gold-d: #C8841A;
    --teal: #0ABFA3;
    --teal-l: #D0F5EE;
    --red: #E74C3C;
    --sky: #F0F5FF;
    --sky2: #E3ECFF;
    --muted: #6C7A99;
    --line: #DDE4F0;
    --border: #DDE4F0;
    --white: #FFFFFF;

    /* Semantics / Aliases */
    --blue: var(--teal);
    --blue-light: var(--sky);
    --blue-mid: var(--teal);
    --green: var(--teal);
    --green-light: var(--teal-l);
    --gold-light: rgba(245, 166, 35, 0.12);
    --cream: var(--sky);
    --warm: var(--sky);
    --primary-color: #0d6efd;

    /* Typography */
    --sans: 'Plus Jakarta Sans', sans-serif;
    --serif: 'Lora', serif;
    --ff-head: 'Plus Jakarta Sans', sans-serif;
    --ff-body: 'Plus Jakarta Sans', sans-serif;
    --ff-serif: 'Lora', serif;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Lora', serif;

    /* Spacing & Borders */
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* Shadows */
    --shadow: 0 2px 12px rgba(13,27,53,.08);
    --shadow-lg: 0 8px 40px rgba(13,27,53,.14);
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6
}

/* ─── UTILITY ─── */
.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px
}

.eyebrow-teal {
    color: var(--teal)
}

.section-h {
    font-family: var(--sans);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 10px
}

.section-h em {
    font-style: normal;
    color: var(--gold)
}

.section-sub {
    font-size: 14px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto
}

.center {
    text-align: center
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(245, 166, 35, .12);
    border: 1px solid rgba(245, 166, 35, .3);
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .03em
}

.schema-note {
    display: inline-block;
    background: #D0F5EE;
    color: #0A6E5E;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 6px;
    letter-spacing: .05em
}

/* ─── ANNOUNCEMENT BAR ─── */
.ann-bar {
    background: var(--ink);
    color: #fff;
    text-align: center;
    padding: 9px 1rem;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    z-index: 200
}

.ann-bar strong {
    background: var(--gold);
    color: var(--ink);
    padding: 2px 10px;
    border-radius: 99px;
    font-size: 11px;
    margin-left: 8px
}

.ann-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    cursor: pointer;
    line-height: 1
}

/* ─── NAV ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 150;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    gap: 16px
}

.nav-logo {
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

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

.nav-logo sub {
    font-size: 9px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: .05em;
    margin-left: 2px;
    vertical-align: middle
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color .18s;
    white-space: nowrap
}

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

.nav-links a.active {
    color: var(--ink);
    font-weight: 700
}

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.btn-xs-ghost {
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 16px;
    border: 1.5px solid var(--line);
    border-radius: 99px;
    background: transparent;
    cursor: pointer;
    color: var(--ink);
    transition: all .18s;
    white-space: nowrap
}

.btn-xs-ghost:hover {
    border-color: var(--ink);
    background: var(--sky)
}

.btn-xs-login {
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 16px;
    border: 1.5px solid var(--teal);
    border-radius: 99px;
    background: transparent;
    cursor: pointer;
    color: var(--teal);
    transition: all .18s;
    white-space: nowrap
}

.btn-xs-login:hover {
    background: var(--teal);
    color: #fff
}

.btn-xs-gold {
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 99px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    color: var(--ink);
    transition: all .15s;
    white-space: nowrap
}

.btn-xs-gold:hover {
    background: var(--gold-l);
    transform: translateY(-1px)
}

/* ─── HERO ─── */
.hero {
    background: linear-gradient(148deg, #0D1B35 0%, #162A50 55%, #0B2040 100%);
    padding: 72px 2rem 80px;
    position: relative;
    overflow: hidden
}

.hero-glow1 {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .14) 0%, transparent 68%);
    pointer-events: none
}

.hero-glow2 {
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 191, 163, .09) 0%, transparent 70%);
    pointer-events: none
}

.hero-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-left {}

.hero-right {}

/* Hero text */
.hero-badge-wrap {
    margin-bottom: 20px
}

h1.hero-title {
    font-family: var(--sans);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 16px
}

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

h1.hero-title .accent {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold-l)
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
    margin-bottom: 28px;
    font-weight: 300
}

.hero-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.btn-hero-primary {
    font-size: 14.5px;
    font-weight: 800;
    padding: 15px 28px;
    border-radius: 99px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    color: var(--ink);
    transition: all .2s;
    box-shadow: 0 4px 20px rgba(245, 166, 35, .35);
    white-space: nowrap
}

.btn-hero-primary:hover {
    background: var(--gold-l);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, .45)
}

.btn-hero-secondary {
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 99px;
    border: 2px solid rgba(255, 255, 255, .22);
    background: transparent;
    cursor: pointer;
    color: #fff;
    transition: all .2s;
    white-space: nowrap
}

.btn-hero-secondary:hover {
    border-color: rgba(255, 255, 255, .6);
    background: rgba(255, 255, 255, .05)
}

.btn-hero-login {
    font-size: 13.5px;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 99px;
    border: 2px solid rgba(10, 191, 163, .5);
    background: transparent;
    cursor: pointer;
    color: var(--teal);
    transition: all .2s;
    white-space: nowrap
}

.btn-hero-login:hover {
    border-color: var(--teal);
    background: rgba(10, 191, 163, .1)
}

/* Trust row */
.trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    font-weight: 500
}

.trust-chip strong {
    color: #fff
}

.trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .6
}

/* ─── VIDEO CARD (Hero right) ─── */
.video-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #000;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .08)
}

.video-thumb {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    background: #0a1525;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .75;
    transition: opacity .3s
}

.video-thumb:hover img {
    opacity: .55
}

/* Placeholder gradient thumb */
.video-thumb-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #162A50 0%, #0B3A6A 50%, #0D2543 100%)
}

.video-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .22s;
    box-shadow: 0 8px 28px rgba(245, 166, 35, .5)
}

.play-btn svg {
    margin-left: 4px
}

.video-thumb:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(245, 166, 35, .65)
}

.video-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    letter-spacing: .04em
}

.video-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #0a1420;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.video-meta-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff
}

.video-meta-dur {
    font-size: 11px;
    color: rgba(255, 255, 255, .4)
}

.video-thumb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* exactly 50% each */
    position: relative;
}

.video-thumb-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, .08);
    z-index: 2;
    pointer-events: none;
}

.video-thumb-grid .video-thumb {
    aspect-ratio: 1 / 1;
    /* square cell = 50% × 50% of card width */
    border-radius: 0;
}

.video-thumb-bg--alt {
    background: linear-gradient(135deg, #102038 0%, #0B1E3A 50%, #0D2040 100%);
}

.vtg-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 4;
    font-size: 9px;
    font-weight: 700;
    background: var(--teal);
    color: #fff;
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: .05em;
}

.vtg-badge--purple {
    background: #534AB7;
}

.vtg-dur {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 4;
    font-size: 10px;
    font-weight: 700;
    background: rgba(0, 0, 0, .6);
    color: rgba(255, 255, 255, .85);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Sub-title in meta bar */
.video-meta-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}


/* Video tabs below card */
.video-tabs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap
}

.vtab {
    flex: 1;
    min-width: 0;
    padding: 9px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    text-align: center
}

.vtab:hover,
.vtab.active {
    background: rgba(245, 166, 35, .12);
    border-color: rgba(245, 166, 35, .3)
}

.vtab-icon {
    font-size: 18px;
    display: block;
    margin-bottom: 4px
}

.vtab-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
    display: block;
    line-height: 1.3
}

/* ─── STATS STRIP ─── */
.stats-strip {
    background: var(--gold);
    padding: 20px 2rem
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 12px;
    flex-wrap: wrap
}

.stat-item {
    text-align: center;
    padding: 4px 16px
}

.stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1
}

.stat-label {
    font-size: 11px;
    color: rgba(13, 27, 53, .65);
    font-weight: 600;
    margin-top: 3px
}

/* ─── LANG SECTION ─── */
.lang-section {
    background: var(--sky);
    padding: 56px 2rem;
    border-bottom: 1px solid var(--line)
}

.lang-inner {
    max-width: 860px;
    margin: 0 auto
}

.lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 28px 0 16px
}

.lang-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid var(--line);
    padding: 9px 18px;
    border-radius: 99px;
    cursor: pointer;
    transition: all .2s;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
}

.lang-chip:hover,
.lang-chip.sel {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(13, 27, 53, .18)
}

.lang-chip .flag {
    font-size: 16px
}

.lang-cta {
    text-align: center;
    margin-top: 12px
}

.lang-cta a {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none
}

/* ─── VIDEO HUB SECTION ─── */
.video-hub {
    padding: 72px 2rem;
    background: #fff
}

.video-hub-inner {
    max-width: 980px;
    margin: 0 auto
}

.video-hub-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    margin-top: 40px;
    align-items: start
}

.main-video {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #000;
    box-shadow: 0 16px 48px rgba(13, 27, 53, .14);
    border: 1px solid var(--line)
}

.main-video .video-thumb {
    aspect-ratio: 16/9
}

.vid-playlist {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.vid-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: var(--r);
    border: 1.5px solid var(--line);
    cursor: pointer;
    transition: all .2s;
    align-items: center;
    background: #fff
}

.vid-item:hover,
.vid-item.active {
    border-color: var(--gold);
    background: rgba(245, 166, 35, .04)
}

.vid-item.active .vid-item-num {
    background: var(--gold);
    color: var(--ink)
}

.vid-item-thumb {
    width: 72px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ink), var(--ink2));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    overflow: hidden
}

.vid-item-num {
    position: absolute;
    top: 4px;
    left: 4px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
    transition: all .2s
}

.vid-item-info {
    flex: 1;
    min-width: 0
}

.vid-item-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 3px
}

.vid-item-dur {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500
}

.vid-item-type {
    font-size: 9.5px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 4px;
    background: var(--sky2);
    color: var(--ink2)
}

/* ─── HOW IT WORKS ─── */
.hiw {
    padding: 72px 2rem;
    background: var(--sky)
}

.hiw-inner {
    max-width: 920px;
    margin: 0 auto
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 44px
}

.step {
    background: #fff;
    padding: 28px 22px;
    position: relative;
    transition: all .22s;
    border-radius: 0
}

.step:first-child {
    border-radius: var(--r) 0 0 var(--r)
}

.step:last-child {
    border-radius: 0 var(--r) var(--r) 0
}

.step:hover {
    background: var(--ink);
    z-index: 1;
    transform: scaleY(1.03);
    border-radius: var(--r)
}

.step:hover .step-num {
    background: var(--gold);
    color: var(--ink)
}

.step:hover .step-title,
.step:hover .step-desc {
    color: #fff
}

.step:hover .step-title {
    color: rgba(255, 255, 255, 1)
}

.step:hover .step-desc {
    color: rgba(255, 255, 255, .6)
}

.step-connector {
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    height: 40%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--line), transparent)
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: all .22s;
    flex-shrink: 0
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    transition: color .22s
}

.step-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
    transition: color .22s
}

/* ─── FEATURES ─── */
.features {
    background: var(--ink);
    padding: 72px 2rem
}

.features-inner {
    max-width: 920px;
    margin: 0 auto
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px
}

.feat {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r);
    padding: 24px;
    transition: all .2s
}

.feat:hover {
    background: rgba(245, 166, 35, .07);
    border-color: rgba(245, 166, 35, .25);
    transform: translateY(-2px)
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(245, 166, 35, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px
}

.feat-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.feat-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .52);
    line-height: 1.65
}

/* ─── SOCIAL PROOF ─── */
.proof {
    padding: 72px 2rem;
    background: #fff
}

.proof-inner {
    max-width: 920px;
    margin: 0 auto
}

.proof-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin: 32px 0
}

.pb-item {
    flex: 1;
    padding: 22px 16px;
    text-align: center;
    border-right: 1.5px solid var(--line)
}

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

.pb-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    display: block;
    font-family: var(--sans)
}

.pb-label {
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px
}

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

.review {
    background: var(--sky);
    border-radius: var(--r);
    padding: 20px;
    border: 1px solid var(--line);
    transition: all .2s
}

.review:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(245, 166, 35, .12)
}

.stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .06em;
    margin-bottom: 8px
}

.review-body {
    font-size: 13px;
    color: #444;
    line-height: 1.65;
    margin-bottom: 14px
}

.review-author {
    display: flex;
    align-items: center;
    gap: 9px
}

.avi {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0
}

.avi-teal {
    background: var(--teal)
}

.avi-gold {
    background: var(--gold-d)
}

.aut-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink)
}

.aut-lang {
    font-size: 11px;
    color: var(--muted)
}

/* ─── PRICING ─── */
.pricing {
    background: var(--sky);
    padding: 72px 2rem
}

.pricing-inner {
    max-width: 880px;
    margin: 0 auto
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px
}

.price-card {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: all .2s;
    position: relative
}

.price-card:hover {
    box-shadow: 0 8px 32px rgba(13, 27, 53, .1);
    transform: translateY(-3px)
}

.price-card.hot {
    border: 2px solid var(--ink);
    border-radius: var(--r-lg)
}

.hot-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 99px;
    white-space: nowrap
}

.plan-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px
}

.plan-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1
}

.plan-price sup {
    font-size: 14px;
    font-weight: 600;
    vertical-align: top;
    margin-top: 7px
}

.plan-period {
    font-size: 12px;
    color: var(--muted);
    margin: 4px 0 18px
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px
}

.plan-feats li {
    font-size: 12.5px;
    color: #444;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.4
}

.plan-feats li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

.btn-plan {
    width: 100%;
    padding: 12px;
    border-radius: 99px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    border: 2px solid var(--ink);
    background: transparent;
    color: var(--ink)
}

.btn-plan:hover,
.price-card.hot .btn-plan {
    background: var(--ink);
    color: #fff
}

.plan-disc {
    font-size: 11px;
    color: var(--teal);
    font-weight: 600;
    text-align: center;
    margin-top: 9px
}

/* ─── EXPERT BIO ─── */
.expert {
    background: var(--ink);
    padding: 72px 2rem
}

.expert-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 52px;
    align-items: center
}

.expert-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    text-align: center
}

.expert-avi {
    width: 87%;
    height: 220px;
    border-radius: 2%;
    background: var(--gold);
    background-image: url('/assets/images/owner.png');
    background-size: cover;
    background-position: center;
    color: var(--ink);
    font-size: 30px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px
}

.expert-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px
}

.expert-role {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 16px
}

.expert-creds {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.cred {
    background: rgba(255, 255, 255, .06);
    border-radius: 9px;
    padding: 8px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    text-align: left
}

/* Video testimonial embed inside expert section */
.expert-video {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08)
}

.expert-video .video-thumb {
    aspect-ratio: 16/9
}

.expert-right {}

.expert-title {
    font-family: var(--sans);
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.25
}

.expert-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 18px
}

.expert-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px
}

.esx {
    background: rgba(255, 255, 255, .05);
    border-radius: 10px;
    padding: 14px 18px;
    text-align: center;
    flex: 1;
    min-width: 80px
}

.esx-n {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold)
}

.esx-l {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .45);
    margin-top: 3px
}

.expert-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.btn-wa {
    font-size: 13.5px;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 99px;
    background: #25D366;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: all .2s
}

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

.btn-view-results {
    font-size: 13.5px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 99px;
    border: 2px solid rgba(255, 255, 255, .2);
    background: transparent;
    cursor: pointer;
    color: rgba(255, 255, 255, .8);
    transition: all .2s
}

.btn-view-results:hover {
    border-color: rgba(255, 255, 255, .55);
    color: #fff
}

/* ─── FAQ ─── */
.faq {
    padding: 72px 2rem;
    background: #fff
}

.faq-inner {
    max-width: 740px;
    margin: 0 auto
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.open {
    border-color: var(--ink)
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 19px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 12px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink)
}

.faq-q:hover {
    background: var(--sky)
}

.faq-chevron {
    font-size: 18px;
    color: var(--muted);
    transition: transform .25s;
    flex-shrink: 0;
    font-style: normal
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--ink)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease
}

.faq-item.open .faq-a {
    max-height: 400px
}

.faq-a-inner {
    padding: 0 22px 20px;
    font-size: 13.5px;
    color: #555;
    line-height: 1.78
}

.faq-a-inner strong {
    color: var(--ink)
}

/* ─── CTA BAND ─── */
.cta-band {
    background: linear-gradient(130deg, var(--gold) 0%, #FFCF40 100%);
    padding: 72px 2rem;
    text-align: center
}

.cta-band-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2
}

.cta-band-sub {
    font-size: 15px;
    color: rgba(13, 27, 53, .65);
    margin-bottom: 32px
}

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

.btn-dark {
    font-size: 15px;
    font-weight: 800;
    padding: 16px 32px;
    border-radius: 99px;
    background: var(--ink);
    border: none;
    cursor: pointer;
    color: #fff;
    transition: all .2s
}

.btn-dark:hover {
    background: var(--ink2);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 27, 53, .25)
}

.btn-login-band {
    font-size: 14px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: 99px;
    border: 2px solid rgba(13, 27, 53, .25);
    background: transparent;
    cursor: pointer;
    color: var(--ink);
    transition: all .2s
}

.btn-login-band:hover {
    background: rgba(13, 27, 53, .08);
    border-color: rgba(13, 27, 53, .5)
}

.btn-wa-band {
    font-size: 14px;
    font-weight: 700;
    padding: 15px 26px;
    border-radius: 99px;
    background: rgba(13, 27, 53, .12);
    border: 2px solid transparent;
    cursor: pointer;
    color: var(--ink);
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 7px
}

.btn-wa-band:hover {
    background: rgba(13, 27, 53, .18)
}

/* ─── SEO TEXT ─── */
.seo-text {
    padding: 56px 2rem;
    background: #fff;
    border-top: 1px solid var(--line)
}

.seo-inner {
    max-width: 820px;
    margin: 0 auto
}

.seo-inner h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 24px 0 8px
}

.seo-inner h2:first-child {
    margin-top: 0
}

.seo-inner p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 8px
}

/* ─── GLOBAL ─── */
.global-strip {
    background: var(--sky);
    padding: 44px 2rem;
    text-align: center;
    border-top: 1px solid var(--line)
}

.global-chips {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px
}

.gc {
    background: #fff;
    border: 1px solid var(--line);
    padding: 7px 18px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500
}

/* ─── FOOTER ─── */
footer {
    background: #08132A;
    padding: 44px 2rem 24px
}

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

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

.footer-brand {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px
}

.footer-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.6;
    margin-bottom: 10px
}

.footer-reg {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .25)
}

.footer-col-h {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 12px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.footer-links a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .18s
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    flex-wrap: wrap;
    gap: 8px
}

.footer-bottom a {
    color: rgba(255, 255, 255, .3);
}

.footer-bottom a:hover {
    color: #fff;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
    backdrop-filter: blur(4px)
}

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

.modal {
    background: #fff;
    border-radius: var(--r-lg);
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    transform: translateY(20px) scale(.97);
    transition: all .25s;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .25)
}

.modal-overlay.open .modal {
    transform: none
}

.modal-header {
    background: var(--ink);
    padding: 24px 28px;
    text-align: center
}

.modal-logo {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px
}

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

.modal-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, .45)
}

.modal-body {
    padding: 28px
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .45);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    transition: color .18s
}

.modal-close:hover {
    color: #fff
}

.modal-header {
    position: relative
}

.form-group {
    margin-bottom: 16px
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    display: block
}

.form-input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--line);
    font-size: 14px;
    font-family: var(--sans);
    color: var(--ink);
    transition: border-color .18s;
    background: #fff
}

.form-input:focus {
    outline: none;
    border-color: var(--gold)
}

.form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.form-check label {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer
}

.form-check a {
    font-size: 12px;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600
}

.btn-modal-primary {
    width: 100%;
    padding: 13px;
    border-radius: 99px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--ink);
    font-family: var(--sans);
    transition: all .2s;
    margin-bottom: 12px
}

.btn-modal-primary:hover {
    background: var(--gold-l);
    transform: translateY(-1px)
}

.modal-divider {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin: 14px 0;
    position: relative
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background: var(--line)
}

.modal-divider::before {
    left: 0
}

.modal-divider::after {
    right: 0
}

.btn-modal-wa {
    width: 100%;
    padding: 12px;
    border-radius: 99px;
    background: #25D366;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-family: var(--sans);
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px
}

.btn-modal-wa:hover {
    background: #1ebe5d
}

.modal-footer-txt {
    text-align: center;
    font-size: 12px;
    color: var(--muted)
}

.modal-footer-txt a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none
}

.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px
}

.modal-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    transition: all .18s;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    font-family: var(--sans)
}

.modal-tab.active {
    color: var(--ink);
    border-bottom-color: var(--gold)
}

/* ─── FLOATING ACTIONS ─── */
.float-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 400;
    align-items: flex-end
}

.float-wa {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
    transition: all .2s;
    font-size: 22px;
    text-decoration: none
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .55)
}

.float-login {
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 99px;
    padding: 10px 18px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 18px rgba(13, 27, 53, .3);
    transition: all .2s;
    font-family: var(--sans)
}

.float-login:hover {
    background: var(--ink2);
    transform: translateY(-2px)
}

.float-practice {
    background: var(--gold);
    color: var(--ink);
    border: none;
    border-radius: 99px;
    padding: 10px 18px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 18px rgba(245, 166, 35, .35);
    transition: all .2s;
    font-family: var(--sans)
}

.float-practice:hover {
    background: var(--gold-l);
    transform: translateY(-2px)
}

/* ─── VIDEO MODAL ─── */
.vmodal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s
}

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

.vmodal {
    width: 100%;
    max-width: 840px;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    transform: scale(.95);
    transition: transform .22s
}

.vmodal-overlay.open .vmodal {
    transform: none
}

.vmodal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .18s;
    z-index: 601
}

.vmodal-close:hover {
    background: rgba(255, 255, 255, .2)
}

.vmodal iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border: none
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(245, 166, 35, .35)
    }

    50% {
        box-shadow: 0 4px 32px rgba(245, 166, 35, .65)
    }
}

.hero-left>* {
    animation: fadeUp .55s ease both
}

.hero-left>*:nth-child(1) {
    animation-delay: .05s
}

.hero-left>*:nth-child(2) {
    animation-delay: .14s
}

.hero-left>*:nth-child(3) {
    animation-delay: .23s
}

.hero-left>*:nth-child(4) {
    animation-delay: .32s
}

.hero-left>*:nth-child(5) {
    animation-delay: .4s
}

.hero-right {
    animation: fadeUp .55s ease .2s both
}

.btn-hero-primary {
    animation: pulse 3s ease-in-out infinite
}

/* ─── RESPONSIVE ─── */
@media(max-width:768px) {

    .hero-grid,
    .expert-inner {
        grid-template-columns: 1fr
    }

    .hero-right {
        order: -1
    }

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

    .feat-grid,
    .reviews-grid,
    .price-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .video-hub-grid {
        grid-template-columns: 1fr
    }

    nav {
        padding: 0 1rem
    }

    .nav-links {
        display: none
    }

    .stats-inner {
        gap: 8px
    }
}

/* ─── COMMON UTILITIES & ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all .65s cubic-bezier(.22,.81,.01,.99);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all .7s cubic-bezier(.22,.81,.01,.99);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all .7s cubic-bezier(.22,.81,.01,.99);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.4);
    }
}

.ccl-definition { background: linear-gradient(135deg, #F8FAFE 0%, #F0F4FB 100%); border-radius: 28px; padding: 2rem; margin: 2rem auto; max-width: 1200px; border: 1px solid rgba(13,27,53,0.08); }
.ccl-grid { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.ccl-text { flex: 2; min-width: 240px; }
.ccl-text h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 1rem; color: #0D1B35; }
.ccl-text p { font-size: 1rem; line-height: 1.5; color: #2c3e4e; margin-bottom: 1rem; }
.ccl-highlight { background: #0D1B35; color: #FFD966; padding: 0.2rem 0.6rem; border-radius: 40px; display: inline-block; font-weight: 700; font-size: 0.85rem; margin-top: 0.5rem; }
.ccl-stats { flex: 1; background: white; border-radius: 24px; padding: 1.4rem; box-shadow: 0 12px 30px rgba(0,0,0,0.05); text-align: center; }
.ccl-stats .stat-num { font-size: 2.2rem; font-weight: 800; color: #0D1B35; }
.why-grid-2col { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-top: 2rem; }
.why-card { background: white; border-radius: 28px; padding: 2rem; flex: 1; min-width: 260px; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05); border: 1px solid #eef2f9; transition: 0.2s; }
.why-card h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: #0D1B35; }
.why-card ul { list-style: none; padding: 0; }
.why-card li { margin-bottom: 0.7rem; padding-left: 1.4rem; position: relative; font-size: 0.95rem; }
.why-card li::before { content: "✓"; position: absolute; left: 0; color: #FFB347; font-weight: bold; }
.how-it-works-detailed { background: #ffffff; border-radius: 2rem; padding: 2rem; margin: 2rem auto; max-width: 1200px; box-shadow: 0 4px 14px rgba(0,0,0,0.02); }
.hiw-steps-detailed { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; justify-content: center; }
.step-detailed { background: #F9FBFE; border-radius: 28px; padding: 1.5rem; flex: 1; min-width: 180px; text-align: center; border: 1px solid #eef2f9; }
.step-num-detailed { background: #0D1B35; color: white; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 99px; font-weight: 800; margin-bottom: 1rem; }
.step-detailed h5 { font-weight: 800; margin: 0.5rem 0; }
.langs-support { background: #F3F6FC; border-radius: 32px; padding: 2rem; margin: 2rem auto; text-align: center; }
.lang-badge-list { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin: 1.5rem 0; }
.lang-badge { background: white; border-radius: 99px; padding: 0.4rem 1rem; font-size: 0.85rem; font-weight: 500; box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid #dee5ed; }
@media (max-width: 768px) { .ccl-grid { flex-direction: column; } .why-grid-2col { flex-direction: column; } }