/* ============================================
   Garage Scholars - Unified Stylesheet
   REDESIGN: Black + Gold luxury design system
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #CA8A04;
    --color-primary-dark: #A16207;
    --color-primary-light: #EAB308;
    --color-dark: #1C1917;
    --color-darker: #0C0A09;
    --color-dark-card: #292524;
    --color-text-light: #FAFAF9;
    --color-text-muted: #A8A29E;
    --color-white: #ffffff;
    --color-offwhite: #F5F5F4;
    --color-border: rgba(202, 138, 4, 0.15);
    --color-border-subtle: rgba(168, 162, 158, 0.12);
    --color-error: #DC2626;
    --color-success: #16A34A;
    --color-accent: #CA8A04;
    --color-body-dark: #0C0A09;
    --color-overlay: rgba(0, 0, 0, 0.7);
    --color-glass: rgba(28, 25, 23, 0.75);
    --color-glass-border: rgba(202, 138, 4, 0.2);
    --font-primary: 'Inter', Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gold gradient text */
.text-gold-gradient {
    background: linear-gradient(135deg, #EAB308, #CA8A04, #A16207);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section eyebrow label */
.section-eyebrow {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 50px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 20px rgba(202, 138, 4, 0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-light);
    background: var(--color-darker);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* --- Utility --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--color-dark);
}

.section-darker {
    background: radial-gradient(ellipse at center, #0C0A09 0%, #0A0A0A 100%);
}

/* Tyler's pegboard dot pattern */
.pegboard-bg {
    background-image: radial-gradient(circle, rgba(202, 138, 4, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}

.section-offwhite {
    background: var(--color-offwhite);
    color: var(--color-dark);
}

.text-center {
    text-align: center;
}

/* --- Scroll Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-up, .fade-in, .fade-left, .fade-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 10, 9, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 0 24px;
    transition: background 0.3s ease;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.logo a {
    color: var(--color-white);
    transition: color 0.3s;
}

.logo a:hover {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-primary);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-darker);
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--color-darker);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
    background: rgba(202, 138, 4, 0.1);
    color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-white:hover {
    background: var(--color-offwhite);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

/* Hamburger menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--color-text-light);
    font-size: 1.05rem;
    font-weight: 500;
    padding: 8px 0;
}

.mobile-nav .btn {
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
/* ===== VIDEO HERO ===== */
.video-hero {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding-top: 72px;
}

.video-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: relative;
}

.video-hero-title {
    font-family: 'Bebas Neue', 'Oswald', 'Barlow Condensed', var(--font-heading), sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 16px 0 0;
    line-height: 1;
}

.video-hero-player {
    position: relative;
    width: 95vw;
    max-width: 1400px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin: 16px 0;
    box-shadow: 0 0 60px rgba(255,255,255,0.1);
}

.video-hero-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    border-radius: 16px;
}

.video-hero-scroll {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.video-hero-scroll p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin: 0;
}

@keyframes scrollBounce {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(6px); }
}

/* ===== HERO INFO (below video) ===== */
.hero-info {
    background: var(--color-bg, #0C0A09);
    padding: 80px 24px;
    text-align: center;
}

.hero-info-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    width: 320px;
    max-width: 320px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
    filter: brightness(1.05);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-motto {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 8px;
    font-style: italic;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: 0.5px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 769px) {
    .video-hero-title {
        font-size: 3.5rem;
        letter-spacing: 0.3em;
    }
}

@media (min-width: 1200px) {
    .video-hero-title {
        font-size: 4.5rem;
        letter-spacing: 0.35em;
    }
}

@media (max-width: 768px) {
    .video-hero-title {
        font-size: 2rem;
    }

    .video-hero-player {
        width: 96vw;
        margin: 10px 0;
    }

    .hero-info {
        padding: 60px 20px;
    }

    .hero-logo {
        width: 220px;
        max-width: 220px;
        margin-bottom: 20px;
    }

    .hero-headline {
        font-size: 2.4rem;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero-motto {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .video-hero-title {
        font-size: 1.6rem;
    }

    .hero-info {
        padding: 40px 16px;
    }

    .hero-logo {
        width: 180px;
        max-width: 180px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-motto {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .section {
        padding: 60px 0;
    }

    .services-intro h2,
    .pricing-header h2,
    .faq-header h2,
    .team-header h2 {
        font-size: 1.6rem;
    }
}

/* ============================================
   BEFORE/AFTER TRANSFORMATION SLIDER
   ============================================ */
.transformation-section {
    padding: 80px 0;
    background: var(--color-darker);
    overflow: hidden;
}

.transformation-section .container {
    max-width: 900px;
}

.ba-slider-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 800px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    aspect-ratio: 4 / 3;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.ba-slider-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-after {
    z-index: 1;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--color-primary);
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(202, 138, 4, 0.4);
}

.ba-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(202, 138, 4, 0.5);
}

.ba-handle::after {
    content: '\2194';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-darker);
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 4;
}

.ba-label {
    position: absolute;
    bottom: 16px;
    z-index: 5;
    padding: 6px 16px;
    background: rgba(12, 10, 9, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
}

.ba-label-before {
    left: 16px;
}

.ba-label-after {
    right: 16px;
    color: var(--color-primary);
}

.ba-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.ba-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border-subtle);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.ba-nav-dot.active {
    background: var(--color-primary);
    box-shadow: 0 0 8px rgba(202, 138, 4, 0.4);
}

@media (max-width: 768px) {
    .ba-slider-wrapper {
        border-radius: var(--radius-md);
    }

    .ba-handle::before {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   AUTHORITY BAR (below hero)
   ============================================ */
.authority-bar {
    background: #141414;
    border-top: 1px solid rgba(202, 138, 4, 0.1);
    border-bottom: 1px solid rgba(202, 138, 4, 0.1);
    padding: 28px 24px;
    position: relative;
}

.authority-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--color-white);
    padding: 16px 20px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.authority-item:hover {
    border-color: rgba(202, 138, 4, 0.3);
    box-shadow: 0 0 20px rgba(202, 138, 4, 0.08);
}

.authority-item i {
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .authority-items {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .authority-item {
        font-size: 0.8rem;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .authority-items {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-intro {
    text-align: center;
    margin-bottom: 56px;
}

.services-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service pill tabs */
.svc-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.svc-tab {
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    background: var(--color-dark-card);
    color: var(--color-text-muted);
    font-family: var(--font-primary);
}

.svc-tab i { margin-right: 6px; }

.svc-tab:hover {
    color: var(--color-white);
    background: rgba(202, 138, 4, 0.1);
}

.svc-tab.active {
    background: var(--color-primary);
    color: #000;
    box-shadow: 0 0 25px rgba(202, 138, 4, 0.3);
}

/* Service detail card — matches Tyler's bg-surface/80 + backdrop-blur + gold-subtle border */
.svc-card {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(202, 138, 4, 0.15);
    border-radius: 24px;
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.svc-card:hover {
    border-color: rgba(202, 138, 4, 0.3);
    box-shadow: 0 0 40px rgba(202, 138, 4, 0.06);
}

.svc-card.active { display: block; }

.svc-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(202, 138, 4, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-icon i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.svc-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin: 0;
}

.svc-label {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 500;
}

.svc-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.svc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.svc-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.svc-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(202, 138, 4, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.svc-check i {
    color: var(--color-primary);
    font-size: 0.6rem;
}

.svc-feat span {
    font-size: 0.9rem;
    color: var(--color-white);
}

/* Service card CTA button — gold like Tyler's */
.svc-card .btn {
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.svc-card .btn:hover {
    box-shadow: 0 0 30px rgba(202, 138, 4, 0.3);
}

@media (max-width: 768px) {
    .svc-tabs { gap: 6px; }
    .svc-tab { padding: 10px 16px; font-size: 0.82rem; }
    .svc-card { padding: 32px 24px; border-radius: 20px; }
    .svc-card-header h3 { font-size: 1.25rem; }
    .svc-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .svc-tab { padding: 8px 12px; font-size: 0.78rem; }
    .svc-tab i { display: none; }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-group { display: none; }
.pricing-group.active { display: block; }

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.pricing-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: rgba(202, 138, 4, 0.2);
    box-shadow: 0 0 30px rgba(202, 138, 4, 0.06);
}

/* Featured card — Tyler's gradient glow border */
.pricing-card.featured {
    border: none;
    background: transparent;
    padding: 0;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(to bottom, #CA8A04, rgba(202, 138, 4, 0.4), rgba(202, 138, 4, 0.1));
    z-index: 0;
}

.pricing-card.featured .pricing-card-inner {
    position: relative;
    z-index: 1;
    background: #141414;
    border-radius: 15px;
    margin: 1px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 2px);
}

/* Featured card pops up slightly */
@media (min-width: 769px) {
    .pricing-card.featured {
        margin-top: -16px;
        margin-bottom: -16px;
    }
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 24px;
    background: var(--color-primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.pricing-card .subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-card .what-you-get {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.pricing-feature i {
    color: var(--color-primary);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.pricing-feature span {
    font-size: 0.9rem;
    color: var(--color-white);
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Non-featured cards get outline button style */
.pricing-card:not(.featured) .btn {
    background: transparent;
    border: 1px solid rgba(202, 138, 4, 0.3);
    color: var(--color-primary);
}

.pricing-card:not(.featured) .btn:hover {
    background: rgba(202, 138, 4, 0.1);
}

/* Featured card gets solid gold button */
.pricing-card.featured .btn {
    background: var(--color-primary);
    color: #000;
}

.pricing-card.featured .btn:hover {
    background: var(--color-primary-light);
    box-shadow: 0 0 30px rgba(202, 138, 4, 0.3);
}

.pricing-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 32px;
}

/* Pricing section titles */
.pricing-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 32px;
    margin-top: 56px;
    font-weight: 600;
}

.pricing-section-title:first-of-type {
    margin-top: 0;
}

.pricing-section-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-darker);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    vertical-align: middle;
    margin-left: 8px;
    font-family: var(--font-primary);
}

/* 2-column layout for bundles */
.pricing-cards-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto 24px;
    align-items: stretch;
}

/* Add-ons section — Tyler's style */
.addons-section {
    margin-top: 64px;
    text-align: center;
}

.addons-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 24px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--color-white);
    transition: var(--transition);
}

.addon-item:hover {
    border-color: rgba(202, 138, 4, 0.2);
}

.addon-item i {
    color: var(--color-primary);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 1.8rem;
    }

    .pricing-section-title {
        font-size: 1.2rem;
        margin-top: 36px;
        margin-bottom: 24px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 24px;
    }

    .pricing-card {
        padding: 28px 22px;
    }

    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .pricing-cards-2col {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addons-section {
        margin-top: 36px;
    }
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee {
    padding: 80px 24px;
    background: radial-gradient(ellipse at center, #0C0A09 0%, #0A0A0A 100%);
}

.guarantee-badge {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(202, 138, 4, 0.25);
    border-radius: 24px;
    padding: 40px 48px;
    backdrop-filter: blur(8px);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-darker);
    font-weight: 700;
    flex-shrink: 0;
}

.guarantee-text h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 6px;
}

.guarantee-text p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.guarantee-detail {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
    max-width: 640px;
}

@media (max-width: 768px) {
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item.open .faq-question span {
    color: var(--color-primary);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.3s;
}

.faq-question:hover span {
    color: var(--color-primary);
}

.faq-question i {
    color: var(--color-primary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 0 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-header {
    text-align: center;
    margin-bottom: 48px;
}

.team-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.team-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.team-eyebrow {
    font-size: 0.85rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.team-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: rgba(202, 138, 4, 0.3);
    box-shadow: 0 0 30px rgba(202, 138, 4, 0.08);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.team-bio {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

/* ============================================
   NEWSLETTER / FOOTER
   ============================================ */
.footer {
    background: var(--color-darker);
    padding: 60px 24px 30px;
    border-top: 1px solid var(--color-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto 48px;
}

.newsletter h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.newsletter p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 420px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-sm);
    background: var(--color-dark-card);
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.newsletter-disclaimer a {
    color: var(--color-primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border-subtle);
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(202, 138, 4, 0.1);
}

.footer-bottom {
    border-top: 1px solid var(--color-border-subtle);
    padding-top: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .logo {
    font-size: 1.2rem;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 100px;
}

.about-hero img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-hero h2 {
    font-size: 1rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-hero h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-hero p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-why img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-why h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-why p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* About - Meet The Scholars */
.scholars-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 48px;
}

.scholars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.scholar-card {
    background: var(--color-dark-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.scholar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 2px;
}

.scholar-card .credentials {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.scholar-card .title {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.scholar-card p.bio {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-hero,
    .about-why {
        grid-template-columns: 1fr;
        padding-top: 80px;
    }

    .about-hero img,
    .about-why img {
        height: 280px;
    }

    .scholars-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: calc(100vh - 72px);
    padding-top: 72px;
}

.contact-form-wrapper {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.contact-form-wrapper .subtitle {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-sm);
    background: var(--color-dark-card);
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(202, 138, 4, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.contact-map {
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 40px 24px;
    }

    .contact-map {
        min-height: 300px;
    }
}

/* ============================================
   APPLY PAGE
   ============================================ */
.apply-page {
    min-height: 100vh;
    padding: 100px 20px 40px;
    background: var(--color-dark);
}

.apply-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-dark-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
}

.apply-container h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.apply-highlight {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.benefits-list {
    background: rgba(202, 138, 4, 0.06);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--color-text-light);
}

.benefit-item::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: var(--color-primary);
    color: var(--color-darker);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.apply-container .form-group input,
.apply-container .form-group select,
.apply-container .form-group textarea {
    background: var(--color-dark);
}

.success-message {
    background: var(--color-primary);
    color: var(--color-darker);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
}

.success-message h2 {
    margin-bottom: 8px;
}

.error-message {
    background: var(--color-error);
    color: var(--color-white);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: none;
}

/* ============================================
   COMING SOON PAGE
   ============================================ */
.coming-soon-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-card) 100%);
    text-align: center;
}

.coming-soon-content {
    max-width: 600px;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon-icon {
        animation: none;
    }
}

.coming-soon-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.coming-soon-content .subtitle {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.coming-soon-content .description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.feature-list {
    text-align: left;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--color-text-light);
}

.feature-item::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: var(--color-primary);
    color: var(--color-darker);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.coming-soon-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .coming-soon-content h1 {
        font-size: 2rem;
    }

    .coming-soon-buttons {
        flex-direction: column;
    }

    .coming-soon-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms)
   ============================================ */
.legal-page {
    padding: 100px 24px 60px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.legal-content > p.intro {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.legal-section p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section ul {
    margin: 12px 0 12px 24px;
}

.legal-section ul li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 6px;
    list-style: disc;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-page h1 {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
}

.error-page h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.error-page p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ============================================
   QUOTE MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--color-dark-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.modal .subtitle {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    background: var(--color-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-message {
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-top: 12px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(22, 163, 74, 0.1);
    color: var(--color-success);
    border: 1px solid var(--color-success);
}

.form-message.error {
    display: block;
    background: rgba(220, 38, 38, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--color-dark-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: 100px 24px;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 138, 4, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.final-cta-content > p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.final-cta-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 16px;
    font-style: italic;
}

@media (max-width: 768px) {
    .final-cta-content h2 {
        font-size: 2rem;
    }
}

/* ============================================
   SOCIAL PROOF / STATS (hidden but styled)
   ============================================ */
.results-header {
    text-align: center;
    margin-bottom: 48px;
}

.results-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.results-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(202, 138, 4, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-dark-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.testimonial-stars {
    margin-bottom: 16px;
    color: var(--color-primary);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT PAGE — Differentiators list
   ============================================ */
.about-differentiators {
    margin: 20px 0;
}

.about-diff-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
    gap: 10px;
    color: var(--color-text-light);
}

.about-diff-item i {
    color: var(--color-primary);
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* ============================================
   Utility Classes
   ============================================ */

/* Image utilities */
.img-centered { display: block; margin-left: auto; margin-right: auto; }
.img-cover { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.img-contain { width: 100%; height: auto; object-fit: contain; }
.img-rounded { border-radius: var(--radius-md); }

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
.text-light { color: var(--color-text-light); }
.text-white { color: var(--color-white); }

/* Spacing utilities */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* Layout utilities */
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
