:root {
    --primary-dark: #070B14;
    --secondary-dark: #0D1627;
    --elevated-dark: #16223C;
    --hero-overlay-top: rgba(7, 11, 20, 0.72);
    --hero-overlay-bottom: rgba(7, 11, 20, 0.96);
    --gold: #E5B25D;
    --gold-hover: #f0c375;
    --gold-soft: rgba(229, 178, 93, 0.12);
    --text-light: #F8F9FA;
    --text-muted: #A0AEC0;
    --text-body: #C7D1DE;
    --text-dark: #1A202C;
    --white: #FFFFFF;
    --card-bg: var(--elevated-dark);
    --section-bg: var(--secondary-dark);
    --border-light: rgba(255, 255, 255, 0.14);
    --border-color: rgba(255, 255, 255, 0.09);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --danger: #FF6B6B;
    --success: #48BB78;
    --nav-height: 76px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--text-light);
    background-color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Accessibility helpers */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    padding: 12px 20px;
    background: var(--gold);
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: 0 0 6px 0;
}

.skip-link:focus {
    left: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(229, 178, 93, 0.35);
}

.subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.25rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    text-align: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary-dark);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-dark:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn[disabled],
.btn.is-loading {
    opacity: 0.65;
    pointer-events: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px 48px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    color: var(--white);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(7, 11, 20, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.p-letter {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.logo-mountain {
    position: absolute;
    bottom: 6px;
    left: 14px;
    font-size: 14px;
    color: var(--gold);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.8;
    white-space: nowrap;
}

.desktop-nav a.active {
    color: var(--gold);
    opacity: 1;
    position: relative;
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.desktop-nav a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background-color: rgba(7, 11, 20, 0.98);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    overflow-y: auto;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-content {
    padding: 32px 24px 48px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.close-menu-btn {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: 40px;
    line-height: 1;
    padding: 0 8px;
}

.mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.mobile-nav a.active {
    color: var(--gold);
}

.mobile-nav a.btn {
    color: var(--primary-dark);
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    /* Plain url() first as the fallback; browsers that grok image-set() take the WebP. */
    background-image:
        radial-gradient(circle at center, rgba(7, 11, 20, 0.5) 0%, var(--hero-overlay-bottom) 100%),
        url('../images/mountain.jpg');
    background-image:
        radial-gradient(circle at center, rgba(7, 11, 20, 0.5) 0%, var(--hero-overlay-bottom) 100%),
        image-set(url('../images/mountain.webp') type('image/webp'), url('../images/mountain.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 260px;
    /* Increased space for absolute stats */
    color: var(--white);
}

.hero .container {
    width: 100%;
    max-width: 1200px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 0 1 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-graphic {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(229, 178, 93, 0.2));
    -webkit-mask-image: radial-gradient(ellipse 58% 58% at center, black 45%, transparent 88%);
    mask-image: radial-gradient(ellipse 58% 58% at center, black 45%, transparent 88%);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.main-title {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Page hero (interior pages) */
.page-hero {
    padding: calc(var(--nav-height) + 80px) 0 80px;
    background-image:
        linear-gradient(to bottom, rgba(7, 11, 20, 0.82), rgba(7, 11, 20, 0.98)),
        url('../images/mountain.jpg');
    background-image:
        linear-gradient(to bottom, rgba(7, 11, 20, 0.82), rgba(7, 11, 20, 0.98)),
        image-set(url('../images/mountain.webp') type('image/webp'), url('../images/mountain.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-hero .main-title {
    font-size: 3.25rem;
    margin-bottom: 20px;
}

.page-hero .description {
    margin-bottom: 0;
    max-width: 640px;
}

/* Stats Section */
.stats-container {
    position: absolute;
    bottom: -60px;
    /* Half overlapping the next section */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    overflow: hidden;
    /* For mobile marquee */
}

.stats-marquee-track {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mobile-duplicate {
    display: none;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 24px;
}

/* Services Section */
.services {
    background-color: var(--section-bg);
    padding: 150px 0 80px;
    /* Space for the overlapping stats container */
}

.services-header {
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: rgba(22, 34, 60, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 178, 93, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

.step-card {
    position: relative;
    padding: 40px 32px;
    border-radius: 16px;
    background: rgba(13, 22, 39, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 178, 93, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonial-card {
    background: rgba(22, 34, 60, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 178, 93, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--text-body);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA band */
.cta-band {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-band h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.cta-band p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Free Consultation band */
.consult-band {
    padding: 90px 0;
    background:
        linear-gradient(135deg, rgba(7, 11, 20, 0.92), rgba(13, 22, 39, 0.88)),
        radial-gradient(circle at 15% 20%, rgba(229, 178, 93, 0.16), transparent 55%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.consult-card {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(13, 22, 39, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.consult-card .subtitle {
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(229, 178, 93, 0.45);
}

.consult-card h2 {
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.consult-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.consult-meta a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
}

.consult-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.consult-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.22);
}

/* Floating Telegram chat button.
   Sits bottom-LEFT: the Tawk.to live-chat widget owns the bottom-right corner. */
.chat-fab {
    position: fixed;
    left: 24px;
    bottom: 120px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(229, 178, 93, 0.14);
    transition: var(--transition);
}

.chat-fab i {
    font-size: 1.25rem;
}

.chat-fab:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .consult-card {
        padding: 32px 24px;
    }

    .consult-card h2 {
        font-size: 1.8rem;
    }

    .chat-fab {
        left: 16px;
        bottom: 110px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* "90% fail" odds section */
.odds-section {
    padding: clamp(60px, 9vw, 100px) 0;
    background:
        linear-gradient(180deg, var(--primary-dark), var(--secondary-dark));
    border-bottom: 1px solid var(--border-color);
}

.odds-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: center;
}

.odds-copy h2 {
    font-size: clamp(1.75rem, 5.5vw, 2.6rem);
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-wrap: balance;
}

.odds-lead {
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-body);
}

.odds-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 4vw, 40px) clamp(32px, 5vw, 56px);
    margin-top: clamp(44px, 7vw, 72px);
    padding-top: clamp(32px, 5vw, 48px);
    border-top: 1px solid var(--border-color);
}

.odds-detail-col h3 {
    font-size: clamp(1.05rem, 2.6vw, 1.15rem);
    color: var(--gold);
    margin-bottom: 12px;
}

.odds-detail-col p {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.95rem;
}

.odds-detail .odds-source {
    grid-column: 1 / -1;
    margin-top: 0;
}

.odds-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: clamp(24px, 4vw, 32px);
}

.odds-figures {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.odds-stat {
    padding: clamp(20px, 3.5vw, 26px) clamp(20px, 4vw, 28px);
    background: rgba(13, 22, 39, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--danger);
    border-radius: var(--radius-md);
}

.odds-value {
    display: block;
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    color: var(--danger);
    margin-bottom: 8px;
}

.odds-label {
    display: block;
    font-size: clamp(0.82rem, 2.2vw, 0.9rem);
    line-height: 1.5;
    color: var(--text-muted);
    text-wrap: pretty;
}

.odds-source {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-muted);
    opacity: 0.85;
    margin-top: 4px;
}

/* Tablet: stack the two columns, but lay the stats out three-across so they
   do not become a tall vertical run. */
@media (max-width: 1024px) {
    .odds-inner {
        grid-template-columns: 1fr;
    }

    .odds-figures {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .odds-detail {
        grid-template-columns: 1fr;
    }
}

/* Narrow tablet: three stat cards no longer fit side by side. */
@media (max-width: 760px) {
    .odds-figures {
        grid-template-columns: 1fr;
    }
}

/* Phone: full-bleed buttons so both taps are easy to hit. */
@media (max-width: 520px) {
    .odds-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .odds-actions .btn {
        width: 100%;
    }

    /* Let the heading wrap naturally on narrow screens. The markup keeps a
       space before the <br> so the words stay separated once it is hidden;
       that space collapses at the line break on wider screens. */
    .odds-copy h2 br {
        display: none;
    }

    .odds-stat {
        border-left-width: 2px;
    }
}

.plan-range {
    margin: -18px 0 22px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--gold);
}

.pricing-footnote {
    max-width: 820px;
    margin-top: 40px;
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.pricing-footnote sup {
    color: var(--gold);
}

.payment-help {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.payment-help p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* Recent-pass social proof toast.
   Stacks above the Telegram button, which shares the bottom-left corner. */
.proof-toast {
    position: fixed;
    left: 24px;
    bottom: 96px;
    z-index: 880;
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(340px, calc(100vw - 48px));
    padding: 14px 16px;
    background: rgba(13, 22, 39, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.proof-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.proof-toast-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 1rem;
}

.proof-toast-body {
    flex: 1;
    min-width: 0;
    line-height: 1.4;
}

.proof-toast-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.proof-toast-meta {
    display: block;
    margin-top: 2px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.proof-toast-close {
    flex-shrink: 0;
    align-self: flex-start;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
}

.proof-toast-close:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .proof-toast {
        left: 16px;
        right: 16px;
        bottom: 84px;
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .proof-toast {
        transition: opacity 0.2s ease;
        transform: none;
    }

    .proof-toast.is-visible {
        transform: none;
    }
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: var(--text-muted);
    padding: 64px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
    font-size: 0.8rem;
    line-height: 1.7;
    color: #6B7A90;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.footer-bottom nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-100 {
    width: 100%;
}

.mt-1 {
    margin-top: 4px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 16px;
}

.mt-4 {
    margin-top: 24px;
}

.mt-5 {
    margin-top: 40px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-5 {
    margin-bottom: 40px;
}

.p-4 {
    padding: 24px;
}

.mr-2 {
    margin-right: 8px;
}

.mr-3 {
    margin-right: 16px;
}

.bg-dark {
    background-color: var(--secondary-dark);
}

.bg-gold {
    background-color: var(--gold);
}

.text-white {
    color: var(--white);
}

.text-light {
    color: var(--text-light);
}

.text-muted {
    color: var(--text-muted);
}

.text-dark {
    color: var(--primary-dark);
}

.border-gold {
    border: 1px solid var(--gold);
}

.rounded-lg {
    border-radius: 12px;
}

.section-padding {
    padding: 80px 0;
}

.content-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.two-column {
    display: flex;
    gap: 48px;
    align-items: center;
}

.col {
    flex: 1;
    min-width: 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-5-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.grid-5-centered>* {
    flex: 0 1 calc(33.333% - 16px);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.image-placeholder {
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card-shadow:hover {
    transform: translateY(-5px);
}

/* Resource cards */
.resource-card {
    display: flex;
    flex-direction: column;
}

.resource-img {
    height: 160px;
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
}

.resource-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.resource-content h3 {
    font-size: 1.15rem;
    color: var(--text-light);
}

.resource-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--gold-soft);
    color: var(--gold);
}

.badge.bg-gold {
    background-color: var(--gold);
    color: var(--primary-dark);
}

/* Results / payouts */
.payout-card {
    background: var(--primary-dark);
}

.payout-card h3 {
    font-size: 2rem;
}

/* Pricing */
.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    font-size: 1.75rem;
}

.pricing-card-featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    position: relative;
    z-index: 2;
}

.pricing-features {
    padding: 16px 0;
    flex: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card-featured .pricing-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Forms */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft);
}

.form-control[aria-invalid="true"] {
    border-color: var(--danger);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.field-error {
    display: block;
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 6px;
    min-height: 1px;
}

.form-status {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    background: rgba(72, 187, 120, 0.14);
    color: var(--success);
    border: 1px solid rgba(72, 187, 120, 0.35);
}

.form-status.is-error {
    background: rgba(255, 107, 107, 0.14);
    color: var(--danger);
    border: 1px solid rgba(255, 107, 107, 0.35);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 16px;
}

/* Scroll reveal.
   Only hide content once we know JavaScript is running. The .js class is set
   by an inline snippet in <head>; without it every .reveal element renders
   normally, so a script failure can never leave the page blank. */
.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Never animate content that is already on screen at first paint. */
.js .page-hero .reveal,
.js .hero .reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

@media (prefers-reduced-motion: reduce) {
    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Error page */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image:
        linear-gradient(to bottom, rgba(7, 11, 20, 0.85), rgba(7, 11, 20, 0.98)),
        url('../images/mountain.jpg');
    background-image:
        linear-gradient(to bottom, rgba(7, 11, 20, 0.85), rgba(7, 11, 20, 0.98)),
        image-set(url('../images/mountain.webp') type('image/webp'), url('../images/mountain.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 140px 0 80px;
}

.error-code {
    font-size: 7rem;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 16px;
}

/* Pricing Preview Section */
.pricing-preview-grid {
    align-items: stretch;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(13, 22, 39, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 178, 93, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(22, 34, 60, 0.9), rgba(13, 22, 39, 0.9));
    border-color: var(--gold);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
    padding: 50px 40px;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

.price .amount {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-body);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    font-size: 1.1rem;
}

/* Guarantee Banner */
.guarantee-banner {
    background: linear-gradient(90deg, rgba(229, 178, 93, 0.1), rgba(229, 178, 93, 0.05));
    border: 1px solid rgba(229, 178, 93, 0.3);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 10px;
}

.guarantee-content p {
    color: var(--text-body);
    font-size: 1.05rem;
    margin: 0;
}

/* FAQ Section */
.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
    /* Prevents items from stretching vertically to match sibling height */
}

.faq-item {
    background: rgba(13, 22, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
    display: none;
}

/* Show the first two FAQ answers for demo purposes if no JS */
.faq-item:nth-child(-n+2) .faq-answer {
    display: block;
}

.faq-item:nth-child(-n+2) .faq-question i {
    transform: rotate(180deg);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero {
        padding-bottom: 360px;
        /* Space for the stacked 2x2 stats container */
    }

    .main-title {
        font-size: 3rem;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .page-hero .main-title {
        font-size: 2.5rem;
    }

    .stats-container {
        padding: 30px 20px;
        flex-wrap: wrap;
        gap: 24px 0;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .steps-grid,
    .grid-3,
    .grid-4,
    .grid-2,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .grid-5-centered>* {
        flex: 0 1 100%;
    }

    .pricing-card-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
    }

    .hero-image {
        display: none;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .main-title .gold-text {
        font-size: 1.75rem;
        display: inline-block;
        margin-top: 12px;
        margin-bottom: 8px;
    }

    .page-hero {
        padding: calc(var(--nav-height) + 48px) 0 56px;
    }

    .page-hero .main-title {
        font-size: 2.1rem;
    }

    .section-heading h2,
    .services-header h2,
    .cta-band h2 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stats-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
        padding: 30px 0;
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .stats-marquee-track {
        display: flex;
        width: max-content;
        animation: marquee-scroll 15s linear infinite;
    }

    .stat-item {
        min-width: 180px;
        flex: 0 0 auto;
        padding: 0 16px;
    }

    .mobile-duplicate {
        display: block;
    }

    .hero {
        padding-bottom: 60px;
        min-height: auto;
        padding-top: 130px;
    }

    .services {
        padding-top: 80px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-col ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .two-column {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .content-section,
    .section-padding,
    .cta-band {
        padding: 56px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .error-code {
        font-size: 4.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --------------------------------------------------------------------------
   Homepage proof strip (links through to /results)
   -------------------------------------------------------------------------- */
.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.proof-strip-item {
    position: relative;
    display: block;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--elevated-dark);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.proof-strip-item:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 178, 93, 0.4);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.proof-strip-item img {
    width: 100%;
    height: auto;
    display: block;
}

.strip-meta {
    display: block;
    padding: 14px 16px;
    border-top: 1px solid var(--border-color);
}

.strip-meta strong {
    display: block;
    font-size: 1.05rem;
    color: var(--gold);
    line-height: 1.2;
}

.strip-meta span {
    display: block;
    margin-top: 2px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.proof-strip-cta {
    margin-top: 36px;
    text-align: center;
}

.proof-strip-cta p {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .proof-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 460px) {
    .proof-strip {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}
