/* ========================================
   FINESSE HEALTH - PREMIUM BLACK & GOLD
   Complete CSS for Static HTML Site
   ======================================== */

/* === VIEW TRANSITIONS (Progressive Enhancement) === */
@view-transition { navigation: auto; }

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PREMIUM BLACK & GOLD PALETTE */
    --black: #0a0a0a;
    --black-soft: #1a1a1a;
    --black-charcoal: #2d2d2d;
    --gold: #c9a962;
    --gold-light: #d4b87a;
    --gold-dark: #b8941f;
    --gold-champagne: #f7e7ce;
    --white: #ffffff;
    --platinum: #e5e4e2;
    --gray: #888888;

    /* Shadows */
    --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(201, 169, 98, 0.4);

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* === BRAND DESIGN SYSTEM TOKENS (merged from brand.css) === */

    /* Extended Palette */
    --gold-bright: #e8d5a3;
    --cream: #f8f6f0;
    --gray-light: #9ca3af;
    --success: #059669;
    --error: #dc2626;
    --warning: #d97706;
    --gold-shimmer: linear-gradient(90deg, #c9a962, #e8d5a3, #c9a962, #e8d5a3);

    /* Typography Families */
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Bebas Neue', 'Impact', sans-serif;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Extended Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.3);
    --shadow-gold-lg: 0 10px 40px rgba(201, 169, 98, 0.35);

    /* Border Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Additional Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--platinum);
    background: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-content a,
footer a,
.footer-nav a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.site-content a:hover,
footer a:hover {
    color: var(--gold-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--platinum);
}

ul {
    list-style: none;
}

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

/* === SKIP LINK === */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: 10px;
}

/* === NAVIGATION === */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-links li a {
    color: var(--platinum);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--platinum);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 1rem 2.5rem;
    border: 2px solid var(--gold);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.cta-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--black-soft);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 6rem 0;
    background: var(--black-soft);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--platinum);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    display: block;
    background: linear-gradient(145deg, var(--black-charcoal), var(--black-soft));
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition);
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--platinum);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === WHY SECTION === */
.why-section {
    padding: 6rem 0;
    background: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    background: linear-gradient(145deg, var(--black-charcoal), var(--black-soft));
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition);
}

.feature:hover {
    border-color: var(--gold);
}

