@import "https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400;1,600&display=swap";

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

body {
    font-family: var(--sans);
    color: var(--ink);
    background-color: var(--white);
}

.page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

@media (min-width: 1601px) {
    body {
        background-color: #f1f5f9; /* Subdued background for ultra-wide screens to make the page-wrapper stand out */
    }
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--sans);
}
.object-contain { object-fit: contain; }
.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.card-image-wrap {
    position: relative;
}
.card-overlay-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
    background-color: rgb(252 253 255 / 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.coach-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}
.coach-details .details-list {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
}

.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-0 { top: 0; }

.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Sizing */
.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.w-12 { width: 3rem; }
.h-full { height: 100%; }
.h-5 { height: 1.25rem; }
.h-12 { height: 3rem; }

.max-w-7xl { max-width: 80rem; }
.min-h-screen { min-height: 100vh; }

.aspect-video { aspect-ratio: 16/9; }
.aspect-\[4\/5\] { aspect-ratio: 4/5; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-3 { margin-bottom: .75rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-0\.5 { margin-top: .125rem; }
.mt-1 { margin-top: .25rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.ml-0\.5 { margin-left: .125rem; }
.p-3 { padding: .75rem; }
.p-5 { padding: 1.25rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    margin-top: .75rem;
    margin-bottom: 0;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
    margin-bottom: 0;
}
.font-heading {
    font-family: var(--font-heading), Georgia, serif;
}

.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-xs { font-size: .75rem; line-height: 1rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }
.tracking-widest { letter-spacing: .1em; }
.whitespace-nowrap { white-space: nowrap; }
.text-accent-600 { color: oklch(var(--accent-600)); }
.text-accent-700 { color: oklch(var(--accent-700)); }
.text-background-50 { color: oklch(var(--background-50)); }
.text-foreground-300 { color: oklch(var(--foreground-300)); }
.text-foreground-600 { color: oklch(var(--foreground-600)); }
.text-foreground-700 { color: oklch(var(--foreground-700)); }
.text-foreground-950 { color: oklch(var(--foreground-950)); }
.bg-accent-500 { background-color: oklch(var(--accent-500)); }
.bg-background-100 { background-color: oklch(var(--background-100)); }
.bg-background-50 { background-color: oklch(var(--background-50)); }
.bg-foreground-950 { background-color: oklch(var(--foreground-950)); }
.bg-foreground-950\/20 { background-color: oklch(var(--foreground-950) / .2); }
.bg-foreground-950\/80 { background-color: oklch(var(--foreground-950) / .8); }
.bg-green-600 { background-color: rgb(22, 163, 74); }
.bg-primary-100 { background-color: oklch(var(--primary-100)); }
.bg-primary-600 { background-color: oklch(var(--primary-600)); }
.border { border-width: 1px; }
.border-background-200\/70 { border-color: oklch(var(--background-200) / .7); }
.border-foreground-300 { border-color: oklch(var(--foreground-300)); }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-foreground-950\/80 {
    --tw-gradient-from: oklch(var(--foreground-950) / .8);
    --tw-gradient-to: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-transparent {
    --tw-gradient-to: transparent;
}
.object-cover { object-fit: cover; }
.object-top { object-position: top; }
.overflow-hidden { overflow: hidden; }
.opacity-90 { opacity: .9; }
.cursor-pointer { cursor: pointer; }
.transition-all {
    transition-property: all;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.transition-colors {
    transition-property: color, background-color, border-color;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.transition-transform {
    transition-property: transform;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.duration-500 { transition-duration: .5s; }
.hover\:bg-green-700:hover { background-color: rgb(21, 128, 61); }
.hover\:bg-primary-700:hover { background-color: oklch(var(--primary-700)); }
.hover\:bg-background-200:hover { background-color: oklch(var(--background-200)); }
.hover\:bg-foreground-950\/10:hover { background-color: oklch(var(--foreground-950) / .1); }
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}
.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}
.group:hover .group-hover\:bg-foreground-950\/10 {
    background-color: oklch(var(--foreground-950) / .1);
}
@media (width >= 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (width >= 768px) {
    .md\:p-4 { padding: 1rem; }
    .md\:p-6 { padding: 0.5rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:py-24 { padding-top: 2rem; padding-bottom: 6rem; }
    .md\:h-14 { height: 3.5rem; }
    .md\:w-14 { width: 3.5rem; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .md\:text-sm { font-size: .875rem; line-height: 1.25rem; }
    .md\:gap-8 { gap: 2rem; }
}
@media (width >= 1024px) {
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:gap-12 { gap: 3rem; }
    .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}
:root {
    --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;
    --accent-orange:  #D35400;
    --bg-warm:        #FDF8F0;
    --bg-warm-2:      #F9F2E6;
    --bg-warm-light:  #FFF4E6;
    --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(--bg-warm);
    --primary-color: #0d6efd;
    --sans:         'Plus Jakarta Sans', system-ui, sans-serif;
    --serif:        'Lora', Georgia, serif;
    --ff-head:      var(--sans);
    --ff-body:      var(--sans);
    --ff-serif:     var(--serif);
    --font-primary: var(--sans);
    --font-serif:   var(--serif);
    --font-body:    var(--sans);
    --font-heading: var(--sans);
    --r:    14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --shadow:    0 2px 12px rgba(13,27,53,.08);
    --shadow-lg: 0 8px 40px rgba(13,27,53,.14);
    --foreground-950: .1 .04 260;
    --foreground-700: .3 .05 260;
    --foreground-600: .4 .05 260;
    --foreground-300: .7 .04 260;
    --background-50:  .98 .005 80;
    --background-100: .96 .01 80;
    --background-200: .93 .015 80;
    --primary-100:    .9 .04 260;
    --primary-600:    .3 .09 260;
    --primary-700:    .25 .08 260;
    --accent-500:     .72 .18 85;
    --accent-600:     .65 .16 85;
    --accent-700:     .55 .14 85;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6
}
.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
}
.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;
    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 {
   padding: 1rem 2rem;
    background: #fff;
    max-width: 1280px;
    margin: 0 auto;
}

.video-hub-inner {
    max-width: 1280px;
    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: 12px 1rem;
    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: 20px 2rem;
}

.expert-inner {
    max-width: 65%;
    margin: 0 AUTO;
    display: grid;
    grid-template-columns: 333px 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-linkedin {
    font-size: 13.5px;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 99px;
    background: #0077b5;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: all .2s
}

.btn-linkedin:hover {
    background: #005885;
    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 {
    padding: 12px 1rem;
    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: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    flex-wrap: wrap;
    gap: 12px
}

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

.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 {max-width: 1280px; background: linear-gradient(135deg, #F8FAFE 0%, #F0F4FB 100%); border-radius: 28px; padding: 2rem; margin: 2rem auto; 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: 1rem; margin: 1rem 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: #e7e6e6; 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 { margin: 0.5rem 0; }
.langs-support {
    background: var(--sky);
    border-radius: 32px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1280px;
    text-align: center;
    box-shadow: var(--shadow);
}
.langs-support h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.6rem;
    font-family: var(--sans);
}
.langs-support > p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1rem;
}
.lang-badge-list { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin: 1.5rem 0; }
.lang-badge {
    background: var(--white);
    border-radius: 99px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    font-family: var(--sans);
}
@media (max-width: 768px) { .ccl-grid { flex-direction: column; } .why-grid-2col { flex-direction: column; } }

.hero-carousel {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    border-top-left-radius: 30% 50%;
    border-bottom-left-radius: 30% 50%;
    border-left: 12px solid rgba(150, 160, 170, 0.4);
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.carousel-slide.active { opacity: 1; }

@media (max-width: 992px) {
    .hero-carousel { display: none; }
}

.naati-intro {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-warm-2) 100%);
    border-radius: var(--r-xl);
    max-width: 1280px;
    margin: 1rem auto;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}
.naati-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.naati-intro-inner h2 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1.2rem;
    font-family: var(--sans);
    line-height: 1.25;
}
.naati-intro-inner h2 span {
    color: var(--gold);
}
.naati-intro-inner p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink2);
    max-width: 12000px;
    margin: 3rem 1rem 3rem 1rem;
    font-family: var(--sans);
}
.naati-intro-tags {
    margin-top: 1.8rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.naati-intro-tag {
    background: var(--white);
    border-radius: 99px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    font-family: var(--sans);
}

/* ─── WHY CHOOSE SECTION ─── */
.why-section {
    background: var(--white);
    padding-bottom: 1rem;
}
.why-grid-3col {
    max-width: 1280px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.why-card {
    flex: 1;
    min-width: 260px;
    background: #e7e6e6;
    border-radius: var(--r-xl);
    padding: 1.8rem;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -8px rgba(13,27,53,0.12);
}
.why-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--ink);
    font-family: var(--sans);
}
.why-card > p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--ink2);
    margin-bottom: 1.2rem;
    font-family: var(--sans);
}
.why-card .students-label {
    font-weight: 700;
    margin: 0 0 0.6rem 0;
    font-size: 1rem;
    color: var(--ink);
    font-family: var(--sans);
}
.why-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}
.why-card li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--ink2);
    font-family: var(--sans);
}
.why-card li .check-icon {
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
@media (max-width: 900px) {
    .why-grid-3col {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .why-card { width: 100%; }
}
.lang-section {
    padding: 60px 20px;
    background: var(--white);
}
.lang-section-wrap {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-warm-2) 100%);
    border-radius: var(--r-xl);
    max-width: 1280px;
    margin: 2rem auto;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}
