/* ═══════════════════════════════════════════════════════════════
   JorDan_AoE — Professional AoE2 Coaching Website
   Premium Dark Esports Design System
   ═══════════════════════════════════════════════════════════════ */

/* Ambient background animations */
@keyframes ambientDrift {
    0%   { transform: translate(0%, 0%) scale(1); }
    33%  { transform: translate(5%, -3%) scale(1.05); }
    66%  { transform: translate(-3%, 5%) scale(0.98); }
    100% { transform: translate(0%, 0%) scale(1); }
}

@keyframes ambientDrift2 {
    0%   { transform: translate(0%, 0%) scale(1); }
    33%  { transform: translate(-4%, 4%) scale(1.03); }
    66%  { transform: translate(6%, -2%) scale(0.97); }
    100% { transform: translate(0%, 0%) scale(1); }
}
/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    /* Core Palette — Crimson Phoenix Brand */
    --crimson-50:  #fef2f2;
    --crimson-100: #fee2e2;
    --crimson-200: #fecaca;
    --crimson-300: #fca5a5;
    --crimson-400: #f87171;
    --crimson-500: #ef4444;
    --crimson-600: #dc2626;
    --crimson-700: #b91c1c;
    --crimson-800: #991b1b;
    --crimson-900: #7f1d1d;
    --crimson-950: #450a0a;

    /* Dark Background System */
    --bg-primary:   #0a0a0f;
    --bg-secondary: #0f0f18;
    --bg-tertiary:  #141420;
    --bg-card:      #16162a;
    --bg-elevated:  #1a1a32;
    --bg-hover:     #1e1e38;

    /* Text */
    --text-primary:    #f5f5f7;
    --text-secondary:  #a1a1b5;
    --text-tertiary:   #6b6b80;
    --text-accent:     #f87171;

    /* Gradients */
    --gradient-crimson: linear-gradient(135deg, #dc2626, #f87171, #ff9a9a);
    --gradient-hero:    linear-gradient(135deg, #0a0a0f 0%, #1a0a0a 40%, #0f0f18 100%);
    --gradient-card:    linear-gradient(180deg, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    --gradient-glow:    radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);

    /* Border */
    --border-subtle:  rgba(255, 255, 255, 0.06);
    --border-medium:  rgba(255, 255, 255, 0.1);
    --border-accent:  rgba(220, 38, 38, 0.3);

    /* Shadows */
    --shadow-sm:  0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl:  0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.15);

    /* Typography */
    --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);
    --container-max: 1200px;
    --container-px: clamp(1rem, 4vw, 2rem);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-med:  0.4s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
}

body::before {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
    animation: ambientDrift 25s ease-in-out infinite;
}

body::after {
    width: 500px;
    height: 500px;
    bottom: 20%;
    right: -100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    animation: ambientDrift2 30s ease-in-out infinite;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    position: relative;
    z-index: 1;
}

section, footer, nav {
    position: relative;
    z-index: 1;
}

/* ── Accent Utilities ──────────────────────────────────────── */
.accent {
    color: var(--crimson-400);
}

.accent-gradient {
    background: var(--gradient-crimson);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section Headers ───────────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--crimson-400);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 2px;
    background: var(--gradient-crimson);
    transform: translateY(-50%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-med);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gradient-crimson);
    transition: width var(--transition-med);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-btn {
    padding: 0.55rem 1.3rem;
    background: var(--crimson-600);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.nav-cta-btn:hover {
    background: var(--crimson-500);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
}

.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(220, 38, 38, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(100, 20, 20, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    width: fit-content;
    font-size: 0.85rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.hero-badge-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 50%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--crimson-600);
    color: #fff;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.25);
}

.btn-primary:hover {
    background: var(--crimson-500);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.35);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-medium);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--crimson-500);
    color: var(--crimson-400);
    background: rgba(220, 38, 38, 0.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-stat-value::after {
    content: '+';
    font-size: 0.9em;
    color: var(--crimson-400);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, rgba(220, 38, 38, 0.06) 40%, transparent 70%);
    filter: blur(50px);
    animation: pulse-glow 4s ease-in-out infinite;
    bottom: 0;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.08); }
}

.hero-image-frame {
    position: relative;
    width: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    position: relative;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    color: var(--text-tertiary);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -40px;
    width: 100%;
    height: 40px;
    background: var(--gradient-crimson);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%   { top: -40px; }
    100% { top: 40px; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 4rem;
}

.about-image-accent {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.about-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}

.about-image-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 360px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    z-index: 10;
}

.about-badge-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.about-badge-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--crimson-400);
}

.about-badge-team {
    display: block;
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

.about-text-col {
    display: flex;
    flex-direction: column;
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.about-lead strong {
    color: var(--text-primary);
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
}

.about-text em {
    color: var(--crimson-400);
    font-style: normal;
    font-weight: 500;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-highlight {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-med);
}

.about-highlight:hover {
    background: rgba(220, 38, 38, 0.04);
    border-color: var(--border-accent);
}

.about-highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--crimson-400);
}

