/* =============================================
   THE FITTING LOUNGE - Main Stylesheet
   Dark Premium Theme | Mobile-First
   Version: 1.0
   ============================================= */

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
    /* Colors */
    --color-bg: #0d0d0d;
    --color-surface: #161616;
    --color-surface-2: #1f1f1f;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-text: #f5f5f5;
    --color-text-muted: #b0b0b0;
    --color-gold: #c9a84c;
    --color-gold-light: #e0be7a;
    --color-gold-bg: rgba(201, 168, 76, 0.08);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-sm: 1.05rem;
    --font-size-base: 1.2rem;
    --font-size-lg: 1.45rem;
    --font-size-xl: 2rem;
    --font-size-2xl: 2.8rem;
    --font-size-3xl: 4.2rem;

    /* Spacing */
    --space-xs: 0.8rem;
    --space-sm: 1.4rem;
    --space-md: 3rem;
    --space-lg: 4.5rem;
    --space-xl: 6rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 100px;

    /* Transitions */
    --transition: all 0.2s ease;

    /* Nav */
    --nav-height: 70px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: var(--font-size-base);
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.nav__inner {
    max-width: 1840px;
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.nav__logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.nav__logo-svg {
    width: 160px;
    height: auto;
}

.nav__logo-mark {
    width: 32px;
    height: 32px;
    background: var(--color-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #000;
    letter-spacing: -0.5px;
}

.nav__logo-text {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.2px;
}

.nav__logo-text span {
    color: var(--color-gold);
}

/* Desktop Links */
.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav__links a {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    padding: 4px 0;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav__links a:hover {
    color: var(--color-text);
}

.nav__links a:hover::after {
    transform: scaleX(1);
}

/* CTA button in nav */
.nav__cta {
    flex-shrink: 0;
}

/* Mobile hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    outline: none;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile nav drawer */
.nav__mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md);
    z-index: 99;
    flex-direction: column;
    gap: var(--space-sm);
    overflow-y: auto;
}

.nav__mobile.is-open {
    display: flex;
}

.nav__mobile a:not(.btn) {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-text-muted);
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.nav__mobile .btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-sm);
}

.nav__mobile a:last-child {
    border-bottom: none;
}

.nav__mobile a:hover {
    color: var(--color-gold);
}

/* =============================================
   PAGE WRAPPER
   ============================================= */
.page-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 1.5rem) var(--space-md) var(--space-xl);
}

/* Narrower container for forms/quiz */
.page-content--narrow {
    max-width: 680px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8943e 100%);
    color: #000;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.2);
}

.btn:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.2);
}

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

.btn--outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: var(--color-gold-bg);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text-muted);
    border: none;
    padding: 12px 16px;
}

.btn--ghost:hover {
    color: var(--color-text);
    background: var(--color-surface-2);
}

.btn--sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn--md {
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 600;
}


.btn--lg {
    padding: 20px 40px;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.btn--xl {
    padding: 24px 50px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    border-radius: var(--radius-md);
}


.btn--full {
    width: 100%;
    justify-content: center;
}

/* =============================================
   CARDS / SURFACES
   ============================================= */
.card {
    background: rgba(22, 22, 22, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeInUp 0.8s ease-out both;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
    opacity: 0.6;
}

.card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.06);
    transform: translateY(-2px);
}

.card--gold-border {
    border-color: rgba(201, 168, 76, 0.4);
}

.card--gold-border::before {
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.8;
}

.card--glass {
    background: rgba(22, 22, 22, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.04);
}

.card--featured {
    border-color: rgba(201, 168, 76, 0.35);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 76, 0.08);
}

.card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--color-gold) 50%, transparent 95%);
    width: 100%;
}

/* =============================================
   FORM ELEMENTS
   ============================================= */
.form-group {
    margin-bottom: var(--space-md);
}

label,
.form-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--color-surface-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: all 0.25s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

select {
    padding-right: 45px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
    border-color: var(--color-gold);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(201, 168, 76, 0.12), 0 0 16px rgba(201, 168, 76, 0.06);
}

input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

/* =============================================
   QUIZ CHOICE CARDS
   ============================================= */
.choice-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 18px;
    margin-bottom: var(--space-xs);
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: var(--font-size-base);
}

.choice-item:hover {
    border-color: var(--color-gold);
    background: var(--color-gold-bg);
    color: var(--color-text);
}

.choice-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
    flex-shrink: 0;
    cursor: pointer;
}

/* Selected state */
.choice-item:has(input:checked) {
    border-color: var(--color-gold);
    background: rgba(201, 168, 76, 0.15); /* More vibrant accent */
    color: var(--color-text);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.1);
}

/* =============================================
   PROGRESS BAR
   ============================================= */
