@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-dot-pulse {
    animation: statusPulse 2s ease-in-out infinite;
}

/* ---------- WEB FONT FALLBACK ---------- */
@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: local('Inter');
}

/* ---------- VARIABLES ---------- */
:root {
    --accent: #FCC70B;
    --accent-dark: #d4a600;
    --accent-glow: rgba(252, 199, 11, .35);
    --accent-subtle: rgba(252, 199, 11, .08);
    --bg: #0a0a0a;
    --bg-alt: #111111;
    --surface: rgba(255, 255, 255, .04);
    --surface-hover: rgba(255, 255, 255, .07);
    --border: rgba(255, 255, 255, .08);
    --border-hover: rgba(252, 199, 11, .3);
    --text: #f0f0f0;
    --text-muted: #999;
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --glass: rgba(255, 255, 255, .03);
    --glass-border: rgba(255, 255, 255, .08);
    --glass-glow: rgba(252, 199, 11, .05);
    --fiber-color: rgba(252, 199, 11, 0.4);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ---------- LOADING SCREEN ---------- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s var(--ease), visibility .5s;
}

.loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-inner .logo-mark {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.loader-fill {
    width: 0;
    height: 100%;
    background: var(--accent);
    animation: loaderFill 1.2s var(--ease) forwards;
}

@keyframes loaderFill {
    to {
        width: 100%;
    }
}

/* ---------- CURSOR GLOW ---------- */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(252, 199, 11, .06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity .3s;
    opacity: 0;
}

.cursor-glow.visible {
    opacity: 1;
}

/* ---------- UTILITY ---------- */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-sm {
    max-width: 780px;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background: var(--bg-alt);
}

/* ---------- CANVAS ---------- */
#fiberCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.fiber-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.5;
}

.fiber-line {
    fill: none;
    stroke: var(--fiber-color);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: fiberFlow 5s linear infinite;
}

@keyframes fiberFlow {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* ---------- GLASS COMPONENTS ---------- */
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(252, 199, 11, 0.01));
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.glass-card:hover {
    border-color: var(--accent-glow);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(252, 199, 11, 0.03));
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ---------- SECTIONS COMMON ---------- */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.02em;
}

.section-head p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

.label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ============================================================
   1. NAVBAR
   ============================================================ */
/* Promo Bar */
.promo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 40px;
    font-size: 0.8rem;
    font-weight: 700;
}

.promo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 252, 199, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 20px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.promo-limited {
    color: #ff4d4d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-text {
    color: rgba(255, 255, 255, 0.7);
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 900;
    padding: 0;
    /* Reset padding to handle promo bar */
    background: rgba(10, 10, 10, .5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, .92);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    /* Move padding here */
    transition: padding .35s var(--ease);
}

#navbar.scrolled .nav-wrap {
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: .5px;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 0 18px var(--accent-glow);
    transition: transform .3s var(--ease);
}

.logo:hover .logo-mark {
    transform: rotate(-8deg) scale(1.05);
}

.logo-word {
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: .92rem;
    font-weight: 800;
    color: var(--text-muted);
    transition: color .25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width .3s var(--ease);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-block;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 910;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s var(--ease);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 850;
    background: rgba(10, 10, 10, .97);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color .25s, transform .25s;
    letter-spacing: 1px;
}

.mobile-menu a:hover {
    color: #fff;
    transform: translateX(4px);
}

/* ============================================================
   2. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn svg {
    flex-shrink: 0;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: .85rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.btn-accent {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .25);
}

.btn-outline-light:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 2px solid rgba(252, 199, 11, .3);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.link-subtle {
    color: var(--text-muted);
    font-size: .88rem;
    transition: color .25s;
}

.link-subtle:hover {
    color: var(--accent);
}

/* Shine sweep */
.shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 40%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left .55s var(--ease);
}

.shine:hover::after {
    left: 130%;
}

/* ============================================================
   3. HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    z-index: 1;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
    filter: blur(120px);
    opacity: .35;
    pointer-events: none;
    animation: glow-pulse 6s ease-in-out infinite;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    pointer-events: none;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: .3;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: .5;
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Pill */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--accent-subtle);
    border: 1px solid rgba(252, 199, 11, .18);
    color: var(--accent);
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 28px;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 0 6px transparent;
    }
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.accent {
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust row */
.trust-row {
    margin-top: 48px;
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: .88rem;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin: 8px auto 0;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: .3;
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================================
   PARTNERS / TRUST STRIP
   ============================================================ */
.partners {
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.partners-label {
    text-align: center;
    color: rgba(255, 255, 255, .25);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.partners-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .2);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color .3s;
    white-space: nowrap;
}

.partner-logo:hover {
    color: rgba(255, 255, 255, .45);
}

/* ============================================================
   4. PROGRAM CARDS
   ============================================================ */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.prog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(252, 199, 11, .04), transparent 50%);
    pointer-events: none;
    transition: opacity .4s;
    opacity: 0;
}

