/* ==========================================================================
   AURA DENTAL & FACIAL AESTHETICS — LUXURY EDITORIAL DESIGN SYSTEM
   Palette: Porcelain White (#FDFBF7), Soft Cream (#F7F2EB), Champagne Gold (#D4AF37),
            Deep Emerald (#0A261D), Obsidian Charcoal (#12151B)
   ========================================================================== */

:root {
    /* Base Color Tokens */
    --porcelain-base: #FDFBF7;
    --porcelain-card: #FFFFFF;
    --cream-surface: #F7F2EB;
    --cream-subtle: #FAF6F0;
    --cream-dark: #EFE7DC;

    /* Jewel & Dark Obsidian Accents */
    --obsidian: #12151B;
    --obsidian-light: #1D232E;
    --emerald-deep: #0A261D;
    --emerald-rich: #0E382B;
    --emerald-surface: #124536;
    --emerald-glow: rgba(14, 56, 43, 0.15);

    /* Champagne Gold Suite */
    --gold: #D4AF37;
    --gold-light: #E8D196;
    --gold-dark: #A88424;
    --gold-glow: rgba(212, 175, 55, 0.22);
    --gold-subtle: rgba(212, 175, 55, 0.08);
    --gold-gradient: linear-gradient(135deg, #ECCF87 0%, #D4AF37 50%, #B28B23 100%);
    --gold-border: rgba(212, 175, 55, 0.35);

    /* Typography Colors */
    --text-primary: #12151B;
    --text-secondary: #4F5665;
    --text-muted: #7D8696;
    --text-light: #FAF8F5;

    /* Hairline Borders & Shadows */
    --border-light: rgba(18, 21, 27, 0.08);
    --border-cream: rgba(212, 175, 55, 0.2);
    --shadow-subtle: 0 4px 20px rgba(18, 21, 27, 0.04);
    --shadow-elevated: 0 12px 35px rgba(18, 21, 27, 0.08);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
    --shadow-emerald: 0 16px 40px rgba(10, 38, 29, 0.2);

    /* Fonts & Radii */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    --transition-smooth: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--porcelain-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, .serif-font {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--obsidian);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

p {
    color: var(--text-secondary);
}

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

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

/* Layout Utilities */
.section-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 6.5rem 1.5rem;
}

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

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
    background: var(--gold-subtle);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-cream);
}

.section-heading {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 1rem;
    color: var(--obsidian);
}

.section-desc {
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Buttons & Interactive Pills
   -------------------------------------------------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--gold-gradient);
    color: var(--obsidian);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.85rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(30deg) translateY(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after {
    transform: rotate(30deg) translateY(100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    background: #FFFFFF;
    color: var(--obsidian);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-tertiary {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gold-dark);
    padding: 0.5rem 0.75rem;
    transition: var(--transition-smooth);
}

.btn-tertiary:hover {
    color: var(--obsidian);
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
    background: var(--obsidian);
    color: #FAF8F5;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.announcement-inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    text-align: center;
}

.ticker-badge {
    background: var(--gold);
    color: var(--obsidian);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.1em;
}

.ticker-text {
    color: #E2E4EB;
    margin: 0;
}

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

.ticker-link {
    color: var(--gold-light);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.ticker-link:hover {
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Header & Luxury Navigation
   -------------------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 25px rgba(18, 21, 27, 0.06);
}

.nav-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.brand-monogram {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--obsidian);
}

.brand-diamond {
    color: var(--gold);
    font-size: 1.1rem;
}

.brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.25s ease;
}

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

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

.highlight-link {
    color: var(--gold-dark);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--obsidian);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    background: var(--cream-subtle);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.nav-phone:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.btn-nav {
    padding: 0.6rem 1.35rem;
    font-size: 0.88rem;
}

.mobile-cta-wrap {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--obsidian);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   Editorial Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 5rem 1.5rem 6.5rem;
    overflow: hidden;
    background: radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(14, 56, 43, 0.04) 0%, transparent 50%),
                var(--porcelain-base);
}