.about-highlight h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.about-highlight p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   TOURNAMENT ACHIEVEMENTS
   ═══════════════════════════════════════════════════════════════ */
.achievements {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
    position: relative;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.achievement-card {
    position: relative;
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-med);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-crimson);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.achievement-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-icon {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.achievement-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.achievement-detail {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    line-height: 1.55;
    flex: 1;
}

.achievement-tier {
    display: inline-block;
    width: fit-content;
    padding: 0.2rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--crimson-400);
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 6px;
    margin-top: 0.5rem;
}

.achievements-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES / PRICING SECTION
   ═══════════════════════════════════════════════════════════════ */
.services {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-med);
}

.pricing-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    border-color: rgba(220, 38, 38, 0.3);
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.06) 0%, var(--bg-card) 40%);
    box-shadow: var(--shadow-glow);
}

.pricing-featured:hover {
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 0 60px rgba(220, 38, 38, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gradient-crimson);
    color: #fff;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--crimson-400);
    margin-bottom: 0.5rem;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-left: 0.25rem;
}

.pricing-savings {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1.5rem;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 8px;
    width: fit-content;
    color: #4ade80;
    font-size: 0.82rem;
    font-weight: 500;
}

.pricing-savings svg {
    color: #4ade80;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--crimson-400);
    margin-top: 2px;
}

.pricing-features li strong {
    color: var(--text-primary);
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESULTS / TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.results {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
    position: relative;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.result-card {
    padding: 1.75rem;
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all var(--transition-med);
}

.result-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.result-elo-change {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.result-elo-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
}

.result-elo-fill {
    height: 100%;
    background: var(--gradient-crimson);
    border-radius: 100px;
    width: 0;
    transition: width 1.5s var(--ease-out-expo);
}

.result-elo-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
}

.result-elo-before {
    color: var(--text-tertiary);
}

.result-elo-numbers svg {
    color: var(--crimson-400);
}

.result-elo-after {
    font-weight: 700;
    color: var(--crimson-400);
}

.result-quote {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
    font-style: italic;
    flex: 1;
}

.result-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.result-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.12);
    color: var(--crimson-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.result-name {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
}

.result-detail {
    display: block;
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */
.faq {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-medium);
}

.faq-item.active {
    border-color: var(--border-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--crimson-400);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-med);
    color: var(--text-tertiary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--crimson-400);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-med), padding var(--transition-med);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING / CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.booking {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.booking-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.booking-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.booking-plan-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.booking-plan-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.plan-toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1.5px solid var(--border-subtle);
    background: transparent;
    transition: all var(--transition-fast);
}

.plan-toggle-btn:hover {
    border-color: var(--border-medium);
    background: rgba(255, 255, 255, 0.02);
}

.plan-toggle-btn.active {
    border-color: var(--crimson-500);
    background: rgba(220, 38, 38, 0.06);
}

.plan-toggle-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.plan-toggle-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--crimson-400);
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.payment-stripe {
    background: #635bff;
    color: #fff;
}

.payment-stripe:hover {
    background: #7a73ff;
    box-shadow: 0 4px 20px rgba(99, 91, 255, 0.3);
    transform: translateY(-1px);
}

.payment-paypal {
    background: #0070ba;
    color: #fff;
}

.payment-paypal:hover {
    background: #0088e0;
    box-shadow: 0 4px 20px rgba(0, 112, 186, 0.3);
    transform: translateY(-1px);
}

.payment-secure {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.payment-secure svg {
    color: #4ade80;
}

/* Booking Visual */
.booking-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse 60% 50% at 50% 70%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
}

.booking-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    position: relative;
    z-index: 1;
    transform: scale(1.05);
    transform-origin: center bottom;
}

.booking-visual-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, var(--bg-card) 5%, transparent 35%),
        linear-gradient(0deg, var(--bg-card) 0%, transparent 20%);
    z-index: 2;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    padding: 4rem 0 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--border-accent);
    color: var(--crimson-400);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-link {
    display: block;
    font-size: 0.88rem;
    color: var(--text-tertiary);
    padding: 0.3rem 0;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--crimson-400);
}

.footer-team-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-team-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-medium);
}

.footer-team-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════════
   PARTICLES
   ═══════════════════════════════════════════════════════════════ */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    animation: float-up linear infinite;
    pointer-events: none;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-text {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 520px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-frame {
        width: 320px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-text-col {
        text-align: left;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        max-width: 500px;
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-visual {
        min-height: 250px;
        order: -1;
    }

    .booking-visual-overlay {
        background: linear-gradient(0deg, var(--bg-card) 0%, transparent 50%);
    }

    .booking-content {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.25rem;
        transform: translateX(100%);
        transition: transform var(--transition-med);
        border-left: 1px solid var(--border-subtle);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-image-frame {
        width: 260px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .booking-plan-toggle {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-image-frame {
        width: 220px;
    }

    .hero-badge {
        font-size: 0.78rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .booking-content {
        padding: 1.5rem;
    }
}
