/* ==========================================================================
   DIVORCE MUTUEL - Premium Navy/Gold Design System
   Mobile-first responsive design
   Palette: Navy #0f172a, Gold #d4a853, Dark Navy #020617, Navy Light #1e293b
   Fonts: DM Serif Display (headings), Inter (body)
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Core Navy Palette */
    --color-navy: #0f172a;
    --color-navy-light: #1e293b;
    --color-navy-dark: #020617;
    --color-navy-medium: #0b1120;
    --color-navy-950: #010409;
    --color-navy-800: #162036;
    --color-navy-700: #1a2744;
    --color-navy-600: #233556;
    --color-navy-500: #334d73;

    /* Gold Palette */
    --color-gold: #d4a853;
    --color-gold-light: #e8c87a;
    --color-gold-lighter: #f0daa0;
    --color-gold-dark: #b8922e;
    --color-gold-darker: #9a7a22;
    --color-gold-bg: rgba(212, 168, 83, 0.08);
    --color-gold-bg-medium: rgba(212, 168, 83, 0.12);
    --color-gold-bg-strong: rgba(212, 168, 83, 0.18);

    /* Neutral/Cream Palette */
    --color-cream: #fafaf9;
    --color-warm-gray: #78716c;
    --color-warm-gray-light: #a8a29e;
    --color-warm-gray-dark: #57534e;

    /* Semantic Colors */
    --color-primary: #0f172a;
    --color-secondary: #1e293b;
    --color-accent: #d4a853;
    --color-accent-hover: #b8922e;
    --color-bg: #ffffff;
    --color-bg-alt: #fafaf9;
    --color-bg-dark: #f5f5f4;
    --color-text: #1c1917;
    --color-text-secondary: #78716c;
    --color-text-light: #a8a29e;
    --color-text-on-navy: rgba(255, 255, 255, 0.92);
    --color-text-on-navy-muted: rgba(255, 255, 255, 0.6);
    --color-border: #e7e5e4;
    --color-border-light: #f5f5f4;
    --color-success: #16a34a;
    --color-success-bg: rgba(22, 163, 74, 0.08);
    --color-error: #dc2626;
    --color-error-bg: rgba(220, 38, 38, 0.06);
    --color-star: #d4a853;

    /* Typography */
    --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
    --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
    --shadow-3xl: 0 35px 60px -15px rgba(15, 23, 42, 0.3);
    --shadow-gold: 0 4px 14px rgba(212, 168, 83, 0.25);
    --shadow-gold-lg: 0 8px 25px rgba(212, 168, 83, 0.35);
    --shadow-gold-xl: 0 12px 40px rgba(212, 168, 83, 0.4);
    --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.04), 0 6px 16px rgba(15, 23, 42, 0.06);
    --shadow-card-hover: 0 4px 8px rgba(15, 23, 42, 0.06), 0 12px 32px rgba(15, 23, 42, 0.1);
    --shadow-form: 0 20px 60px -15px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    --shadow-form-glow: 0 0 80px rgba(212, 168, 83, 0.15), 0 20px 60px -15px rgba(15, 23, 42, 0.3);
    --shadow-navy: 0 10px 40px rgba(15, 23, 42, 0.4);

    /* Borders */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;

    /* Layout */
    --top-bar-height: 42px;
    --header-height: 72px;
    --total-header-height: calc(var(--top-bar-height) + var(--header-height));
    --container-max: 1240px;
    --container-narrow: 800px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-spring: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--total-header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: 'cv11', 'ss01';
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.875rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.625rem; }

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.25rem; }