.prog-card:hover .card-glow {
    opacity: 1;
}

.prog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .5);
}

.prog-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.prog-icon {
    font-size: 2rem;
}

.prog-badge {
    background: var(--accent);
    color: #000;
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.prog-card p {
    color: var(--text-muted);
    font-size: .93rem;
    margin-bottom: 16px;
    line-height: 1.65;
}

.prog-meta {
    margin-bottom: 20px;
    font-size: .88rem;
}

.prog-meta li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.prog-meta li strong {
    color: var(--accent);
    margin-right: 4px;
    font-size: .82rem;
    letter-spacing: .5px;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    flex: 1;
    max-width: 260px;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

.step-num {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-top: 60px;
    opacity: .3;
}

/* ============================================================
   5. QUIZ
   ============================================================ */
.quiz-box {
    max-width: 560px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.quiz-step {
    display: none;
    flex-direction: column;
    gap: 14px;
    animation: fadeSlide .4s var(--ease);
}

.quiz-step.active {
    display: flex;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-q {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.quiz-opt {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    color: var(--text);
    text-align: left;
    font-size: .95rem;
    transition: all .25s var(--ease);
}

.quiz-opt:hover {
    border-color: var(--accent);
    background: var(--accent-subtle);
    transform: translateX(4px);
}

.quiz-result-icon {
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.quiz-result-title {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.quiz-result-desc {
    color: var(--text-muted);
    font-size: .93rem;
    margin-bottom: 20px;
}

.quiz-result-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quiz-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border);
}

.quiz-bar {
    height: 100%;
    width: 0;
    background: var(--accent);
    transition: width .4s var(--ease);
    border-radius: 0 2px 2px 0;
}

/* ============================================================
   6. WHY US
   ============================================================ */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.diff-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}

.diff-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

.diff-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-subtle);
    border: 1px solid rgba(252, 199, 11, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform .3s var(--ease);
}

.diff-card:hover .diff-icon-wrap {
    transform: scale(1.08);
}

.diff-icon {
    font-size: 1.6rem;
}

.diff-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.diff-card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.65;
}

/* ============================================================
   7. STATS
   ============================================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    margin-bottom: 60px;
}

.stat {
    padding: 24px;
}

.stat-num {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--accent);
    display: inline;
}

.stat-suffix {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--accent);
}

.stat-lbl {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: .93rem;
}

/* Case study */
.case-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.case-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.case-inner {
    padding: 40px 48px 40px 56px;
}

.case-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.case-block blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    margin-bottom: 16px;
}

.case-block cite {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-style: normal;
}

.case-block cite strong {
    color: #fff;
    font-size: .95rem;
}

.case-block cite span {
    color: var(--text-muted);
    font-size: .85rem;
}

/* ============================================================
   8. TESTIMONIALS CAROUSEL
   ============================================================ */
.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform .5s var(--ease);
}

.testi-card {
    min-width: 100%;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 24px;
    line-height: 1.75;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-subtle);
    border: 2px solid rgba(252, 199, 11, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: var(--accent);
    flex-shrink: 0;
}

.testi-author div:last-child {
    display: flex;
    flex-direction: column;
}

.testi-author strong {
    color: #fff;
    font-size: .93rem;
}

.testi-author span {
    color: var(--text-muted);
    font-size: .82rem;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.car-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}

.car-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.car-dots {
    display: flex;
    gap: 8px;
}

.car-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    transition: all .3s;
    border: none;
    cursor: pointer;
}

.car-dot.active {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

/* ============================================================
   9. PRICING
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.price-card .card-glow {
    opacity: 0;
}

.price-card:hover .card-glow {
    opacity: 1;
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(252, 199, 11, .12);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.price-wrap {
    margin-bottom: 24px;
}

.price-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.price {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -.03em;
}

.price-note {
    color: var(--text-muted);
    font-size: .85rem;
    margin-top: 12px;
}

.price-card ul {
    margin-bottom: 32px;
    flex: 1;
}

.price-card li {
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
}

.price-card li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 10px;
    font-weight: 700;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: .93rem;
}

.pricing-guarantee strong {
    color: var(--accent);
}

/* ============================================================
   10. FAQ ACCORDION
   ============================================================ */
.acc-item {
    border-bottom: 1px solid var(--border);
}

.acc-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .25s;
    gap: 16px;
}

.acc-btn:hover {
    color: var(--accent);
}

.acc-arrow {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform .35s var(--ease);
    flex-shrink: 0;
}

.acc-item.open .acc-arrow {
    transform: rotate(45deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
}

.acc-item.open .acc-body {
    max-height: 300px;
    padding-bottom: 20px;
}

.acc-body p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.75;
}