.hero-container {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFFFFF;
    border: 1px solid var(--border-cream);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--obsidian);
    box-shadow: var(--shadow-subtle);
    margin-bottom: 1.5rem;
}

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

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    line-height: 1.08;
    color: var(--obsidian);
    margin-bottom: 1.5rem;
}

.hero-serif-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-dark);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-accolades {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.accolade-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.accolade-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.accolade-icon {
    font-size: 1.5rem;
}

.accolade-meta {
    display: flex;
    flex-direction: column;
}

.accolade-meta strong {
    font-size: 0.88rem;
    color: var(--obsidian);
}

.accolade-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.accolade-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
}

/* Hero Visual Feature Card */
.hero-card-side {
    position: relative;
}

.hero-visual-card {
    background: #FFFFFF;
    border: 1px solid var(--border-cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--emerald-deep);
    color: #FAF8F5;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-cream);
    z-index: 2;
}

.hero-visual-graphic {
    position: relative;
    padding: 1.5rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smile-vector {
    width: 100%;
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(10, 38, 29, 0.15));
}

.hero-card-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.cf-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.cf-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--obsidian);
}

/* --------------------------------------------------------------------------
   FEATURE 1: Interactive Before & After Smile Comparison Suite
   -------------------------------------------------------------------------- */
.transformations-section {
    background: var(--cream-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.case-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.case-tab {
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.case-tab:hover {
    border-color: var(--gold);
    color: var(--obsidian);
}

.case-tab.active {
    background: var(--emerald-deep);
    color: #FFFFFF;
    border-color: var(--emerald-deep);
    box-shadow: 0 4px 15px rgba(10, 38, 29, 0.2);
}

.case-tab.active .tab-icon {
    filter: drop-shadow(0 0 3px var(--gold));
}

.comparison-stage-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.comparison-wrapper {
    position: relative;
}

.ba-slider-container {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    border: 2px solid #FFFFFF;
    background: #0E131A;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.ba-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-before {
    z-index: 1;
}

.ba-after {
    z-index: 2;
    width: 50%;
    border-right: 2px solid var(--gold);
}

.ba-visual-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

/* Dental Visual SVG Frame styling */
.dental-visual {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.dental-visual svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-tag {
    position: absolute;
    top: 1.25rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
}

.tag-before {
    left: 1.25rem;
    background: rgba(18, 21, 27, 0.75);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag-after {
    right: 1.25rem;
    background: rgba(212, 175, 55, 0.9);
    color: var(--obsidian);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Draggable Handle */
.ba-handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.ba-handle-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 15px var(--gold-glow);
    cursor: ew-resize;
    pointer-events: auto;
    transition: transform 0.15s ease;
}

.ba-slider-container:hover .ba-handle-btn {
    transform: translate(-50%, -50%) scale(1.08);
}

.ba-range-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 15;
    margin: 0;
}

.slider-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Case Metadata Card */
.case-meta-card {
    background: #FFFFFF;
    border: 1px solid var(--border-cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-elevated);
}

.meta-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.meta-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-deep);
    background: rgba(14, 56, 43, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

.meta-time {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.meta-title {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    color: var(--obsidian);
}

.meta-description {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.meta-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--cream-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 1.75rem;
    border: 1px solid var(--border-light);
}

.spec-box {
    display: flex;
    flex-direction: column;
}

.spec-title {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--obsidian);
}

.patient-quote-box {
    border-left: 2px solid var(--gold);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 0.92rem;
    font-style: italic;
    color: var(--obsidian);
    margin-bottom: 0.5rem;
}

.quote-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.case-action-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-case {
    font-size: 0.88rem;
    padding: 0.75rem 1.4rem;
}

.btn-case-calc {
    font-size: 0.88rem;
    padding: 0.75rem 1.4rem;
}

/* --------------------------------------------------------------------------
   FEATURE 2: 3-Step Smile Assessment Quiz
   -------------------------------------------------------------------------- */
.quiz-section {
    position: relative;
    padding: 6.5rem 1.5rem;
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
                var(--porcelain-base);
}

.quiz-card-wrapper {
    max-width: 860px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid var(--border-cream);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: var(--shadow-elevated);
    position: relative;
}

.quiz-progress-bar-container {
    width: 100%;
    height: 6px;
    background: var(--cream-dark);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 2rem auto 0.75rem;
    max-width: 420px;
}

.quiz-progress-bar {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
}

.quiz-step-indicator {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quiz-step-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.quiz-step-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-question {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
    color: var(--obsidian);
    text-align: center;
}

.step-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.quiz-option-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.quiz-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--porcelain-base);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.quiz-option-card:hover .option-content {
    border-color: var(--gold-light);
    background: #FFFFFF;
    transform: translateY(-2px);
}

.quiz-option-card input[type="radio"]:checked + .option-content {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.option-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.option-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.option-text strong {
    font-size: 1.05rem;
    color: var(--obsidian);
    margin-bottom: 0.2rem;
}

.option-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.option-check {
    width: 26px;
    height: 26px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: transparent;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.quiz-option-card input[type="radio"]:checked + .option-content .option-check {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--obsidian);
    font-weight: bold;
}

.quiz-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Quiz Result Pane */
.quiz-result-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.result-badge {
    display: inline-block;
    background: var(--emerald-deep);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.result-title {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
    color: var(--obsidian);
}

.result-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.quiz-result-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.res-spec-card {
    background: var(--cream-subtle);
    border: 1px solid var(--border-cream);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
}

.res-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.res-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--obsidian);
}

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

.quiz-result-perks {
    background: rgba(14, 56, 43, 0.05);
    border: 1px solid rgba(14, 56, 43, 0.15);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--emerald-deep);
}

.quiz-result-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-quiz-book {
    width: 100%;
    max-width: 420px;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-quiz-restart {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.btn-quiz-restart:hover {
    color: var(--obsidian);
}

/* --------------------------------------------------------------------------
   FEATURE 3: 0% APR Finance Monthly Payment Calculator
   -------------------------------------------------------------------------- */
.calculator-section {
    background: var(--cream-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: stretch;
}

.calc-controls-card {
    background: #FFFFFF;
    border: 1px solid var(--border-cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-elevated);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
}

.calc-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--obsidian);
    margin-bottom: 0.75rem;
}

.preset-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.preset-btn {
    padding: 0.55rem 0.95rem;
    background: var(--porcelain-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.preset-btn:hover {
    border-color: var(--gold);
    color: var(--obsidian);
}

.preset-btn.active {
    background: var(--obsidian);
    color: #FFFFFF;
    border-color: var(--obsidian);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.slider-value-badge {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold-dark);
    font-family: var(--font-serif);
}

/* Custom Range Sliders */
.luxury-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--cream-dark);
    outline: none;
    cursor: pointer;
}

.luxury-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: var(--gold-gradient);
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.luxury-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.luxury-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: var(--gold-gradient);
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.range-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.deposit-pills {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.deposit-pill {
    flex: 1;
    padding: 0.5rem;
    background: var(--porcelain-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    transition: var(--transition-smooth);
}

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

.deposit-pill.active {
    background: var(--gold-subtle);
    border-color: var(--gold);
    color: var(--gold-dark);
    font-weight: 700;
}

.term-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.term-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.85rem 0.5rem;
    background: var(--porcelain-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

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

.term-btn.active {
    background: var(--emerald-deep);
    border-color: var(--emerald-deep);
    box-shadow: 0 4px 15px rgba(10, 38, 29, 0.15);
}

.term-num {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--obsidian);
}

.term-btn.active .term-num {
    color: #FFFFFF;
}

.term-rate {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.term-btn.active .term-rate {
    color: var(--gold-light);
}

/* Calculation Output Summary Card */
.calc-summary-card {
    background: var(--obsidian);
    color: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-cream);
    padding: 2.5rem;
    box-shadow: var(--shadow-emerald);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.summary-top {
    text-align: center;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    font-weight: 700;
}

.monthly-figure-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin: 0.75rem 0;
}

.monthly-symbol {
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--gold-light);
}

.monthly-number {
    font-size: 3.6rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: #FFFFFF;
    line-height: 1;
}

.monthly-suffix {
    font-size: 1rem;
    color: var(--text-muted);
}

.apr-highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--border-cream);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    color: var(--gold-light);
}

.summary-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.5rem 0;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #C3C7D2;
}

.breakdown-row .b-val {
    font-weight: 600;
    color: #FFFFFF;
}

.gold-bold {
    color: var(--gold-light) !important;
    font-weight: 700;
}

.total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 0.85rem;
    font-size: 1rem;
}

.total-row .b-label {
    font-weight: 700;
    color: #FFFFFF;
}

.total-row .b-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
}