::selection {
    background: rgba(212, 168, 83, 0.25);
    color: var(--color-navy);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* --- Section Headers --- */
.section-header {
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.125rem;
    padding: 0.5rem 1.25rem;
    background: var(--color-gold-bg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 168, 83, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.875rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-navy);
    border-color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    border-color: var(--color-gold-light);
    color: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-cta:active {
    transform: translateY(0);
    box-shadow: var(--shadow-gold);
}

.btn-primary {
    background: var(--color-navy);
    color: #fff;
    border-color: var(--color-navy);
}

.btn-primary:hover {
    background: var(--color-navy-light);
    border-color: var(--color-navy-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-navy);
}

.btn-outline:hover {
    background: var(--color-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-small {
    padding: 0.5rem 1.125rem;
    font-size: 0.8125rem;
}

.btn-large {
    padding: 1.0625rem 2.75rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-md);
    letter-spacing: 0.02em;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(15, 23, 42, 0.2);
    border-top-color: var(--color-navy);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background: var(--color-navy-dark);
    color: rgba(255, 255, 255, 0.7);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.top-bar-left {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
}

.top-bar-item svg {
    color: var(--color-gold);
    opacity: 0.7;
    flex-shrink: 0;
}

.top-bar-separator {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.12);
}

.top-bar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    text-decoration: none;
    transition: all var(--transition);
    padding: 0.3125rem 0.875rem;
    border-radius: var(--radius-full);
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.15);
}

.top-bar-phone:hover {
    background: rgba(212, 168, 83, 0.15);
    border-color: rgba(212, 168, 83, 0.3);
    color: var(--color-gold-light);
}

.top-bar-phone svg {
    flex-shrink: 0;
    animation: phoneRing 3s ease-in-out infinite;
}

.top-bar-phone-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    display: none;
}

.top-bar-phone-number {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.75px;
}

@keyframes phoneRing {
    0%, 80%, 100% { transform: rotate(0deg); }
    85% { transform: rotate(12deg); }
    90% { transform: rotate(-12deg); }
    95% { transform: rotate(6deg); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(231, 229, 228, 0.5);
    height: var(--header-height);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 16px rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(212, 168, 83, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.logo-accent {
    color: var(--color-gold);
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.125rem;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: 0.01em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.875rem;
    right: 0.875rem;
    height: 2px;
    background: var(--color-gold);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:hover {
    color: var(--color-gold);
    background: var(--color-gold-bg);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--color-gold);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-navy);
    transition: all var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: var(--color-gold-bg);
    border: 1px solid rgba(212, 168, 83, 0.15);
    text-decoration: none;
}

.header-phone:hover {
    background: var(--color-gold-bg-strong);
    border-color: rgba(212, 168, 83, 0.35);
    color: var(--color-navy);
    transform: translateY(-1px);
}

.header-phone-icon-wrap {
    display: flex;
    color: var(--color-gold);
}

.header-phone-number {
    letter-spacing: 0.5px;
}

.header-cta {
    padding: 0.5625rem 1.25rem;
    font-size: 0.875rem;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle:hover .hamburger-line {
    background: var(--color-gold);
}

/* --- Mobile Menu --- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    z-index: 1101;
    transform: translateX(100%);
    transition: transform var(--transition-spring);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(15, 23, 42, 0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-text);
    transition: all var(--transition);
}

.mobile-menu-close:hover {
    background: var(--color-error-bg);
    color: var(--color-error);
    border-color: rgba(220, 38, 38, 0.2);
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background: var(--color-gold-bg);
    color: var(--color-gold);
    border-left-color: var(--color-gold);
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    margin: 0.5rem 1.5rem;
    background: var(--color-gold-bg);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-gold);
}

.mobile-phone-number {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-navy);
    letter-spacing: 0.5px;
}

.mobile-cta {
    margin: 1rem 1.5rem;
    text-align: center;
    justify-content: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background: var(--color-navy);
    padding: calc(var(--total-header-height) + 3rem) 0 4rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Pattern */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30, 41, 59, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(212, 168, 83, 0.04) 0%, transparent 40%);
    z-index: 1;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 168, 83, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Gradient Orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: orbFloat1 18s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation: orbFloat2 22s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 41, 59, 0.4) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -20px) scale(1.08); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 15px); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

/* --- Hero Content (Left) --- */
.hero-content {
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.75rem;
}

.eyebrow-icon {
    display: flex;
    align-items: center;
    color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-highlight {
    color: var(--color-gold);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), rgba(212, 168, 83, 0.3));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Hero Phone Block --- */
.hero-phone-block {
    margin-bottom: 2rem;
}

.hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition);
}

.hero-phone-link:hover {
    background: rgba(212, 168, 83, 0.18);
    border-color: rgba(212, 168, 83, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.15);
}

.hero-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    color: var(--color-navy);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

.hero-phone-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.hero-phone-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-phone-number {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: 1px;
    line-height: 1;
}

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(212, 168, 83, 0.2);
    flex-shrink: 0;
}

/* --- Hero Badges --- */
.hero-badges {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.875rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.hero-badge:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: rgba(212, 168, 83, 0.25);
    color: var(--color-gold-light);
}