/* ============================================================
   11. CONTACT / CTA
   ============================================================ */
.section-cta {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: 100px 0 80px;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font);
    font-size: .95rem;
    transition: border-color .25s, background .25s, box-shadow .25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 3px rgba(252, 199, 11, .08);
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: #e74c3c;
}

.form-error {
    display: none;
    color: #e74c3c;
    font-size: .78rem;
    margin-top: 4px;
}

.form-group input.invalid~.form-error,
.form-group select.invalid~.form-error {
    display: block;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: .88rem;
}

.form-note a {
    color: var(--accent);
    font-weight: 600;
    transition: color .25s;
}

.form-note a:hover {
    color: #fff;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
footer {
    background: #050505;
    padding-top: 80px;
    margin-top: 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: .85rem;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 10px;
    transition: color .25s, transform .25s;
}

.footer-col a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all .25s;
}

.social-row a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
    transform: translateY(-2px);
}

.social-row a svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .25);
    font-size: .82rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, .25);
    transition: color .25s;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ============================================================
   13. BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--accent);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 800;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s, border-color .25s;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* ============================================================
   14. REVEAL / FADE ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.fade-in.d1 {
    transition-delay: .15s;
}

.fade-in.d2 {
    transition-delay: .3s;
}

.fade-in.d3 {
    transition-delay: .45s;
}

.fade-in.d4 {
    transition-delay: .6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
[data-reveal]:nth-child(1) {
    transition-delay: 0s;
}

[data-reveal]:nth-child(2) {
    transition-delay: .08s;
}

[data-reveal]:nth-child(3) {
    transition-delay: .16s;
}

[data-reveal]:nth-child(4) {
    transition-delay: .24s;
}

[data-reveal]:nth-child(5) {
    transition-delay: .32s;
}

[data-reveal]:nth-child(6) {
    transition-delay: .4s;
}

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .steps-row {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-wrap {
        flex-wrap: wrap;
        padding: 0 0 12px !important;
    }

    .promo-bar {
        order: -1;
        width: calc(100% + 40px);
        margin: 0 -20px 12px;
        flex: none;
        background: #000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 8px 0;
        font-size: 0.75rem;
    }

    .promo-inner {
        background: none;
        border: none;
        padding: 0;
        backdrop-filter: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cursor-glow {
        display: none;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 64px 0;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .trust-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .partners-track {
        gap: 24px;
    }

    .partner-logo {
        font-size: .9rem;
    }

    .case-inner {
        padding: 28px;
    }

    .quiz-box {
        padding: 28px;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
    }

    .scroll-hint {
        display: none;
    }

    .steps-row {
        gap: 12px;
    }

    .step-card {
        padding: 24px 20px;
    }
}

/* ============================================================
   16. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        transition-duration: 0s !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in,
    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .hero-glow {
        animation: none;
        opacity: .3;
    }

    .cursor-glow {
        display: none;
    }

    .loader {
        display: none;
    }
}

/* ============================================================
   17. FOCUS STATES (ACCESSIBILITY)
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.btn:focus-visible {
    outline-offset: 4px;
}

/* ---------- LOGO ICON ---------- */
.logo-icon {
    flex-shrink: 0;
}

.loader-inner .logo-icon {
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 8px var(--accent-glow));
    }

    50% {
        opacity: .6;
        filter: drop-shadow(0 0 16px var(--accent-glow));
    }
}

/* ---------- NAV RIGHT ---------- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ---------- LANGUAGE SWITCHER ---------- */
.lang-switch {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: .85rem;
    font-family: var(--font);
    transition: all .2s var(--ease);
}

.lang-btn:hover {
    border-color: var(--border-hover);
    color: var(--text);
    background: var(--surface-hover);
}

.lang-btn svg {
    opacity: .6;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all .2s var(--ease);
    z-index: 200;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .6);
}

.lang-switch.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: .85rem;
    font-family: var(--font);
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    transition: all .15s var(--ease);
}

.lang-option:hover {
    background: var(--surface-hover);
    color: var(--text);
}

.lang-option.active {
    color: var(--accent);
    font-weight: 600;
}

/* Hide lang switcher on very small screens — show in mobile menu instead */
@media (max-width: 640px) {
    .lang-switch {
        order: -1;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: .8rem;
    }
}

/* ---------- RIFSTOCK EQUIPMENT BANNER ---------- */
.rifstock-banner {
    padding: 2rem 0;
}

.rifstock-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(252, 199, 11, .06), rgba(252, 199, 11, .02));
    border: 1px solid rgba(252, 199, 11, .2);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.rifstock-inner:hover {
    border-color: rgba(252, 199, 11, .4);
    box-shadow: 0 0 30px rgba(252, 199, 11, .08);
}