.summary-cta-wrap {
    margin-top: 1rem;
}

.btn-calc-apply {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
}

.finance-disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Signature Treatments Grid
   -------------------------------------------------------------------------- */
.treatments-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.luxury-treatment-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    position: relative;
}

.luxury-treatment-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-cream);
    box-shadow: var(--shadow-elevated);
}

.tc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.tc-icon {
    font-size: 2.2rem;
}

.tc-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    background: var(--gold-subtle);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.tc-title {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
    color: var(--obsidian);
}

.tc-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.tc-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tc-features li span {
    color: var(--emerald-rich);
    font-weight: 700;
}

.tc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tc-pricing {
    display: flex;
    flex-direction: column;
}

.tc-from {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.tc-amount {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--gold-dark);
    line-height: 1;
}

.tc-freq {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-treatment {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--obsidian);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: var(--cream-surface);
    transition: var(--transition-smooth);
}

.btn-treatment:hover {
    background: var(--gold);
    color: var(--obsidian);
    transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   The Clinic Experience (Deep Royal Emerald Accent)
   -------------------------------------------------------------------------- */
.clinic-experience-section {
    padding: 3rem 1.5rem;
}

.emerald-card-banner {
    background: linear-gradient(135deg, #0A261D 0%, #061812 100%);
    border: 1px solid var(--border-cream);
    border-radius: var(--radius-xl);
    padding: 4.5rem 3.5rem;
    color: #FFFFFF;
    box-shadow: var(--shadow-emerald);
    position: relative;
    overflow: hidden;
}

.emerald-card-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.emerald-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.emerald-heading {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.emerald-desc {
    font-size: 1.1rem;
    color: #D1D9D6;
    max-width: 750px;
    margin-bottom: 3.5rem;
    line-height: 1.7;
}

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

.em-feat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    backdrop-filter: blur(10px);
}

.em-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.em-feat h4 {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.em-feat p {
    font-size: 0.88rem;
    color: #B5BFBC;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Pricing & Fee Schedule Table
   -------------------------------------------------------------------------- */
.pricing-section {
    max-width: 1060px;
}

.pricing-card-wrap {
    background: #FFFFFF;
    border: 1px solid var(--border-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.pricing-table-luxury {
    display: flex;
    flex-direction: column;
}

.p-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 1.35rem 2rem;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
}

.p-row:last-child {
    border-bottom: none;
}

.header-row {
    background: var(--cream-surface);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--obsidian);
    border-bottom: 2px solid var(--border-cream);
}

.treatment-name {
    display: flex;
    flex-direction: column;
}

.treatment-name strong {
    font-size: 0.98rem;
    color: var(--obsidian);
}

.p-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.treatment-cost {
    font-size: 1.15rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--obsidian);
}

.treatment-finance {
    font-size: 0.95rem;
    color: var(--gold-dark);
}

.badge-0apr {
    display: inline-block;
    background: var(--gold-subtle);
    color: var(--gold-dark);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-cream);
    margin-left: 0.35rem;
}

.badge-pay {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   Verified Patient Reviews
   -------------------------------------------------------------------------- */
.reviews-section {
    background: var(--porcelain-base);
}

.review-stars-summary {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: -0.5rem;
    margin-bottom: 3rem;
}

.stars-gold {
    color: var(--gold);
    letter-spacing: 2px;
}

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

.review-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rev-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.rev-text {
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: italic;
    color: var(--obsidian);
    margin-bottom: 1.75rem;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
}

.rev-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--emerald-deep);
    color: var(--gold-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.rev-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--obsidian);
}

.rev-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
    max-width: 860px;
}