.hero-badge svg {
    color: var(--color-gold);
    opacity: 0.75;
    flex-shrink: 0;
}

/* ==========================================================================
   FORM CARD
   ========================================================================== */
.hero-form-wrapper {
    position: relative;
    z-index: 5;
}

.form-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-form-glow);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), var(--color-gold));
    z-index: 1;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
}

.form-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-gold-bg-strong), var(--color-gold-bg));
    border-radius: var(--radius-lg);
    color: var(--color-gold);
    flex-shrink: 0;
    border: 1px solid rgba(212, 168, 83, 0.15);
}

.form-header-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 0.125rem;
}

.form-header-desc {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.form-header-desc strong {
    color: var(--color-gold-dark);
    font-weight: 700;
}

/* --- Form Body --- */
.form-body {
    padding: 1.5rem;
}

.form-section-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-secondary);
    margin-bottom: 0.875rem;
}

/* --- Toggle Row (inline side by side) --- */
.toggle-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.toggle-group {
    margin-bottom: 0;
}

.toggle-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.toggle-buttons {
    display: flex;
    gap: 0.375rem;
    background: var(--color-bg-alt);
    padding: 0.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.toggle-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.toggle-btn:hover {
    color: var(--color-text);
    background: #fff;
}

.toggle-btn.active {
    background: #fff;
    color: var(--color-navy);
    border-color: var(--color-gold);
    box-shadow: 0 2px 8px rgba(212, 168, 83, 0.15);
}

.toggle-btn.active svg {
    color: var(--color-gold);
}

.toggle-btn svg {
    flex-shrink: 0;
}

/* --- Form Divider --- */
.form-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: 1.125rem 0;
}

/* --- Form Controls --- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-group {
    margin-bottom: 0.75rem;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 0.8125rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-bg-alt);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
    background: #fff;
}

.form-control::placeholder {
    color: var(--color-text-light);
    font-weight: 400;
}

.form-control.error {
    border-color: var(--color-error);
    background: var(--color-error-bg);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.form-group.focused .form-control {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
    background: #fff;
}

/* --- Checkbox --- */
.form-checkbox {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 0.875rem;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-gold);
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--color-gold);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-checkbox label a:hover {
    color: var(--color-gold-dark);
}

/* --- Form Error --- */
.form-error {
    font-size: 0.8125rem;
    color: var(--color-error);
    font-weight: 500;
    min-height: 1.25rem;
    margin-bottom: 0.5rem;
}

/* --- Form Submit Button --- */
.form-body .btn-cta.btn-block {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    letter-spacing: 0.02em;
    gap: 0.625rem;
    position: relative;
    overflow: hidden;
}

.form-body .btn-cta.btn-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.form-body .btn-cta.btn-block:hover::before {
    left: 100%;
}

/* --- Form Trust Badges --- */
.form-trust {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem 1.25rem;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border-light);
}

.form-trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.form-trust-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* --- Form Success --- */
.form-success {
    text-align: center;
    padding: 2.5rem 1rem;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--color-success-bg);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.success-phone {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.success-phone p {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.success-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: all var(--transition);
}

.success-phone-link:hover {
    color: var(--color-gold);
    transform: translateY(-1px);
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
    background: var(--color-bg);
    padding: 3.5rem 0;
    position: relative;
    border-bottom: 1px solid var(--color-border-light);
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.trust-item:hover {
    border-color: rgba(212, 168, 83, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.trust-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-gold-bg-strong), var(--color-gold-bg));
    border-radius: var(--radius-lg);
    color: var(--color-gold);
    flex-shrink: 0;
    border: 1px solid rgba(212, 168, 83, 0.12);
}

.trust-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.trust-number {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.3px;
}

/* ==========================================================================
   SECTION: HOW IT WORKS
   ========================================================================== */
.section-how {
    padding: 5rem 0;
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.section-how::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.steps-timeline {
    position: relative;
}

.timeline-line {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-gold), rgba(212, 168, 83, 0.2));
    transform: translateX(-50%);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.step-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    border-radius: var(--radius-lg);
    color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-navy);
    font-size: 0.625rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(212, 168, 83, 0.3);
    letter-spacing: -0.02em;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   SECTION: PRICING
   ========================================================================== */
.section-pricing {
    padding: 5rem 0;
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.section-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 30% 0%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
}

