/* ============ TOKENS ============ */
:root {
    --bg: #09090B;
    --bg-2: #121218;
    --surface: rgba(58, 136, 255, 0.06);
    --surface-2: rgba(58, 136, 255, 0.1);
    --border: rgba(58, 136, 255, 0.12);
    --border-strong: rgba(58, 136, 255, 0.2);
    --violet: #3A88FF;
    --violet-soft: #6BA3FF;
    --orange: #FF8C00;
    --text: #F5F7FB;
    --muted: #9BA3AF;
    --muted-2: #7A8291;
    --grad: #3A88FF;
    --radius: 16px;
    --nav-h: 64px;
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection { background: rgba(88, 166, 255, 0.25); color: #e6edf3; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #30363D; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #444C56; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img, video { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { position: relative; scroll-margin-top: calc(var(--nav-h) + 24px); }

/* ============ SCROLL PROGRESS ============ */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: #3A88FF;
    z-index: 3000;
    box-shadow: 0 0 12px rgba(58, 136, 255, 0.5);
}

/* ============ REVEAL ============ */
[data-reveal] {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
    transition-delay: var(--d, 0s);
}
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(0.92) translateY(22px); }
[data-reveal="blur"] { filter: blur(10px); transform: translateY(20px); }
[data-reveal].in { opacity: 1; transform: none; filter: none; }

/* word-by-word title reveal */
.sec-title .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.sec-title .w > span {
    display: inline-block; transform: translateY(115%);
    transition: transform 0.85s var(--ease);
    transition-delay: calc(var(--wi, 0) * 55ms);
}
.sec-title.in .w > span { transform: none; }

/* ============ NAV ============ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
    z-index: 1000; display: flex; align-items: center;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom-color: rgba(88, 166, 255, 0.2);
}
.nav-inner {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
    position: relative; padding: 8px 14px; border-radius: 8px;
    font-size: 0.9rem; font-weight: 500; color: var(--muted);
    transition: color 0.3s ease, background 0.25s ease;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px;
    background: var(--violet); border-radius: 2px; transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* ============ BUTTONS ============ */
.btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px 28px; border-radius: 10px; border: none; cursor: pointer;
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.015em;
    transition: var(--transition);
    will-change: transform, box-shadow;
}
.btn svg { transition: transform 0.3s var(--ease), stroke-width 0.2s ease; width: 16px; height: 16px; }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