.feature h3 {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature p {
    color: var(--platinum);
    font-size: 0.95rem;
    margin: 0;
}

/* === PROVIDER SECTION === */
.provider-section {
    padding: 6rem 0;
    background: var(--black-soft);
}

.provider-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--black-charcoal), var(--black));
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.provider-info h3 {
    color: var(--gold);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.provider-title {
    color: var(--gold-light);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.provider-bio {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.provider-credentials {
    margin-bottom: 2rem;
}

.provider-credentials li {
    color: var(--platinum);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

/* === PROCESS SECTION === */
.process-section {
    padding: 6rem 0;
    background: var(--black);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step h3 {
    color: var(--gold-light);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--platinum);
    font-size: 0.95rem;
    margin: 0;
}

/* === LOCATION SECTION === */
.location-section {
    padding: 6rem 0;
    background: var(--black-soft);
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.office-address,
.telehealth-info {
    background: linear-gradient(145deg, var(--black-charcoal), var(--black));
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.office-address h3,
.telehealth-info h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.office-address p,
.telehealth-info p {
    color: var(--platinum);
    margin-bottom: 0.75rem;
}

.telehealth-info ul {
    margin-top: 1rem;
}

.telehealth-info li {
    color: var(--platinum);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.telehealth-info li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* === FINAL CTA SECTION === */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
    text-align: center;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

.final-cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === TRUST SIGNALS === */
.trust-signals {
    background: var(--black);
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.trust-signals .container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-signals span {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
}

/* === FOOTER === */
footer, .site-footer {
    background: var(--black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

/* Branded full footer grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--platinum);
    opacity: 0.7;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h4,
.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--platinum);
    font-size: 0.95rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--platinum);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--platinum);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--platinum);
    font-size: 0.9rem;
}

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

.copyright {
    text-align: center;
    color: var(--platinum);
    opacity: 0.7;
    font-size: 0.85rem;
}

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

/* ═══════════════════════════════════════════════════════════════
   BRAND DESIGN SYSTEM COMPONENTS (merged from brand.css)
   ═══════════════════════════════════════════════════════════════ */

/* --- Accent & Gold Text Utilities --- */
.text-accent,
.tagline {
    font-family: var(--font-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Gold CTA Buttons --- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-gold:hover {
    background: var(--gold-bright);
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-2px);
}

.btn-gold:active { transform: translateY(0); }

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-gold-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

/* --- Trust Badges --- */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Pricing Cards --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.pricing-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.pricing-card.featured {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.pricing-card.featured .tier-name { color: var(--gold); }
.pricing-card.featured .price { color: var(--white); }
.pricing-card:hover { box-shadow: var(--shadow-lg); }

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tier-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

/* --- Floating Phone Button (mobile leads) --- */
.fab-phone {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-gold-lg);
    z-index: 1000;
    transition: var(--transition-base);
    animation: pulse-gold 2s infinite;
}

.fab-phone:hover {
    transform: scale(1.1);
    background: var(--gold-bright);
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(201, 169, 98, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0); }
}

/* --- Floating Mobile Booking Button --- */
.mobile-book-fab {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    animation: pulse-gold 2s infinite;
}

.mobile-book-fab:hover {
    background: var(--gold-bright);
    color: var(--black);
}

/* --- Sticky CTA Bar --- */
.sticky-cta {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: var(--space-md) var(--space-lg);
    z-index: 999;
    transition: top 0.3s ease;
    border-bottom: 1px solid var(--gold);
}

.sticky-cta.visible { top: 0; }

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.sticky-cta-text {
    color: var(--gray-light);
    font-size: 0.9375rem;
}

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

/* --- Testimonial Cards --- */
.testimonial-card {
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--platinum);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-name {
    font-weight: 600;
    color: var(--gold);
}

.testimonial-title {
    font-size: 0.875rem;
    color: var(--gray);
}

.stars { color: var(--gold); margin-bottom: var(--space-sm); }

/* --- Feature Cards (alternate) --- */
.feature-card {
    background: linear-gradient(145deg, var(--black-charcoal), var(--black-soft));
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.feature-text {
    color: var(--platinum);
    font-size: 0.9375rem;
}

/* --- Comparison Table --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
}

.comparison-table th {
    background: var(--black);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-weight: 600;
    text-align: left;
}

.comparison-table th:last-child {
    background: var(--gold);
    color: var(--black);
}

.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    color: var(--platinum);
}

.comparison-table tr:hover td {
    background: rgba(201, 169, 98, 0.05);
}

/* --- Section Utilities --- */
.section { padding: var(--space-3xl) 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-cream { background: var(--cream); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-header .tagline {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-header h2 { margin-bottom: var(--space-md); }
.section-header p { color: var(--gray); font-size: 1.125rem; }

/* --- Availability Widget --- */
.availability-widget {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-full);
    padding: var(--space-sm) var(--space-lg);
}

.availability-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.availability-text {
    font-size: 0.875rem;
    color: var(--platinum);
}

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

/* --- Form Styling --- */
.form-premium .form-control {
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--black-soft);
    color: var(--platinum);
}

.form-premium .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
    outline: none;
}

.form-premium label {
    font-weight: 500;
    color: var(--platinum);
    margin-bottom: var(--space-xs);
    display: block;
}

/* --- Provider Trust Section --- */
.provider-trust {
    background: var(--black-soft);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.provider-trust .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.provider-trust img {
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.provider-trust h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.25rem;
}

.provider-trust .provider-license {
    margin: 0.5rem 0;
    color: var(--gold);
    font-size: 0.9rem;
}

.provider-trust .provider-quote {
    margin: 0;
    font-size: 0.9rem;
    color: var(--platinum);
    opacity: 0.8;
    font-style: italic;
}

/* --- Medical Review Badge --- */
.medical-review-badge {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: var(--platinum);
    opacity: 0.8;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.gold-shimmer {
    background: var(--gold-shimmer);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* === RESPONSIVE === */
/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    margin: 6px 0;
    transition: var(--transition);
}

/* Hamburger → X animation */
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-links li a {
        font-size: 1.25rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-links.nav-open ~ .nav-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        bottom: 3rem;
        left: 0;
        right: 0;
        z-index: 1001;
    }

    .main-nav {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1rem 3rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .trust-items {
        gap: 1.5rem;
    }

    .services-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trust-signals .container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Problem/Solution mobile */
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Pricing Preview mobile */
    .pricing-preview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* Brand components mobile */
    .mobile-book-fab { display: flex; }
    .pricing-card.featured { transform: none; }
    .sticky-cta-text { display: none; }
    .provider-trust .container { flex-direction: column; text-align: center; }
}

@media (min-width: 992px) {
    .fab-phone { display: none; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .service-card,
    .feature,
    .step,
    .office-address,
    .telehealth-info {
        padding: 1.5rem;
    }

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

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* === PROVIDER IMAGE === */
.provider-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gold);
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 5rem 0;
    background: #0d0d0d;
    border-top: 1px solid var(--black-soft);
}
.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.testimonial-card {
    background: #111;
    border: 1px solid #222;
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}
.testimonial-text {
    color: var(--platinum);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-author {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .testimonial-carousel { grid-template-columns: 1fr; }
}

/* === PROBLEM / SOLUTION SECTION === */
.problem-solution {
    padding: 5rem 0;
    background: #0d0d0d;
    border-top: 1px solid #1a1a1a;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problem-column {
    color: #888;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

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

.problem-solution h2 {
    text-align: left;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
}

.problem-solution .problem-list,
.problem-solution .solution-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #111;
    border-left: 2px solid #333;
    border-radius: 2px;
}

.problem-item p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.solution-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #0f0d05;
    border-left: 2px solid var(--gold);
    border-radius: 2px;
}

.solution-item p {
    color: var(--platinum);
    margin: 0;
    font-size: 0.9rem;
}

.problem-icon {
    color: #555;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.solution-icon {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* === PRICING PREVIEW SECTION === */
.pricing-preview {
    padding: 5rem 0;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.pricing-preview-label {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-preview-subtitle {
    color: #888;
    text-align: center;
    max-width: 580px;
    margin: 0.5rem auto 3rem;
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-preview-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.pricing-preview-card--featured {
    background: #141008;
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.pricing-preview-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-preview-tier {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pricing-preview-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
}

.pricing-preview-period {
    color: #666;
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
}

.pricing-preview-desc {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.pricing-preview-cta {
    display: block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-preview-cta--primary {
    display: block;
    background: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
    padding: 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-preview-footnote {
    text-align: center;
    color: #555;
    font-size: 0.78rem;
    margin-top: 2rem;
}

/* === FAQ SECTION === */
.faq-section {
    padding: 5rem 0;
    background: #0d0d0d;
    border-top: 1px solid #1a1a1a;
}

.faq-label {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-list {
    max-width: 760px;
    margin: 2.5rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #1a1a1a;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--platinum);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 1.25rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 0 0 1.25rem;
    color: #999;
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-toggle {
    color: var(--gold);
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.faq-more {
    text-align: center;
    margin-top: 2.5rem;
}

.faq-more a {
    color: var(--gold);
    font-size: 0.9rem;
}

/* === PRINT STYLES === */
@media print {
    header,
    .trust-bar,
    .trust-signals,
    .hero-cta-group,
    .cta-group,
    .mobile-book-fab,
    .fab-phone,
    .sticky-cta {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    h1, h2, h3, h4 {
        color: black;
    }

    p, li, td {
        color: #333;
    }

    .footer-grid { grid-template-columns: 1fr; }
    .service-card, .feature, .step { break-inside: avoid; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8rem; color: #666; }
    a[href^="tel"]::after { content: " (" attr(href) ")"; font-size: 0.8rem; color: #666; }
}

/* === COOKIE CONSENT BANNER === */
#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    border-top: 1px solid var(--gold);
    padding: 1rem 1.5rem;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.consent-content {
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.consent-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--platinum);
    flex: 1;
    min-width: 280px;
}
.consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
#consent-reject,
#consent-accept {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
#consent-reject {
    background: transparent;
    border: 1px solid #555;
    color: #999;
}
#consent-reject:hover {
    border-color: var(--platinum);
    color: var(--platinum);
}
#consent-accept {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #000;
}
#consent-accept:hover {
    background: var(--gold-light);
}
@media (max-width: 600px) {
    .consent-content { flex-direction: column; text-align: center; }
    .consent-buttons { width: 100%; }
    #consent-reject, #consent-accept { flex: 1; }
}