.section-pricing .section-label {
    background: rgba(212, 168, 83, 0.12);
    border-color: rgba(212, 168, 83, 0.25);
}

.section-pricing .section-title {
    color: #fff;
}

.section-pricing .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 83, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: rgba(212, 168, 83, 0.4);
    background: rgba(212, 168, 83, 0.06);
    box-shadow: 0 0 60px rgba(212, 168, 83, 0.1);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 80px rgba(212, 168, 83, 0.15), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-navy);
    padding: 0.375rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

.pricing-header {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    padding-top: 2.75rem;
}

.pricing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-xl);
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: #fff;
    margin-bottom: 0.375rem;
}

.pricing-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.125rem;
}

.pricing-amount .currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.pricing-amount .price {
    font-family: var(--font-body);
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-amount .per {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.25rem;
}

.pricing-features {
    padding: 0 1.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.pricing-features li svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.pricing-footer {
    padding: 1.5rem;
}

.pricing-footer .btn-outline {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-footer .btn-outline:hover {
    background: #fff;
    color: var(--color-navy);
    border-color: #fff;
}

.pricing-note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2rem;
}

/* ==========================================================================
   SECTION: TESTIMONIALS
   ========================================================================== */
.section-testimonials {
    padding: 5rem 0;
    background: var(--color-bg-alt);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), rgba(212, 168, 83, 0.3));
    opacity: 0;
    transition: opacity var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212, 168, 83, 0.2);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.125rem;
    color: var(--color-star);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--color-navy);
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: normal;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-navy);
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   SECTION: FAQ
   ========================================================================== */
.section-faq {
    padding: 5rem 0;
    background: var(--color-bg);
}

.faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 168, 83, 0.2);
}

.faq-item.open {
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: var(--shadow-md);
    background: var(--color-bg);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-navy);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: all var(--transition);
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--color-gold-dark);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-gold-bg);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--color-gold);
    transition: all var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: var(--color-gold);
    color: var(--color-navy);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
}

/* ==========================================================================
   SECTION: CTA
   ========================================================================== */
.section-cta {
    padding: 5rem 0;
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 83, 0.08);
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: ctaRotate 30s linear infinite;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation: ctaRotate 25s linear infinite reverse;
}

.cta-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(212, 168, 83, 0.05);
}

@keyframes ctaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-full);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.cta-phone-big {
    margin-bottom: 1.5rem;
}

.cta-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition);
}

.cta-phone-link:hover {
    background: rgba(212, 168, 83, 0.18);
    border-color: rgba(212, 168, 83, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.15);
}

.cta-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    color: var(--color-navy);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

.cta-phone-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-buttons .btn-cta {
    box-shadow: var(--shadow-gold);
}

.cta-buttons .btn-cta:hover {
    box-shadow: var(--shadow-gold-xl);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--color-navy-dark);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
}

.footer-top {
    padding: 4rem 0 3rem;
}

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

.footer-logo {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-accent {
    color: var(--color-gold);
}

.footer-about {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
    max-width: 320px;
}

.footer-phone-block {
    margin-bottom: 1.25rem;
}

.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.footer-phone-link:hover {
    background: rgba(212, 168, 83, 0.15);
    border-color: rgba(212, 168, 83, 0.3);
    color: var(--color-gold-light);
}

.footer-phone-icon {
    display: flex;
    color: var(--color-gold);
}

.footer-phone-number {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.social-link:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: rgba(212, 168, 83, 0.25);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact li svg {
    color: var(--color-gold);
    opacity: 0.6;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.5rem 0.875rem;
    background: rgba(212, 168, 83, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.12);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
}

.footer-trust-badge svg {
    color: var(--color-gold);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.25) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--color-navy);
    border-top: 1px solid rgba(212, 168, 83, 0.15);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    opacity: 0;
    transition: all var(--transition-slow);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
    flex-wrap: wrap;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    flex: 1;
    min-width: 0;
}

.cookie-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-gold);
    flex-shrink: 0;
}

.cookie-text strong {
    display: block;
    font-size: 0.875rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-gold);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-buttons {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
}