.btn-primary {
    color: #fff;
    background: #3A88FF;
    box-shadow: 0 12px 32px rgba(58, 136, 255, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.15);
    overflow: hidden;
    isolation: isolate;
    font-weight: 700;
    position: relative;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-120%);
    opacity: 0;
}
.btn-primary:hover {
    transform: translateY(-3px);
    background: #4A96FF;
    box-shadow: 0 16px 48px rgba(58, 136, 255, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}
.btn-primary:hover::before {
    transform: translateX(120%);
    transition: transform 0.6s ease;
    opacity: 1;
}
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
    color: var(--text);
    background: rgba(58, 136, 255, 0.08);
    border: 1px solid rgba(58, 136, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(58, 136, 255, 0.12);
    border-color: rgba(58, 136, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(58, 136, 255, 0.1);
}

.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ============ HAMBURGER ============ */
.hamburger {
    display: none; width: 42px; height: 42px; border-radius: 12px;
    border: 1px solid var(--border-strong); background: var(--surface);
    cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 999;
    background: rgba(15, 17, 23, 0.95); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 28px; display: none; flex-direction: column; gap: 4px;
}
body.menu-open .mobile-menu { display: flex; }
.mobile-menu a { padding: 14px 12px; border-radius: 12px; font-weight: 600; font-size: 1.05rem; }
.mobile-menu a:hover { background: var(--surface-2); }

/* ============ HERO ============ */
.hero {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    min-height: calc(100vh - var(--nav-h));
    padding: 0;
    overflow: hidden;
}
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.5; z-index: 0;
    transform: translateZ(0); filter: brightness(0.9) contrast(0.95);
    will-change: transform;
}
.hero-content { will-change: transform, opacity; margin-top: 20px; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(15, 17, 23, 0.3) 70%, rgba(15, 17, 23, 0.6) 100%);
}
.hero-grid {
    position: absolute; inset: 0; z-index: 1; opacity: 0.4;
    background-image:
        linear-gradient(rgba(88, 166, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 166, 255, 0.1) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
}
.noise {
    position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner { position: relative; z-index: 3; max-width: 1200px; width: 90%; display: grid; grid-template-columns: minmax(0, 640px) 1fr; gap: 48px; align-items: center; }

.hero h1 {
    margin: 0 0 8px;
    font-size: clamp(2.3rem, 4.8vw, 3.7rem);
    line-height: 1.06; font-weight: 700; letter-spacing: -0.03em;
}
.hero h1 .grad {
    background: var(--grad); background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    animation: grad-shift 5s ease-in-out infinite;
    filter: drop-shadow(0 0 28px rgba(139, 92, 246, 0.45));
}
@keyframes grad-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero h1 .hw { display: inline-block; opacity: 0; will-change: transform, opacity; }
.hero h1 .hw-1 { animation: word-left 0.95s var(--ease) 0.2s forwards; }
.hero h1 .hw-2 { animation: word-right 0.95s var(--ease) 0.45s forwards; }
.hero h1 .hw-3 { animation: word-up 0.95s var(--ease) 0.7s forwards; }
.hero h1 .hw-4 { animation: word-pop 1.1s var(--ease) 0.85s forwards; }
@keyframes word-left {
    from { opacity: 0; transform: translateX(-90px); }
    to { opacity: 1; transform: none; }
}
@keyframes word-right {
    from { opacity: 0; transform: translateX(90px); }
    to { opacity: 1; transform: none; }
}
@keyframes word-up {
    from { opacity: 0; transform: translateY(70px); }
    to { opacity: 1; transform: none; }
}
@keyframes word-pop {
    from { opacity: 0; transform: translateY(-70px) scale(0.55); }
    60% { opacity: 1; transform: translateY(6px) scale(1.06); }
    to { opacity: 1; transform: none; }
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 500px;
    margin-top: 26px;
    line-height: 1.7;
}
.hero-sub strong {
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.hero-sub .nc {
    color: #FF8C00;
    font-weight: 700;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.08), rgba(58, 136, 255, 0.04));
    border: 1px solid rgba(58, 136, 255, 0.2);
    font-size: 0.88rem;
    font-weight: 600;
    color: #E8ECFF;
    transition: var(--transition);
}
.pill:hover {
    border-color: rgba(58, 136, 255, 0.4);
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.12), rgba(58, 136, 255, 0.08));
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(58, 136, 255, 0.12);
}
.pill svg {
    color: #6BA3FF;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.event-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.06), rgba(58, 136, 255, 0.03));
    border: 1px solid rgba(58, 136, 255, 0.15);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.event-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 22px;
    transition: var(--transition);
}
.event-item:hover {
    background: rgba(58, 136, 255, 0.05);
}
.event-item + .event-item {
    border-left: 1px solid rgba(58, 136, 255, 0.1);
}
.event-ic {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.15), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(58, 136, 255, 0.25);
    color: #6BA3FF;
    transition: var(--transition);
}
.event-item:hover .event-ic {
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.2), rgba(255, 140, 0, 0.15));
    transform: scale(1.08);
}
.event-item h4 {
    font-family: var(--font-body);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 4px;
}
.event-item p {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.hero-tagline { margin-top: 14px; display: flex; align-items: center; gap: 14px; color: var(--muted-2); font-size: 0.9rem; }
.hero-tagline em { font-family: var(--font-display); font-style: normal; color: var(--text); font-weight: 600; }
.hero-tagline .sep { width: 22px; height: 1px; background: var(--border-strong); }

.ai-note {
    margin-top: 10px; width: fit-content;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; border-radius: 100px;
    border: 1px dashed rgba(167, 139, 250, 0.45);
    background: rgba(139, 92, 246, 0.08);
    font-size: 0.85rem; color: var(--muted);
}
.ai-note b {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.ai-note svg { color: var(--violet-soft); animation: sparkle-spin 5s linear infinite; }
@keyframes sparkle-spin {
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg); }
}

/* floating chips (right side) */
.hero-float { position: relative; height: 100%; min-height: 420px; }
.chip {
    position: absolute; padding: 16px 20px; border-radius: 16px;
    background: rgba(22, 27, 34, 0.9); border: 1px solid var(--border-strong);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    animation: float-y 6s ease-in-out infinite;
}
.chip-1 { top: 10%; right: 12%; animation-delay: 0s; }
.chip-3 { bottom: 22%; right: 8%; animation-delay: -1.5s; }
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.chip-title { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; font-weight: 600; }
.chip .bar { margin-top: 10px; width: 150px; height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.chip .bar i { display: block; height: 100%; width: 40%; border-radius: 4px; background: var(--grad); animation: load 2.6s ease-in-out infinite; }
@keyframes load { 0% { width: 12%; } 55% { width: 82%; } 100% { width: 12%; } }
.chip .check { width: 26px; height: 26px; border-radius: 50%; background: #22C55E; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 0 16px rgba(34, 197, 94, 0.5); }
.chip-code { font-family: monospace; font-size: 1.05rem; color: var(--violet-soft); letter-spacing: 0.05em; }

.scroll-cue {
    position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 3;
    width: 26px; height: 42px; border-radius: 16px; border: 1.5px solid var(--border-strong);
    display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue i { width: 3px; height: 8px; border-radius: 3px; background: var(--violet-soft); animation: cue 1.8s ease infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ============ SECTION HEADERS ============ */
.sec-head {
    max-width: 760px;
    margin-bottom: 64px;
}
.sec-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6BA3FF;
    margin-bottom: 20px;
}
.eyebrow svg { opacity: 0.8; }
.eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--grad);
    border-radius: 2px;
}
.sec-head.center .eyebrow::after {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--grad);
    border-radius: 2px;
}
.sec-title {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.sec-title span {
    display: inline-block;
}
.sec-title .grad {
    background: linear-gradient(135deg, #3A88FF 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sec-sub {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 580px;
}

/* ============ LEARN (BENTO) ============ */
.learn { padding: 120px 0; }
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.bento-card {
    position: relative; padding: 36px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.05), rgba(58, 136, 255, 0.03));
    border: 1px solid rgba(58, 136, 255, 0.15);
    overflow: hidden; isolation: isolate;
    transition: var(--transition), border-color 0.35s ease, background 0.35s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(58, 136, 255, 0.4);
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.08), rgba(58, 136, 255, 0.05));
    box-shadow: 0 16px 48px rgba(58, 136, 255, 0.15);
}
/* spotlight */
.spot::before {
    content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
    background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 50%), rgba(58, 136, 255, 0.12), transparent 45%);
    transition: opacity 0.4s ease;
}
.spot:hover::before { opacity: 1; }