.lang-inner.center { max-width: 900px; margin: 0 auto; text-align: center; }
.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 }
.lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    margin-top: 28px;
}
.lang-card {
    position: relative;
    width: 140px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--line);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    cursor: pointer;
}
.lang-card:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(245,166,35,0.18);
    transform: translateY(-2px);
}
.lang-art { width: 100%; height: 70px; }
.lang-art svg { width: 100%; height: 100%; display: block; }
.lang-card-body { padding: 8px 10px 10px; text-align: center; }
.lang-card-body .flag { font-size: 14px; margin-right: 4px; }
.lang-card-body h3 { display: inline; font-size: 14px; font-weight: 600; margin: 0; color: var(--ink); font-family: var(--sans); }
.lang-cta { color: var(--muted); font-size: 14px; text-align: center; }

.partner-services-section {
    background: var(--white);
    padding: 1rem 0 2rem 0;
}
.partner-services-header {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
    margin-bottom: 0;
}
.partner-services-header .section-sub {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0 auto;
}
.partner-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,179,71,0.15);
    color: var(--accent-orange);
    padding: 6px 16px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: var(--sans);
}
.partner-services-grid {
    max-width: 1280px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-card {
    background: #e7e6e6;
    border-radius: var(--r-xl);
    padding: 2rem;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px -8px rgba(0,0,0,0.12);
}
.service-badge-pill {
    display: inline-block;
    background: var(--bg-warm-light);
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    letter-spacing: 0.5px;
    font-family: var(--sans);
}
.service-card h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--ink);
    line-height: 1.3;
    font-family: var(--sans);
}
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}
.service-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--ink2);
    font-weight: 500;
    font-family: var(--sans);
}
.service-card ul li .tick {
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 1.1rem;
}
.service-card-btn {
    width: 100%;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: var(--sans);
}
.service-card-btn:hover {
    background: var(--ink2);
    transform: translateY(-1px);
}
.service-card-btn:active {
    transform: scale(0.98);
}
.cta-consult {
    max-width: 1280px;
    margin: 1rem auto;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-warm-2) 100%);
    border-radius: var(--r-xl);
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}
.cta-consult h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.8rem;
    font-family: var(--sans);
}
.cta-consult > p {
    /* max-width: 750px; */
    margin: 0 auto 1rem auto;
    color: var(--ink2);
    font-size: 1rem;
    line-height: 1.6;
    font-family: var(--sans);
}
.cta-consult-btn {
    background: var(--ink);
    border: none;
    border-radius: 99px;
    padding: 14px 32px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: var(--sans);
}
.cta-consult-btn:hover {
    background: var(--ink2);
    transform: translateY(-2px);
}
.cta-consult-note {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: var(--muted);
    font-family: var(--sans);
}
.who-section {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-warm-2) 100%);
    border-radius: var(--r-xl);
    max-width: 1280px;
    margin: 1rem auto;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}