.cookie-buttons .btn-outline {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: none;
    box-shadow: none;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE: TABLET (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    /* Typography Scale Up */
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }

    .container {
        padding: 0 2rem;
    }

    /* Section spacing */
    .section-header {
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    /* Top Bar */
    .top-bar-left {
        display: flex;
    }

    .top-bar-right {
        width: auto;
    }

    .top-bar-phone-label {
        display: inline;
    }

    /* Header */
    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: block;
    }

    .header-actions {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: calc(var(--total-header-height) + 4rem) 0 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Trust Bar */
    .trust-bar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .pricing-card.featured {
        transform: scale(1.04);
    }

    .pricing-card.featured:hover {
        transform: scale(1.04) translateY(-4px);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    /* Section Padding */
    .section-how,
    .section-pricing,
    .section-testimonials,
    .section-faq,
    .section-cta {
        padding: 6rem 0;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 2.75rem;
    }

    .cta-phone-number {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   RESPONSIVE: DESKTOP (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
    /* Typography Scale Up */
    h1 { font-size: 3.25rem; }
    h2 { font-size: 2.5rem; }

    .section-title {
        font-size: 2.75rem;
    }

    /* Hero Grid: 2 columns */
    .hero {
        padding: calc(var(--total-header-height) + 5rem) 0 5rem;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr 440px;
        gap: 4rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-badges {
        justify-content: flex-start;
    }

    .hero-phone-block {
        display: flex;
        justify-content: flex-start;
    }

    /* Steps - horizontal layout */
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .step-icon-wrapper {
        margin: 0 auto 0;
    }

    .timeline-line {
        display: block;
        top: 28px;
        bottom: auto;
        height: 2px;
        width: 70%;
        left: 15%;
        transform: none;
        background: linear-gradient(90deg, rgba(212, 168, 83, 0.15), var(--color-gold), rgba(212, 168, 83, 0.15));
    }

    /* Section Padding */
    .section-how,
    .section-pricing,
    .section-testimonials,
    .section-faq,
    .section-cta {
        padding: 7rem 0;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 3rem;
    }
}

/* ==========================================================================
   RESPONSIVE: LARGE DESKTOP (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
    .hero-grid {
        grid-template-columns: 1fr 480px;
        gap: 5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1875rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-how,
    .section-pricing,
    .section-testimonials,
    .section-faq,
    .section-cta {
        padding: 8rem 0;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .top-bar,
    .site-header,
    .mobile-menu,
    .mobile-menu-overlay,
    .cookie-banner,
    .section-cta,
    .hero-form-wrapper {
        display: none !important;
    }

    .hero {
        background: #fff !important;
        color: #000 !important;
        min-height: auto !important;
        padding: 2rem 0 !important;
    }

    .hero-title,
    .hero-subtitle {
        color: #000 !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* ==========================================================================
   ACCESSIBILITY: FOCUS STYLES
   ========================================================================== */
*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.2);
}

/* ==========================================================================
   ARTICLE / BLOG STYLES (reusable for blog pages)
   ========================================================================== */
.article-hero {
    background: var(--color-navy);
    padding: calc(var(--total-header-height) + 3rem) 0 3rem;
}

.article-hero h1 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    flex-wrap: wrap;
}

.article-meta svg {
    color: var(--color-gold);
}

.article-content {
    padding: 3rem 0;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.article-content h2 {
    font-size: 1.625rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
}

.article-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.article-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
}

.article-content strong {
    color: var(--color-navy);
    font-weight: 600;
}

/* Article Lead Form */
.article-lead-form {
    background: var(--color-navy);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    margin: 3rem 0;
}

.article-lead-form h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-lead-form p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.article-lead-form .form-control {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.article-lead-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.article-lead-form .form-control:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

/* Article FAQ */
.article-faq {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-border);
}

.article-faq h2 {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Blog listing */
.blog-hero {
    background: var(--color-navy);
    padding: calc(var(--total-header-height) + 3rem) 0 3rem;
    text-align: center;
}

.blog-hero h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.0625rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
}

.blog-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    border-color: rgba(212, 168, 83, 0.2);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-body h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-card-body h2 a {
    color: var(--color-navy);
    text-decoration: none;
}

.blog-card-body h2 a:hover {
    color: var(--color-gold-dark);
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-hero h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .article-hero h1 {
        font-size: 2.75rem;
    }
}

/* ==========================================================================
   ADDITIONAL PREMIUM DECORATIVE DETAILS
   ========================================================================== */

/* Gold line accent on sections */
.section-how::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.15), transparent);
}