.bento-num {
    position: absolute; top: 24px; right: 28px;
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
    color: rgba(58, 136, 255, 0.4); letter-spacing: 0.1em;
}
.bento-ic {
    width: 60px; height: 60px; border-radius: 14px; margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.15), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(58, 136, 255, 0.25);
    color: #6BA3FF;
    transition: var(--transition);
}
.bento-card:hover .bento-ic { transform: scale(1.12) rotate(-6deg); }
.bento-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.bento-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.bento-line {
    margin-top: 26px;
    width: 48px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad);
    opacity: 0.4;
    transition: width 0.5s var(--ease), opacity 0.4s;
}
.bento-card:hover .bento-line { width: 80px; opacity: 1; }

.learn-side-badge {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 20px; border-radius: 100px;
    background: var(--surface); border: 1px solid var(--border);
}
.learn-side-badge .ic { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(139, 92, 246, 0.16); color: var(--violet-soft); }
.learn-side-badge b { display: block; font-size: 0.9rem; }
.learn-side-badge span { font-size: 0.8rem; color: var(--muted); }

/* ============ ABOUT ============ */
.about { padding: 110px 0; background: #161B22; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about p.lead { color: var(--muted); margin-bottom: 28px; font-size: 1.02rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; align-items: center; gap: 14px; font-weight: 500; font-size: 0.98rem; }
.check-ic {
    width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(255, 122, 69, 0.18));
    border: 1px solid rgba(139, 92, 246, 0.4); color: var(--violet-soft);
}

.trainer-card {
    position: relative; padding: 40px; border-radius: 20px;
    border: 1px solid rgba(58, 136, 255, 0.2);
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.06), rgba(255, 140, 0, 0.03));
    box-shadow: 0 20px 60px rgba(58, 136, 255, 0.1);
    transition: var(--transition);
}
.trainer-card:hover {
    border-color: rgba(58, 136, 255, 0.3);
    box-shadow: 0 28px 80px rgba(58, 136, 255, 0.15);
    transform: translateY(-4px);
}
.trainer-glow {
    position: absolute; top: -80px; right: -60px; width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 136, 255, 0.2), transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}