.rifstock-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(252, 199, 11, .08), transparent 60%);
    pointer-events: none;
}

.rifstock-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(252, 199, 11, .1);
    border: 1px solid rgba(252, 199, 11, .2);
    border-radius: 14px;
}

.rifstock-content {
    flex: 1;
    min-width: 0;
}

.rifstock-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem;
}

.rifstock-content p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.rifstock-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    padding: .8rem 1.6rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .rifstock-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .rifstock-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- TOAST NOTIFICATIONS ---------- */
.riform-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 500;
    color: #fff;
    z-index: 10000;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .4s var(--ease), opacity .4s var(--ease);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    max-width: 420px;
}

.riform-toast.visible {
    transform: translateY(0);
    opacity: 1;
}

.riform-toast--success {
    background: linear-gradient(135deg, #1a7a3a, #15632d);
    border: 1px solid rgba(34, 197, 94, .3);
}

.riform-toast--error {
    background: linear-gradient(135deg, #9a2020, #7a1a1a);
    border: 1px solid rgba(239, 68, 68, .3);
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: .85rem;
    flex-shrink: 0;
}

.riform-toast--success .toast-icon {
    background: rgba(34, 197, 94, .25);
}

.riform-toast--error .toast-icon {
    background: rgba(239, 68, 68, .25);
}

.toast-msg {
    line-height: 1.4;
}

@media (max-width: 768px) {
    .riform-toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* ============================================================
   21. MODALS (Secure Your Spot)
   ============================================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transform: translateY(30px);
    transition: transform .4s var(--ease);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
}

.modal.open .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color .2s;
    z-index: 10;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-header p {
    color: var(--text-muted);
    font-size: .95rem;
}

.modal-form .form-group {
    margin-bottom: 16px;
}

.modal-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font);
    font-size: .95rem;
    transition: all .25s;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 4px rgba(252, 199, 11, .1);
}

@media (max-width: 480px) {
    .modal-container {
        padding: 30px 20px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

/* ---------- ABOUT PAGE ---------- */
.hero-about {
    min-height: 60vh;
}

.legal-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(252, 199, 11, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.legal-item label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.legal-item span {
    color: var(--text);
    font-weight: 600;
    font-family: monospace;
    font-size: 1.1rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(252, 199, 11, 0.2);
    margin: 3rem 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(252, 199, 11, 0.5);
}


/* ---------- ANIMATION DELAYS ---------- */
.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

/* ---------- ABOUT PAGE COMPONENTS ---------- */

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: -3rem;
    /* Overlap hero slightly if needed, or just standard spacing */
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: transform .3s var(--ease), border-color .3s, background .3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background: var(--surface-hover);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(252, 199, 11, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Enhanced Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
    margin: 4rem 0;
}

.timeline-line {
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(252, 199, 11, 0.1));
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 15px rgba(252, 199, 11, 0.4);
}

.timeline-dot::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--accent);
    border-radius: 50%;
}

.timeline-date {
    display: inline-block;
    background: rgba(252, 199, 11, .1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timeline-date {
    margin-bottom: 0 !important;
}

.timeline-lang-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.timeline-lang-badge svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.timeline-item p {
    color: var(--text-muted);
    max-width: 600px;
}

/* Premium CTA */
.cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.premium-cta {
    background: radial-gradient(circle at top right, rgba(252, 199, 11, .08), transparent 60%),
        linear-gradient(to bottom, var(--surface), var(--bg-alt));
    border: 1px solid var(--border);
    padding: 4rem 2rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.premium-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(252, 199, 11, .15);
    border-color: var(--border-hover);
}

.premium-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FCC70B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.cta-subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.premium-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.premium-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 2;
}

.premium-cta .btn {
    position: relative;
    z-index: 2;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================================
   22. BLOG & ARTICLES
   ============================================================ */
.blog-header {
    padding: 8rem 0 4rem;
    background: radial-gradient(circle at 20% 50%, rgba(252, 199, 11, 0.05), transparent 40%);
    border-bottom: 1px solid var(--border);
    margin-bottom: 4rem;
}

.blog-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 6rem;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    background: var(--surface-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-cat {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

/* ============================================================
   23. CERTIFICATE VERIFICATION
   ============================================================ */
.verify-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(252, 199, 11, 0.1);
    border-radius: 32px;
    padding: 3rem;
    width: 100%;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(252, 199, 11, 0.05), transparent 60%);
    pointer-events: none;
}

.verify-input {
    width: 100%;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 1.5rem;
    color: #fff;
    font-family: var(--font);
    font-size: 1.1rem;
    transition: all 0.3s var(--ease);
}

.verify-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(252, 199, 11, 0.03);
    box-shadow: 0 0 0 4px rgba(252, 199, 11, 0.1);
}