.progress-bar {
    height: 3px;
    background: var(--color-border);
    border-radius: 2px;
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.progress-bar__fill {
    height: 100%;
    background: var(--color-gold);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* =============================================
   STEP INDICATOR
   ============================================= */
.step-indicator {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.step-indicator span {
    color: var(--color-gold);
}

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
h1,
h2,
h3,
h4 {
    color: var(--color-text);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(1.75rem, 5vw, var(--font-size-3xl));
}

h2 {
    font-size: clamp(1.4rem, 3vw, var(--font-size-2xl));
}

h3 {
    font-size: var(--font-size-xl);
}

.text-gold {
    color: var(--color-gold);
}

.text-muted {
    color: var(--color-text-muted);
}

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

/* =============================================
   MOBILE RESPONSIVENESS
   ============================================= */
@media (max-width: 992px) {
    :root {
        --nav-height: 60px;
    }

    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .page-content {
        padding-top: calc(var(--nav-height) + var(--space-md));
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .btn--lg {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   MARQUEE BANNER
   ============================================= */
.marquee-section {
    background: transparent;
    color: var(--color-gold);
    padding: 40px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-track {
    display: flex;
    gap: 120px;
    padding-right: 120px;
    align-items: center;
}

.marquee-label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    letter-spacing: 0.35em;
    font-weight: 800;
    color: var(--color-text-muted);
}

.marquee-track span {
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.brand-logo {
    display: inline-block;
    height: 25px;
    background-color: var(--color-gold);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.titleist-logo {
    width: 90px;
    -webkit-mask-image: url('../images/titleist.svg');
    mask-image: url('../images/titleist.svg');
}

.ping-logo {
    width: 70px;
    -webkit-mask-image: url('../images/ping.svg');
    mask-image: url('../images/ping.svg');
}

.brand-logo-text {
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    line-height: 1;
    opacity: 0.95;
    text-transform: none; /* Override standard marquee uppercase */
}

.taylormade-text {
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.callaway-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
}

.trackman-text {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-right: 4px;
}


.foresight-text {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.foresight-text strong {
    font-weight: 900;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   SECTIONS & LAYOUT
   ============================================= */
/* =============================================
   HOME PAGE SPECIFIC STYLES
   ============================================= */
/* Home Page Specifics */
.hero {
    padding-top: var(--nav-height);
    padding-bottom: 80px;
    background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.08), transparent 600px),
                radial-gradient(circle at bottom left, rgba(201, 168, 76, 0.05), transparent 600px);
}

.hero__inner,
.section__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
}

.section {
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}



.section--dark {
    background-color: var(--color-bg);
}

.hero__headline {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: #fff;
    animation: fadeInUp 0.8s ease-out both;
}

.hero__sub {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out both 0.1s;
}

.hero__image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 600px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 1s ease-out both 0.2s;
}
.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__trust-banner {
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.05) 50%, transparent 100%);
    max-width: 1000px;
    margin: 40px auto;
    opacity: 0.8;
    position: relative;
    z-index: 10;
}

@media (min-width: 769px) {
    .nav__mobile {
        display: none !important;
    }
}

/* =============================================
   HERO SECTION
   ============================================= */
/* (Consolidated into line 732) */

.hero__text {
    display: flex;
    flex-direction: column;
}

.hero__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.hero__headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero__sub {
    color: var(--color-text-muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero__trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    opacity: 0.8;
}

.hero__image-col {
    position: relative;
}

.hero__image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__card {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    background: var(--color-gold);
    color: #000;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    max-width: 250px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1.5px solid #000;
    border-radius: 50%;
    margin-top: 1rem;
}

/* =============================================
   PROCESS & TRUST
   ============================================= */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.step-card {
    background: linear-gradient(168deg, rgba(40, 40, 40, 0.6) 0%, var(--color-surface-2) 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.step-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.06);
    transform: translateY(-3px);
}

.step-card__num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.step-card--compact {
    padding: 1.25rem 1.75rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
}

.step-card--compact .step-card__num {
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 1;
    opacity: 0.6;
}

.step-card--compact h3 {
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.step-card--compact p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.trust-messaging {
    margin-top: 5rem;
    padding: 3rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.pricing-card--popular {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, var(--color-surface-2) 100%);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.pricing-card__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.pricing-card__features li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 800;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--gold {
    background: var(--color-gold);
    color: #000;
}

/* =============================================
   FAQ
   ============================================= */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    color: var(--color-gold);
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* =============================================
/* =============================================
   TRUST SPLIT LAYOUT
   ============================================= */
.trust-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* matches image left-right balance */
    gap: 80px;
}

.trust-split-left {
    text-align: left;
    position: sticky;
    top: 120px;
}

.trust-split-label {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-split-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: -0.02em;
}

.trust-divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin-top: 30px;
    opacity: 0.8;
}

.trust-split-right {
    display: flex;
    flex-direction: column;
    gap: 50px; /* plenty of breathing room */
    padding-top: 10px;
}

.trust-list-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.trust-item-icon {
    color: var(--color-gold);
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 2px;
}

.trust-item-content {
    flex: 1;
}

.trust-item-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.trust-item-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .trust-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .trust-split-left {
        position: static;
    }
    .trust-split-heading {
        font-size: 3rem;
    }
}

/* =============================================
   RESPONSIVE OVERRIDES
   ============================================= */
@media (max-width: 992px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero__text {
        align-items: center;
    }

    .hero__headline {
        font-size: clamp(2rem, 10vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .hero__sub {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
    }

    .hero__card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -1rem;
    }

    /* Fix Pricing Badge Overlap */
    .pricing-card__badge {
        position: relative !important;
        top: 0 !important;
        left: auto !important;
        transform: none !important;
        display: inline-block;
        width: max-content;
        margin: -1rem auto 1.5rem auto;
        font-size: 0.75rem;
        z-index: 2;
    }
    
    .pricing-card {
        padding-top: 2rem;
        align-items: center;
        text-align: center;
    }
}