.faq-accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-subtle);
}

.faq-question {
    width: 100%;
    padding: 1.35rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--obsidian);
    gap: 1rem;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--gold-dark);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.75rem 1.5rem;
}

/* --------------------------------------------------------------------------
   Booking Consultation Section & Smart Form
   -------------------------------------------------------------------------- */
.booking-section {
    padding-bottom: 7.5rem;
}

.booking-card-container {
    background: #FFFFFF;
    border: 1px solid var(--border-cream);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    overflow: hidden;
}

.booking-info-col {
    background: var(--cream-surface);
    padding: 3.5rem;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.booking-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--obsidian);
}

.booking-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.prefill-badge {
    background: var(--gold-subtle);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--obsidian);
    margin-bottom: 1.75rem;
    animation: fadeIn 0.3s ease;
}

.concierge-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.9rem;
}

.c-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.c-item strong {
    display: block;
    color: var(--obsidian);
}

.c-item span, .c-item a {
    color: var(--text-secondary);
}

.c-item a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.cqc-assurance-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    font-size: 0.8rem;
}

.cqc-assurance-card strong {
    color: var(--obsidian);
}

.cqc-assurance-card p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Booking Form Column */
.booking-form-col {
    padding: 3.5rem;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-title {
    font-size: 1.85rem;
    color: var(--obsidian);
}

.form-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: -0.75rem;
    margin-bottom: 0.75rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--obsidian);
}