.who-section h3 {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.6rem;
    font-family: var(--sans);
}
.who-section > p {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    font-family: var(--sans);
    margin-bottom: 0.5rem;
}
.who-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1rem auto;
    max-width: 800px;
}

.qr-section {
    padding: 12px 1rem;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.qr-container {
    max-width: 90rem;
    width: 100%;
    text-align: center;
}

.qr-header {
    margin-bottom: 1rem;
}

.qr-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.1);
    color: #15a04b;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.qr-badge i {
    font-size: 16px;
}

.qr-header h3 {
    font-size: 28px;
    color: var(--ink, #0D1B35);
    font-weight: 800;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.qr-header p {
    font-size: 15px;
    color: var(--muted, #667085);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.qr-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
    .qr-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.qr-card {
    background: #ffffff;
    border: 1px solid var(--line, #eaecf0);
    border-radius: 20px;
    /* padding: 24px; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 280px;
}

.qr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    border-color: rgba(37, 211, 102, 0.3);
}

.qr-image-wrapper {
    position: relative;
    /* width: 180px; */
    /* height: 180px; */
    background: #f9fafb;
    border-radius: 12px;
    padding: 5px;
    border: 1px solid #000000;
    /* margin-bottom: 20px; */
    overflow: hidden;
}

.qr-image {
    padding-top: 2px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #25D366;
    opacity: 0.7;
    box-shadow: 0 0 8px #25D366;
    animation: qr-scan 2.5s ease-in-out infinite;
}

@keyframes qr-scan {
    0%, 100% { top: 0%; }
    50% { top: 100%; }
}

.qr-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.country-flag {
    font-size: 24px;
    margin-bottom: 1px;
}

.country-name {
    font-weight: 700;
    color: var(--ink, #0D1B35);
    font-size: 16px;
}

.contact-number {
    font-size: 13.5px;
    color: var(--muted, #667085);
    font-weight: 500;
}

.qr-footer-text {
    font-size: 14px;
    color: var(--muted, #667085);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.5;
}

.qr-footer-text i {
    font-size: 16px;
}

.linkedin-link {
    color: #0077b5;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.linkedin-link:hover {
    color: #005885;
    text-decoration: underline;
}