.trainer-top { display: flex; gap: 24px; align-items: center; margin-bottom: 24px; }
.avatar-ring {
    width: 120px; height: 120px; flex-shrink: 0; border-radius: 50%; padding: 3px;
    background: var(--grad);
    box-shadow: 0 0 40px rgba(58, 136, 255, 0.3);
}
.avatar-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; border: 4px solid #09090B; }
.trainer-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #6BA3FF; margin-bottom: 8px; }
.trainer-card h3 { font-size: 1.55rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.02em; }
.trainer-role { color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.trainer-bio { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.socials { display: flex; gap: 10px; }
.soc {
    width: 44px; height: 44px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(58, 136, 255, 0.08);
    border: 1px solid rgba(58, 136, 255, 0.2);
    color: var(--muted);
    transition: var(--transition);
}
.soc:hover {
    color: #fff;
    border-color: #6BA3FF;
    background: rgba(58, 136, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(58, 136, 255, 0.15);
}

/* ============ STATS ============ */
.stats {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 18px;
    border: 1px solid rgba(58, 136, 255, 0.15);
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.03), rgba(58, 136, 255, 0.01));
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.stat {
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    border-left: 1px solid rgba(58, 136, 255, 0.1);
}
.stat:first-child { border-left: none; }
.stat:hover { background: rgba(58, 136, 255, 0.08); }
.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #3A88FF 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}
.stat-label { margin-top: 14px; font-size: 0.87rem; color: var(--muted); font-weight: 600; letter-spacing: 0.01em; }

/* ============ AGENDA ============ */
.agenda {
    padding: 120px 0;
    background: linear-gradient(180deg, #09090B 0%, #121218 40%, #09090B 100%);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 0;
}
.timeline::before, .timeline::after {
    content: '';
    position: absolute;
    left: 48px;
    top: 12px;
    bottom: 8px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, #3A88FF, #FF8C00);
}
.timeline::after {
    opacity: 0.15;
}
.timeline::before {
    opacity: 1;
    z-index: 1;
    transform-origin: top;
    transform: scaleY(var(--tlp, 0));
    background: linear-gradient(180deg, #3A88FF, #FF8C00);
    box-shadow: 0 0 16px rgba(58, 136, 255, 0.3);
}
.tl-item {
    position: relative;
    display: flex;
    gap: 32px;
    padding: 0 0 48px 0;
    margin-left: 0;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    min-height: 38px;
    min-width: 38px;
    margin-top: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.1), rgba(58, 136, 255, 0.05));
    border: 2.5px solid #3A88FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.tl-dot::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--grad);
}
.tl-item.in .tl-dot {
    box-shadow: 0 0 28px rgba(58, 136, 255, 0.6), inset 0 0 12px rgba(58, 136, 255, 0.2);
    border-color: #6BA3FF;
}
.tl-time {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #6BA3FF;
    background: rgba(58, 136, 255, 0.1);
    border: 1px solid rgba(58, 136, 255, 0.25);
}
.tl-body {
    flex: 1;
    padding: 26px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.04), rgba(58, 136, 255, 0.02));
    border: 1px solid rgba(58, 136, 255, 0.12);
    transition: var(--transition), border-color 0.35s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.tl-body:hover {
    border-color: rgba(58, 136, 255, 0.3);
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.08), rgba(58, 136, 255, 0.05));
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(58, 136, 255, 0.1);
}
.tl-body h4 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.tl-body p {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

/* ============ FAQ ============ */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, #09090B 0%, #121218 50%, #09090B 100%);
    border-top: 1px solid rgba(58, 136, 255, 0.1);
    border-bottom: 1px solid rgba(58, 136, 255, 0.1);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(58, 136, 255, 0.12);
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.04), rgba(58, 136, 255, 0.02));
    overflow: hidden;
    transition: var(--transition), border-color 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.faq-item:hover {
    border-color: rgba(58, 136, 255, 0.2);
    box-shadow: 0 8px 24px rgba(58, 136, 255, 0.08);
}
.faq-item.open {
    border-color: rgba(58, 136, 255, 0.35);
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.08), rgba(58, 136, 255, 0.05));
    box-shadow: 0 12px 32px rgba(58, 136, 255, 0.12);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
}
.faq-q .chev {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(58, 136, 255, 0.2);
    color: var(--muted);
    background: rgba(58, 136, 255, 0.05);
    transition: var(--transition);
}
.faq-item.open .chev {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #3A88FF, #FF8C00);
    border-color: transparent;
    color: #fff;
}
.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s var(--ease);
}
.faq-a-inner { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
    padding: 0 28px 26px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

/* ============ CTA ============ */
.cta-new {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.cta-new .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(88, 166, 255, 0.15);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 100px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #79C0FF;
}

.badge-icon {
    font-size: 1.1rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3A88FF 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.cta-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #8B949E;
    margin-bottom: 32px;
    max-width: 540px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #E6EDF3;
}

.benefit svg {
    color: #22C55E;
    flex-shrink: 0;
}

.cta-btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
}

.cta-visual {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(88, 166, 255, 0.2);
}