.lux-input, .lux-select, .lux-textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--porcelain-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--obsidian);
    outline: none;
    transition: var(--transition-smooth);
}

.lux-input:focus, .lux-select:focus, .lux-textarea:focus {
    border-color: var(--gold);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.btn-submit-booking {
    width: 100%;
    padding: 1.05rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.form-success-modal {
    background: rgba(14, 56, 43, 0.08);
    border: 1.5px solid var(--emerald-rich);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.success-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald-rich);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 0.75rem;
}

.form-success-modal h4 {
    font-size: 1.3rem;
    color: var(--emerald-deep);
    margin-bottom: 0.4rem;
}

.form-success-modal p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--obsidian);
    color: #FAF8F5;
    border-top: 1px solid var(--border-cream);
    padding: 5rem 1.5rem 2rem;
}

.footer-top {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .brand-monogram {
    color: #FFFFFF;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #A6ADB9;
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

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

.f-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    color: var(--gold-light);
}

.f-title {
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.f-links a {
    color: #A6ADB9;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.f-links a:hover {
    color: var(--gold-light);
}

.f-address {
    font-style: normal;
    font-size: 0.88rem;
    color: #A6ADB9;
    line-height: 1.6;
}

.f-address strong {
    color: #FFFFFF;
}

.footer-bottom {
    max-width: 1260px;
    margin: 2rem auto 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #7D8696;
    flex-wrap: wrap;
    gap: 1rem;
}

.f-legal {
    display: flex;
    gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints & Mobile Optimization
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container,
    .comparison-stage-grid,
    .calculator-grid,
    .booking-card-container {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .booking-info-col {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
}

@media (max-width: 860px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        background: #FFFFFF;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        justify-content: center;
        gap: 1.75rem;
        padding: 3rem 2rem;
        transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 999;
    }

    .nav-links.nav-open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hide-mobile {
        display: none;
    }

    .mobile-cta-wrap {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }

    .mobile-cta-wrap .btn-primary {
        width: 100%;
    }

    .quiz-card-wrapper {
        padding: 2rem 1.5rem;
    }

    .quiz-result-specs {
        grid-template-columns: 1fr;
    }

    .p-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .header-row {
        display: none;
    }

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

@media (max-width: 600px) {
    .section-container {
        padding: 4rem 1.25rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .ba-slider-container {
        height: 320px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .f-legal {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
}