.section-testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* Subtle gold underline on pricing section title */
.section-pricing .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), rgba(212, 168, 83, 0.3));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* Premium card inner glow on hover */
.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Gold dot before FAQ items when open */
.faq-item.open .faq-question::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

/* Animated gold underline on hero badge hover */
.hero-badge::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.hero-badge:hover::after {
    width: 60%;
}

.hero-badge {
    position: relative;
}

/* Trust bar item gold line on hover */
.trust-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), rgba(212, 168, 83, 0.3));
    border-radius: 1px;
    opacity: 0;
    transition: opacity var(--transition);
}

.trust-item {
    position: relative;
    overflow: hidden;
}

.trust-item:hover::after {
    opacity: 1;
}

/* Pricing icon glow */
.pricing-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
    border-radius: inherit;
    pointer-events: none;
}

.pricing-icon {
    position: relative;
}

/* Step card connection dot */
.step-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-gold-bg-strong);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

@media (min-width: 1024px) {
    .step-card::after {
        opacity: 0;
    }
}

/* Testimonial card subtle pattern */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 100% 100%, rgba(212, 168, 83, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero form card floating shadow animation */
@keyframes formFloat {
    0%, 100% { box-shadow: var(--shadow-form-glow); }
    50% { box-shadow: 0 0 100px rgba(212, 168, 83, 0.2), 0 25px 70px -15px rgba(15, 23, 42, 0.35); }
}

.form-card {
    animation: formFloat 6s ease-in-out infinite;
}

/* Reduced motion override for form float */
@media (prefers-reduced-motion: reduce) {
    .form-card {
        animation: none;
    }

    .hero-gradient-orb {
        animation: none;
    }

    .cta-circle {
        animation: none;
    }

    .top-bar-phone svg {
        animation: none;
    }
}

/* ==========================================================================
   DARK SECTION TEXT OVERRIDES
   ========================================================================== */
.section-pricing h2,
.section-pricing h3,
.section-pricing h4 {
    color: #fff;
}

.section-cta h2,
.section-cta h3 {
    color: #fff;
}

/* ==========================================================================
   FORM FIELD ANIMATION EXTRAS
   ========================================================================== */

/* Subtle bounce on toggle click */
.toggle-btn:active {
    transform: scale(0.95);
}

/* Gold glow pulse on submit button */
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(212, 168, 83, 0); }
}

.form-body .btn-cta.btn-block:not(:disabled) {
    animation: goldPulse 3s ease-in-out infinite;
}

.form-body .btn-cta.btn-block:hover {
    animation: none;
}

/* Reduced motion override */
@media (prefers-reduced-motion: reduce) {
    .form-body .btn-cta.btn-block:not(:disabled) {
        animation: none;
    }
}

/* ==========================================================================
   MICRO-INTERACTIONS & POLISH
   ========================================================================== */

/* Nav link active indicator with gold */
.nav-link.active {
    background: var(--color-gold-bg);
}

/* Form group label transition */
.form-group {
    transition: transform var(--transition);
}

.form-group.focused {
    transform: translateY(-1px);
}

/* Pricing card scale on featured */
.pricing-card.featured .pricing-amount .price {
    background: linear-gradient(135deg, #fff, var(--color-gold-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA section subtle gradient movement */
.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.04) 0%, transparent 50%, rgba(212, 168, 83, 0.03) 100%);
    pointer-events: none;
}

/* Footer link hover arrow indicator */
.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition);
    vertical-align: middle;
    margin-right: 0;
}

.footer-links a:hover::before {
    width: 12px;
    margin-right: 6px;
}

/* Smooth page-level transition */
main {
    animation: pageIn 0.5s ease;
}

@keyframes pageIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    main {
        animation: none;
    }
}

/* ==========================================================================
   FINAL CLEANUP & OVERRIDES
   ========================================================================== */

/* Ensure proper z-indexing */
.top-bar { z-index: 1001; }
.site-header { z-index: 1000; }
.mobile-menu-overlay { z-index: 1100; }
.mobile-menu { z-index: 1101; }
.cookie-banner { z-index: 2000; }

/* Smooth scroll offset for anchors */
html {
    scroll-padding-top: calc(var(--top-bar-height) + var(--header-height) + 20px);
}

/* Body when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Ensure gold gradient text fallback */
@supports not (-webkit-background-clip: text) {
    .pricing-card.featured .pricing-amount .price {
        color: #fff;
    }
}