.cta-video-display {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.15) 0%, rgba(255, 149, 0, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

/* ============ CTA MOBILE ============ */
@media (max-width: 1024px) {
    .cta-new .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cta-visual {
        height: 300px;
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .cta-new {
        padding: 80px 0 60px;
    }

    .cta-new .container {
        gap: 40px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-desc {
        font-size: 0.95rem;
    }

    .cta-visual {
        height: 250px;
    }
}

/* ============ FOOTER ============ */
footer {
    padding: 90px 0 40px;
    border-top: 1px solid rgba(58, 136, 255, 0.1);
    background: linear-gradient(180deg, #09090B 0%, #0F1218 100%);
}
@media (max-width: 640px) {
    footer { padding: 70px 0 32px; }
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr;
    gap: 52px;
    margin-bottom: 60px;
}
@media (max-width: 640px) {
    .foot-grid { margin-bottom: 32px; gap: 36px; }
}
.foot-brand img {
    height: 38px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.95;
}
.foot-brand p {
    color: var(--muted);
    font-size: 0.93rem;
    max-width: 300px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.foot-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7A8291;
    margin-bottom: 22px;
}
.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.foot-links a {
    color: var(--muted);
    font-size: 0.93rem;
    font-weight: 500;
    transition: var(--transition);
}
.foot-links a:hover {
    color: var(--text);
    padding-left: 6px;
}
.foot-links .with-ic {
    display: flex;
    align-items: center;
    gap: 10px;
}
.foot-links .with-ic svg {
    flex-shrink: 0;
    color: #6BA3FF;
}

.newsletter {
    display: flex;
    margin-top: 6px;
    border-radius: 12px;
    border: 1px solid rgba(58, 136, 255, 0.2);
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.06), rgba(58, 136, 255, 0.03));
    overflow: hidden;
    transition: var(--transition);
}
.newsletter:focus-within {
    border-color: rgba(58, 136, 255, 0.35);
    box-shadow: 0 8px 28px rgba(58, 136, 255, 0.12);
}
.newsletter input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 0.91rem;
    font-family: inherit;
}
.newsletter input::placeholder {
    color: var(--muted-2);
}
.newsletter button {
    padding: 0 20px;
    border: none;
    cursor: pointer;
    color: #fff;
    background: #3A88FF;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.newsletter button:hover {
    background: #4A96FF;
    box-shadow: 0 8px 20px rgba(58, 136, 255, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.foot-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(58, 136, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    color: #7A8291;
    font-size: 0.85rem;
}
@media (max-width: 640px) {
    .foot-bottom { padding-top: 24px; gap: 12px; font-size: 0.75rem; }
}
.foot-bottom a {
    color: #6BA3FF;
    font-weight: 500;
    transition: var(--transition);
}
.foot-bottom a:hover {
    color: #E8ECFF;
}

/* ============ MODAL ============ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.modal.active { opacity: 1; visibility: visible; }
.modal-content {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: auto;
    border-radius: 24px;
    padding: 40px 42px;
    overflow: hidden;
    border: 1px solid rgba(58, 136, 255, 0.25);
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.95), rgba(9, 9, 11, 0.95));
    box-shadow: 0 56px 140px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(58, 136, 255, 0.1);
    transform: translateY(32px) scale(0.97);
    transition: transform 0.45s var(--ease);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.modal.active .modal-content { transform: none; }

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(58, 136, 255, 0.08);
    border: 1px solid rgba(58, 136, 255, 0.2);
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.modal-close:hover {
    color: #fff;
    background: rgba(255, 80, 80, 0.15);
    border-color: rgba(255, 80, 80, 0.35);
    transform: rotate(90deg);
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 10px;
    margin-bottom: 16px;
    background: rgba(58, 136, 255, 0.1);
    border: 1px solid rgba(58, 136, 255, 0.25);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6BA3FF;
}
.modal-header h2 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.modal-header > p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.87rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #F5F7FB;
    letter-spacing: -0.01em;
}
.req { color: #FF8C00; font-weight: 700; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.08), rgba(58, 136, 255, 0.04));
    border: 1px solid rgba(58, 136, 255, 0.2);
    color: #F5F7FB;
    font-family: inherit;
    font-size: 0.94rem;
    transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--muted-2);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #6BA3FF;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.12), rgba(58, 136, 255, 0.08));
    box-shadow: 0 0 0 4px rgba(58, 136, 255, 0.15);
}
.form-group select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A78BFA' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option { background: #12121e; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 74px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-note { text-align: center; margin-top: 14px; font-size: 0.8rem; color: var(--muted-2); }

/* ============ PAGE TEMPLATE ============ */
.page-section {
    padding: 140px 0 100px;
    min-height: calc(100vh - var(--nav-h));
    background: linear-gradient(180deg, #09090B 0%, #0F1218 50%, #09090B 100%);
}

.page-article {
    max-width: 920px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(58, 136, 255, 0.1);
}

.page-header-content {
    animation: slideUp 0.6s var(--ease) forwards;
}

.page-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #3A88FF 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 720px;
    animation: slideUp 0.6s var(--ease) 0.1s forwards;
    opacity: 0;
}

.page-content {
    animation: slideUp 0.6s var(--ease) 0.2s forwards;
    opacity: 0;
}

.page-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #F5F7FB;
    letter-spacing: -0.01em;
}

.page-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #F5F7FB;
    letter-spacing: -0.01em;
}

.page-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #F5F7FB;
}

.page-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.page-content ul,
.page-content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.page-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.page-content a {
    color: #6BA3FF;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px solid rgba(107, 163, 255, 0.3);
}

.page-content a:hover {
    color: #E8ECFF;
    border-bottom-color: #6BA3FF;
}

.page-content strong {
    color: #F5F7FB;
    font-weight: 700;
}

.page-content em {
    color: #F5F7FB;
    font-style: italic;
}

.page-content blockquote {
    padding: 24px 28px;
    margin: 32px 0;
    border-left: 4px solid #3A88FF;
    background: rgba(58, 136, 255, 0.08);
    border-radius: 8px;
    color: var(--text);
    font-style: italic;
}

.page-content code {
    background: rgba(58, 136, 255, 0.12);
    color: #FF8C00;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.page-content pre {
    background: rgba(58, 136, 255, 0.06);
    border: 1px solid rgba(58, 136, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
}

.page-content pre code {
    background: none;
    color: #6BA3FF;
    padding: 0;
}

.page-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(58, 136, 255, 0.1);
}

.page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    background: rgba(58, 136, 255, 0.1);
    border: 1px solid rgba(58, 136, 255, 0.25);
    border-radius: 8px;
    color: #6BA3FF;
    font-weight: 600;
    transition: var(--transition);
}

.page-number:hover,
.page-number.current {
    background: #3A88FF;
    border-color: #3A88FF;
    color: #fff;
}

.page-footer {
    margin-top: 80px;
    padding-top: 40px;
    animation: slideUp 0.6s var(--ease) 0.3s forwards;
    opacity: 0;
}

.page-footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58, 136, 255, 0.3), transparent);
    margin-bottom: 28px;
}

.page-footer-text {
    font-size: 0.95rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
}

.footer-link {
    color: #6BA3FF;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(107, 163, 255, 0.3);
}

.footer-link:hover {
    color: #E8ECFF;
    border-bottom-color: #6BA3FF;
}

/* ============ PAGE RESPONSIVE ============ */
@media (max-width: 1024px) {
    .page-section {
        padding: 120px 0 80px;
    }

    .page-header {
        margin-bottom: 60px;
        padding-bottom: 40px;
    }

    .page-title {
        font-size: 2.4rem;
    }

    .page-content h2 {
        font-size: 1.6rem;
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .page-section {
        padding: 100px 0 60px;
    }

    .page-header {
        margin-bottom: 50px;
        padding-bottom: 30px;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .page-content h2 {
        font-size: 1.4rem;
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .page-content h3 {
        font-size: 1.1rem;
        margin-top: 24px;
    }

    .page-content p,
    .page-content li {
        font-size: 0.95rem;
    }

    .page-footer {
        margin-top: 60px;
    }
}

/* ============ SCROLL TO TOP BUTTON ============ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFB300;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    z-index: 999;
    box-shadow: 0 12px 32px rgba(255, 179, 0, 0.4);
    transition: var(--transition);
}

.scroll-to-top.show {
    display: flex;
    animation: slideUp 0.3s var(--ease);
}

.scroll-to-top:hover {
    transform: translateY(-6px);
    background: #FFC107;
    box-shadow: 0 16px 48px rgba(255, 179, 0, 0.5);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

/* ============ FLOATING CTA BUTTON ============ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #FFB300;
    border-radius: 12px;
    padding: 14px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(255, 179, 0, 0.4);
    transition: var(--transition);
    z-index: 998;
    display: none;
    gap: 8px;
    align-items: center;
}

.floating-cta.show {
    display: flex;
    animation: slideUp 0.4s var(--ease);
}

.floating-cta:hover {
    transform: translateY(-4px);
    background: #FFC107;
    box-shadow: 0 16px 48px rgba(255, 179, 0, 0.5);
}

.floating-cta svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .scroll-to-top,
    .floating-cta {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        left: auto;
        padding: 10px;
        font-size: 0.85rem;
    }

    .floating-cta {
        display: none !important;
    }

    .scroll-to-top {
        width: 50px;
        height: 50px;
    }
}

/* ============ BREADCRUMB NAVIGATION ============ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #6BA3FF;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: #E8ECFF;
}

.breadcrumb span {
    color: var(--muted-2);
}

.breadcrumb-separator {
    color: var(--muted-2);
    margin: 0 4px;
}

/* ============ LOADING STATES ============ */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(58, 136, 255, 0.3);
    border-radius: 50%;
    border-top-color: #3A88FF;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ TOAST NOTIFICATIONS ============ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    animation: slideUp 0.4s var(--ease);
}

.toast-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.toast-ic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(34, 197, 94, 0.14);
    border: 2px solid rgba(34, 197, 94, 0.45);
    color: #22C55E;
}

.toast-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #F5F7FB;
}

.toast-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

/* ============ SKELETON LOADERS ============ */
.skeleton {
    background: linear-gradient(90deg, rgba(58, 136, 255, 0.1), rgba(58, 136, 255, 0.05), rgba(58, 136, 255, 0.1));
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1rem;
    border-radius: 6px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 1.5rem;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* ============ BADGE & LABELS ============ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(58, 136, 255, 0.1);
    border: 1px solid rgba(58, 136, 255, 0.25);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6BA3FF;
}

.badge.primary {
    background: rgba(58, 136, 255, 0.15);
    border-color: rgba(58, 136, 255, 0.35);
}

.badge.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22C55E;
}

.badge.warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: #FFC107;
}

/* ============ DIVIDERS & SEPARATORS ============ */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58, 136, 255, 0.3), transparent);
    margin: 32px 0;
}

.divider-text {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted-2);
    font-size: 0.9rem;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(58, 136, 255, 0.15);
}

/* ============ CARDS WITH HOVER ============ */
.card {
    position: relative;
    padding: 24px;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.04), rgba(58, 136, 255, 0.02));
    border: 1px solid rgba(58, 136, 255, 0.15);
    border-radius: 16px;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(58, 136, 255, 0.3);
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.08), rgba(58, 136, 255, 0.05));
    box-shadow: 0 16px 48px rgba(58, 136, 255, 0.1);
    transform: translateY(-4px);
}

/* ============ ALERT MESSAGES ============ */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid;
    margin-bottom: 20px;
    animation: slideUp 0.4s var(--ease);
}

.alert-title {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.alert-message {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.alert.success {
    background: rgba(34, 197, 94, 0.08);
    border-color: #22C55E;
    color: #22C55E;
}

.alert.info {
    background: rgba(58, 136, 255, 0.08);
    border-color: #3A88FF;
    color: #6BA3FF;
}

.alert.warning {
    background: rgba(255, 193, 7, 0.08);
    border-color: #FFC107;
    color: #FFB300;
}

.alert.error {
    background: rgba(239, 68, 68, 0.08);
    border-color: #EF4444;
    color: #F87171;
}

/* ============ STATS CARDS ============ */
.stat-card {
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.04), rgba(58, 136, 255, 0.02));
    border: 1px solid rgba(58, 136, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(58, 136, 255, 0.3);
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.08), rgba(58, 136, 255, 0.05));
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(58, 136, 255, 0.1);
}

.stat-card-value {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3A88FF, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-card-label {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
}

/* ============ PILL BUTTONS ============ */
.pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(58, 136, 255, 0.1);
    border: 1px solid rgba(58, 136, 255, 0.25);
    border-radius: 20px;
    color: #6BA3FF;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pill-btn:hover {
    background: rgba(58, 136, 255, 0.2);
    border-color: rgba(58, 136, 255, 0.4);
    transform: translateY(-2px);
}

/* ============ TOOLTIPS ============ */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: rgba(58, 136, 255, 0.9);
    color: #fff;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
}

/* ============ FOCUS STYLES ============ */
:focus-visible {
    outline: 2px solid #3A88FF;
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible {
    outline: 2px solid #3A88FF;
    outline-offset: 3px;
}

/* ============ SMOOTH SCROLLING ============ */
html {
    scroll-behavior: smooth;
}

/* ============ SELECTION STYLING ============ */
::selection {
    background: rgba(58, 136, 255, 0.3);
    color: #F5F7FB;
}

::-moz-selection {
    background: rgba(58, 136, 255, 0.3);
    color: #F5F7FB;
}

/* ============ COUNTDOWN TIMER ============ */
.countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 24px 0;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.08), rgba(58, 136, 255, 0.04));
    border: 1px solid rgba(58, 136, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 80px;
}

.countdown-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3A88FF, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 8px;
}

/* ============ URGENCY BANNER ============ */
.urgency-banner {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 140, 0, 0.05));
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: pulse 2s ease-in-out infinite;
}

.urgency-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.15);
    border: 2px solid rgba(255, 140, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
    font-weight: 800;
    flex-shrink: 0;
}

.urgency-text {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.urgency-highlight {
    color: #FF8C00;
    font-weight: 800;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ============ SOCIAL PROOF WIDGET ============ */
.social-proof {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #121218;
    border: 1px solid rgba(58, 136, 255, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    z-index: 997;
    max-width: 280px;
    animation: slideUp 0.4s var(--ease);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.social-proof-header {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-2);
    margin-bottom: 8px;
}

.social-proof-content {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.social-proof-subtext {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 6px;
}

@media (max-width: 768px) {
    .social-proof {
        display: none;
    }
}

/* ============ TRUST BADGES ============ */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(58, 136, 255, 0.05);
    border: 1px solid rgba(58, 136, 255, 0.15);
    border-radius: 12px;
}

.trust-badge-icon {
    font-size: 24px;
}

.trust-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.trust-badge-subtext {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ============ TESTIMONIAL CARD ============ */
.testimonial {
    background: linear-gradient(135deg, rgba(58, 136, 255, 0.04), rgba(58, 136, 255, 0.02));
    border: 1px solid rgba(58, 136, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    margin: 20px 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3A88FF, #FF8C00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-meta {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.testimonial-title {
    font-size: 0.85rem;
    color: var(--muted);
}

.testimonial-stars {
    color: #FFB300;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============ LEAD MAGNET POPUP ============ */
.lead-magnet-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #121218, #0F1218);
    border: 1px solid rgba(58, 136, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    z-index: 2100;
    box-shadow: 0 64px 160px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.5s var(--ease);
    display: none;
}

.lead-magnet-popup.active {
    display: block;
}

.lead-magnet-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(58, 136, 255, 0.1);
    border: 1px solid rgba(58, 136, 255, 0.2);
    border-radius: 50%;
    color: var(--muted);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lead-magnet-close:hover {
    background: rgba(58, 136, 255, 0.2);
    color: var(--text);
}

.lead-magnet-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.lead-magnet-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.lead-magnet-desc {
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.lead-magnet-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(58, 136, 255, 0.08);
    border: 1px solid rgba(58, 136, 255, 0.2);
    border-radius: 12px;
    color: var(--text);
    margin-bottom: 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.lead-magnet-input:focus {
    outline: none;
    border-color: #3A88FF;
    background: rgba(58, 136, 255, 0.12);
}

.lead-magnet-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3A88FF, #FF8C00);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.lead-magnet-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(58, 136, 255, 0.3);
}

/* ============ EXIT INTENT POPUP ============ */
.exit-intent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    z-index: 2050;
    animation: fadeIn 0.3s ease;
}

.exit-intent-overlay.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============ CONVERSION METRICS ============ */
.conversion-metric {
    text-align: center;
    padding: 20px;
}

.conversion-value {
    font-size: 2rem;
    font-weight: 800;
    color: #22C55E;
    line-height: 1;
}

.conversion-label {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 8px;
}

/* ============ LEAD FORM OPTIMIZATION ============ */
.lead-form-field {
    position: relative;
    margin-bottom: 16px;
}

.lead-form-field.filled input {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
}

.lead-form-field.error input {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
}

.field-help-text {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 4px;
}

.field-success-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #22C55E;
    font-size: 18px;
}

/* ============ CALL TRACKING ============ */
.call-tracking-number {
    font-weight: 700;
    color: #3A88FF;
    text-decoration: none;
    cursor: pointer;
}

.call-tracking-number:hover {
    color: #FF8C00;
}

[hidden] { display: none !important; }

/* --- step form --- */
.step-progress {
    height: 4px; border-radius: 4px; margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.08); overflow: hidden;
}
.step-progress i {
    display: block;
    height: 100%;
    width: 33.33%;
    background: #3A88FF;
    border-radius: 4px;
    transition: width 0.5s var(--ease);
}
.form-step { display: none; }
.form-step.active { display: block; animation: step-in 0.45s var(--ease); }
@keyframes step-in {
    from { opacity: 0; transform: translateX(26px); }
    to { opacity: 1; transform: none; }
}
.step-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.step-label { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #E6EDF3 !important; line-height: 1.4; }
.step-count { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #8B949E; white-space: nowrap; }

.radio-cards { display: flex; flex-direction: column; gap: 10px; }
.radio-card {
    position: relative; display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; border-radius: 14px; cursor: pointer;
    border: 1px solid rgba(88, 166, 255, 0.25); background: rgba(88, 166, 255, 0.06);
    font-size: 0.93rem; font-weight: 500; color: #E6EDF3;
    transition: border-color 0.25s, background 0.25s, transform 0.3s var(--ease);
}
.radio-card:hover { border-color: rgba(139, 92, 246, 0.5); transform: translateY(-2px); }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.rc-ic {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(88, 166, 255, 0.15); border: 1px solid rgba(88, 166, 255, 0.3);
    color: #79C0FF; transition: all 0.25s;
}
.rc-dot {
    margin-left: auto; width: 19px; height: 19px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid var(--muted-2);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.25s;
}
.radio-card.selected { border-color: #58A6FF; background: rgba(88, 166, 255, 0.15); }
.radio-card.selected .rc-ic { background: linear-gradient(135deg, #58A6FF 0%, #79C0FF 100%); border-color: transparent; color: #0F1117; }
.radio-card.selected .rc-dot { border-color: #58A6FF; }
.radio-card.selected .rc-dot::after { content: ''; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, #58A6FF 0%, #FF9500 100%); }

.rc-err { color: #F87171; font-size: 0.82rem; margin-top: 12px; }

.field-err {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.16) !important;
    animation: shake 0.3s;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.step-nav { display: flex; gap: 12px; margin-top: 22px; }
.step-nav .btn-ghost { flex: 0 0 auto; }
.step-nav .btn-primary { flex: 1; }

/* success toast */
.toast {
    position: fixed; inset: 0; z-index: 2100;
    display: flex; align-items: center; justify-content: center; padding: 20px;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
}
.toast-card {
    max-width: 400px; width: 100%; text-align: center; padding: 44px 34px; border-radius: 24px;
    border: 2px solid rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, rgba(22, 27, 34, 1), rgba(15, 17, 23, 1));
    animation: toast-in 0.45s var(--ease);
}
@keyframes toast-in { from { transform: translateY(24px) scale(0.95); opacity: 0; } to { transform: none; opacity: 1; } }
.toast-ic {
    width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(34, 197, 94, 0.14); border: 1px solid rgba(34, 197, 94, 0.45); color: #22C55E;
    box-shadow: 0 0 36px rgba(34, 197, 94, 0.3);
}
.toast-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.toast-card p { color: var(--muted); font-size: 0.92rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-float { display: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-cta-desktop { display: none; }
    .bento { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(3) { border-left: none; }
    .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--border); }
    .foot-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
    .event-card { grid-template-columns: 1fr; }
    .event-item + .event-item { border-left: none; border-top: 1px solid var(--border); }
    .hero { padding-bottom: 72px; }
    .hero-ctas .btn { width: 100%; }
    .stats { grid-template-columns: 1fr; }
    .stat + .stat { border-left: none; border-top: 1px solid var(--border); }
    .trainer-top { flex-direction: column; text-align: center; align-items: center; }
    .socials { justify-content: center; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .foot-brand { display: none; }
    .foot-brand p { font-size: 0.85rem; margin-bottom: 16px; }
    .foot-title { font-size: 0.7rem; margin-bottom: 12px; }
    .foot-links { gap: 8px; }
    .foot-links a { font-size: 0.85rem; }
    .cta-panel { padding: 12px 18px; border-radius: 22px; }
    .cta { padding: 80px 0 50px; }
    .modal-content { padding: 26px 20px; }
    .tl-item { gap: 16px; }
    .scroll-cue { display: none; }
}

/* short laptop screens — shrink hero further so it always fits one screen */
@media (max-height: 800px) and (min-width: 641px) {
    .hero { padding: calc(var(--nav-h) + 12px) 0 36px; }
    .hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); margin: 10px 0 6px; }
    .hero-sub { font-size: 0.98rem; }
    .pill { padding: 7px 14px; font-size: 0.8rem; }
    .event-item { padding: 10px 16px; }
    .event-ic { width: 36px; height: 36px; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .hero-tagline, .ai-note { margin-top: 10px; }
    .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
