@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800;900&family=Rajdhani:wght@500;600;700&display=swap');

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

    :root {
      /* ── Brand Typography ── */
      --font-brand: 'Orbitron', 'Rajdhani', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --font-body: 'Inter', sans-serif;

      /* ── Deep Executive Navies ── */
      --navy-deep: #071A2F;        /* Deep Navy: Main headings, brand anchor */
      --navy-exec: #0D2945;        /* Executive / Royal Navy: Dark accents, structural elements */
      --navy-mid: #153B5B;         /* Navy Blue: Inner containers, borders, interactive highlights */
      --navy-border: rgba(21, 59, 91, 0.25);

      /* ── Luxury Mahoganies (Rich Wood Accents & Borders) ── */
      --mahogany: #5A2E20;         /* Mahogany: Luxury accents, borders, wood-inspired trims */
      --mahogany-dark: #3B1E16;    /* Dark Mahogany: Badges, deep contrast accents */
      --mahogany-light: #7A3F2C;   /* Light Mahogany: Subtle highlights */
      --mahogany-border: rgba(90, 46, 32, 0.35);

      /* ── Prestige Golds (Optimized for #FEF7E9 Warm Ivory) ── */
      --gold: #B8860B;             /* Prestige Dark Goldenrod */
      --gold-primary: #C9A227;     /* Prestige Gold: Primary accent */
      --gold-light: #D4AF37;       /* Metallic Gold highlight */
      --gold-bright: #E5C158;      /* Bright Gold */
      --gold-deep: #996515;        /* Deep Golden Bronze */
      --gold-dark: #8A6405;        /* Dark Gold for maximum legibility */
      --gold-shine: #FFF2C2;       /* Soft Gold sheen */
      --gold-soft: #A27B13;        /* Soft Gold text */
      --gold-cream: #FAF1DF;       /* Warm cream gold tone */
      --gold-subtle: rgba(201, 162, 39, 0.12);
      --gold-border: rgba(201, 162, 39, 0.35);
      --gold-border-subtle: rgba(201, 162, 39, 0.20);
      --gold-glow: rgba(201, 162, 39, 0.25);

      /* ── Warm Ivory, Cream & Elevated Surfaces ── */
      --ivory-warm: #FEF7E9;       /* Signature Warm Ivory / Cream base */
      --ivory-surface: #FAF1DF;    /* Secondary warm cream tone */
      --ivory-alt: #F4E7D0;        /* Subtle tertiary warm tone */
      --white: #FFFFFF;            /* Pure White: Crisp elevated cards, badges */
      --charcoal: #1F2937;         /* Deep Charcoal body text */
      --muted-grey: #5A6578;       /* Muted Slate Grey */

      /* ── Semantic Application (Warm Ivory Theme) ── */
      --bg: #FEF7E9;               /* Signature Warm Ivory / Cream background */
      --bg-cream: #FEF7E9;         /* Warm Ivory surface */
      --bg-section: #FEF7E9;       /* Main section background */
      --bg-section-alt: #FAF1DF;   /* Alternating warm cream section */
      --bg-card: #FFFFFF;          /* Pure White elevated card */
      --bg-card-hover: #FFFDF9;    /* Hover card tone */
      
      --text: #071A2F;             /* Deep Royal Navy headings */
      --text-heading: #071A2F;     /* Deep Royal Navy */
      --text-body: #2B374A;        /* Crisp Charcoal Slate text */
      --text-muted: #57657A;       /* Refined slate text */
      --text-faint: #7E8C9F;       /* Subdued slate grey */
      --line: rgba(201, 162, 39, 0.25);
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      font-family: 'Inter', sans-serif;
      color: var(--text-body);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ── Reusable Section Elements ── */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
    .section-label {
      font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold-primary); font-weight: 700;
      display: inline-flex; align-items: center; gap: 12px;
    }
    .section-label::before, .section-label::after {
      content: ''; width: 32px; height: 1.5px;
      background: linear-gradient(90deg, var(--mahogany), var(--gold-primary));
    }
    .section-label.center { justify-content: center; }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.4vw, 44px);
      font-weight: 700; color: var(--text); line-height: 1.18;
      margin: 14px 0 14px;
      letter-spacing: -0.5px;
    }
    .section-title em {
      font-style: italic;
      color: var(--gold-primary);
      font-weight: 600;
      background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-soft) 100%);
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    }
    .section-desc { font-size: 15.5px; color: var(--text-muted); line-height: 1.85; font-weight: 400; }

    /* ── NAV ── */
    nav.top-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 40px;
      background: rgba(254, 247, 233, 0.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(201, 162, 39, 0.28);
      box-shadow: 0 4px 20px rgba(180, 150, 90, 0.10);
      transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    }
    nav.top-nav.scrolled {
      padding: 11px 40px;
      background: rgba(254, 247, 233, 0.98);
      border-bottom: 1px solid rgba(184, 134, 11, 0.35);
      box-shadow: 0 6px 25px rgba(180, 150, 90, 0.15);
    }
    .nav-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      transition: transform 0.25s ease;
    }
    .nav-logo:hover {
      transform: translateY(-1px);
    }
    .nav-logo-img {
      height: 44px;
      width: auto;
      max-width: 52px;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(13, 41, 69, 0.15));
      transition: transform 0.3s ease, filter 0.3s ease;
    }
    .nav-logo:hover .nav-logo-img {
      transform: scale(1.05);
      filter: drop-shadow(0 4px 12px rgba(201, 162, 39, 0.35));
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .nav-brand-img {
      height: 22px;
      width: auto;
      max-width: 175px;
      object-fit: contain;
      display: block;
    }
    .nav-brand-title {
      font-family: var(--font-brand);
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 2px;
      color: var(--navy-deep);
      line-height: 1.1;
      display: block;
    }
    .nav-logo span {
      display: block;
      font-size: 9px;
      font-family: 'Rajdhani', 'Inter', sans-serif;
      font-weight: 700;
      letter-spacing: 2.2px;
      text-transform: uppercase;
      color: var(--navy-exec);
      margin-top: 2px;
    }
    .nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
    .nav-links a {
      font-size: 12px; color: var(--navy-deep);
      letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600;
      transition: color 0.2s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
      background: linear-gradient(90deg, var(--mahogany), var(--gold-primary)); transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--gold-dark); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: var(--gold-dark); font-weight: 700; }
    .nav-links a.active::after { width: 100%; }

    /* Dropdown */
    .nav-links li { position: relative; }
    .dropdown { position: relative; }
    .dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      cursor: pointer;
    }
    .caret {
      font-size: 9px;
      margin-left: 2px;
      display: inline-block;
      transition: transform 0.2s;
    }
    .dropdown:hover .caret {
      transform: rotate(180deg);
    }
    .dropdown-menu {
      position: absolute;
      left: 0;
      top: calc(100% + 6px);
      min-width: 190px;
      background: #FFFFFF;
      border: 1.5px solid rgba(201, 162, 39, 0.35);
      border-radius: 10px;
      padding: 6px;
      box-shadow: 0 16px 40px rgba(180, 150, 90, 0.18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: all 0.2s ease;
      z-index: 120;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu li { width: 100%; margin: 0; padding: 0; }
    .dropdown-menu a {
      display: block;
      width: 100%;
      padding: 9px 14px;
      font-size: 13px;
      letter-spacing: 0.4px;
      text-transform: none;
      color: var(--navy-deep);
      font-weight: 600;
      border-radius: 6px;
      transition: background 0.15s, color 0.15s;
    }
    .dropdown-menu a::after { display: none !important; }
    .dropdown-menu a:hover {
      background: var(--ivory-surface);
      color: var(--gold-dark);
      font-weight: 700;
    }
    .nav-cta {
      background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
      background-size: 200% auto;
      color: #071A2F; font-size: 11.5px; font-weight: 800;
      padding: 10px 22px; border-radius: 4px;
      letter-spacing: 1.5px; text-transform: uppercase;
      border: 1px solid rgba(255, 255, 255, 0.4); cursor: pointer;
      box-shadow: 0 4px 18px rgba(201, 162, 39, 0.35);
      transition: transform 0.2s, box-shadow 0.2s, background-position 0.3s;
    }
    .nav-cta:hover {
      transform: translateY(-1px);
      background-position: right center;
      box-shadow: 0 6px 22px rgba(201, 162, 39, 0.5);
    }
    .hamburger {
      display: none; background: none; border: none;
      color: var(--navy-deep); font-size: 24px; cursor: pointer;
    }

    /* ── INTERIOR PAGE HERO ── */
    .page-hero {
      background:
        radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.10), transparent 60%),
        radial-gradient(circle at 85% 85%, rgba(90, 46, 32, 0.06), transparent 55%),
        linear-gradient(180deg, #FAF1DF 0%, #FEF7E9 100%);
      color: var(--text); padding: 150px 32px 75px;
      text-align: center; position: relative; overflow: hidden;
      border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201, 162, 39, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.06) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
      pointer-events: none;
    }
    .page-hero > * { position: relative; z-index: 1; }
    .page-hero .section-title { color: var(--navy-deep); }
    .page-hero .section-desc { color: var(--text-muted); max-width: 640px; margin: 0 auto; }

    /* ── OVERVIEW / LEAD SECTION (Warm Ivory & Prestige Gold) ── */
    .hero {
      position: relative;
      background:
        radial-gradient(circle at 75% 20%, rgba(201, 162, 39, 0.12), transparent 50%),
        radial-gradient(circle at 20% 75%, rgba(90, 46, 32, 0.05), transparent 55%),
        linear-gradient(180deg, #FEF7E9 0%, #FAF1DF 60%, #FEF7E9 100%);
      color: var(--text); display: flex; align-items: center;
      padding: 85px 32px 85px;
      overflow: hidden;
      border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201, 162, 39, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.06) 1px, transparent 1px);
      background-size: 52px 52px;
      mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1180px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px;
      align-items: center; position: relative; z-index: 2;
    }
    .hero-brand-showcase {
      display: inline-flex; align-items: center; gap: 16px;
      background: #FFFFFF; border: 1.5px solid rgba(201, 162, 39, 0.35);
      border-radius: 50px; padding: 7px 22px 7px 12px;
      margin-bottom: 20px;
      box-shadow: 0 8px 24px rgba(180, 150, 90, 0.12);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .hero-brand-showcase:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(201, 162, 39, 0.22);
    }
    .hero-emblem-img {
      height: 42px; width: auto; max-width: 50px; object-fit: contain;
      filter: drop-shadow(0 2px 6px rgba(13, 41, 69, 0.2));
    }
    .hero-brand-text-block {
      display: flex; flex-direction: column;
    }
    .hero-brand-title-img {
      height: 20px; width: auto; max-width: 160px; object-fit: contain; display: block;
    }
    .hero-brand-subtitle {
      font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--navy-exec); font-weight: 700; font-family: 'Rajdhani', sans-serif;
      margin-top: 2px;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: #FFFFFF; border: 1.5px solid var(--gold-primary);
      color: var(--navy-deep);
      padding: 8px 18px; border-radius: 30px;
      font-size: 11.5px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700;
      box-shadow: 0 4px 15px rgba(180, 150, 90, 0.15);
    }
    .hero-eyebrow i { color: var(--gold-dark); }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 5.2vw, 64px);
      font-weight: 700; line-height: 1.1; letter-spacing: -1px;
      margin: 22px 0 22px;
      color: var(--navy-deep);
    }
    .hero h1 em {
      font-style: italic; color: var(--gold-dark); font-weight: 600;
      background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--mahogany) 100%);
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero p.lead {
      font-size: 17px; line-height: 1.75; color: var(--text-body);
      max-width: 560px; font-weight: 400;
    }
    .hero-benefits {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
      margin: 30px 0 34px; max-width: 560px;
    }
    .hero-benefits div {
      font-size: 14px; color: var(--text-body); font-weight: 500;
      display: flex; align-items: center; gap: 10px;
    }
    .hero-benefits i {
      color: var(--gold-dark); font-size: 12px;
      width: 24px; height: 24px; border-radius: 50%;
      background: #FFFFFF; display: inline-flex;
      align-items: center; justify-content: center; flex-shrink: 0;
      border: 1.5px solid var(--gold-border);
      box-shadow: 0 2px 6px rgba(180, 150, 90, 0.15);
    }
    .hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
      background-size: 200% auto; color: #071A2F;
      font-size: 13px; font-weight: 800; padding: 15px 32px;
      border: none; border-radius: 4px; cursor: pointer;
      letter-spacing: 2px; text-transform: uppercase;
      transition: background-position 0.4s, transform 0.2s, box-shadow 0.3s;
      box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-gold:hover {
      background-position: right center; transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(201, 162, 39, 0.55);
    }
    .btn-outline-light {
      background: #FFFFFF; border: 2px solid var(--navy-exec); color: var(--navy-exec);
      font-size: 13px; font-weight: 700; padding: 13px 30px;
      border-radius: 4px; cursor: pointer; letter-spacing: 2px; text-transform: uppercase;
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
      display: inline-flex; align-items: center; gap: 10px;
      box-shadow: 0 4px 14px rgba(180, 150, 90, 0.12);
    }
    .btn-outline-light:hover {
      background: var(--navy-exec);
      border-color: var(--navy-exec);
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    /* Hero Lead form */
    .hero-form-card {
      background: #FFFFFF;
      color: var(--text-body);
      border-radius: 16px;
      padding: 36px 32px 32px;
      border: 1.5px solid rgba(201, 162, 39, 0.35);
      box-shadow: 0 24px 60px rgba(180, 150, 90, 0.18), 0 0 0 1px rgba(201, 162, 39, 0.15);
      position: relative;
    }
    .form-ribbon {
      position: absolute; top: -14px; left: 24px;
      background: linear-gradient(135deg, var(--mahogany), var(--gold-primary));
      color: #FFFFFF; font-size: 10.5px; font-weight: 700;
      padding: 6px 16px; border-radius: 3px; letter-spacing: 2px; text-transform: uppercase;
      box-shadow: 0 6px 18px rgba(90, 46, 32, 0.3);
    }
    .hero-form-card h3 {
      font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
      color: var(--navy-deep); margin: 6px 0 4px; letter-spacing: -0.3px;
    }
    .hero-form-card > p { color: var(--text-muted); font-size: 13px; margin-bottom: 18px; }
    .hero-form-card input, .hero-form-card select {
      width: 100%; padding: 13px 14px; margin-bottom: 11px;
      border: 1px solid rgba(201, 162, 39, 0.30); border-radius: 6px;
      font-size: 14px; font-family: 'Inter', sans-serif;
      background: #FDFBF7; color: var(--navy-deep);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .hero-form-card input:focus, .hero-form-card select:focus {
      outline: none; border-color: var(--gold-primary);
      box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
    }
    .hero-form-card select:disabled { background: #F3F4F6; color: #9CA3AF; cursor: not-allowed; }
    .hero-form-card button.submit-btn {
      width: 100%; padding: 15px; border: none; border-radius: 6px;
      background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
      background-size: 200% auto; color: #071A2F;
      font-size: 13.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
      cursor: pointer;
      transition: background-position 0.4s, transform 0.2s;
      box-shadow: 0 8px 22px rgba(201, 162, 39, 0.35);
    }
    .hero-form-card button.submit-btn:hover { background-position: right center; transform: translateY(-1px); }
    #formResponseMsg { margin-top: 12px; font-size: 13px; font-weight: 600; text-align: center; min-height: 18px; }
    .form-trust {
      display: flex; align-items: center; gap: 10px;
      margin-top: 14px; font-size: 11.5px; color: var(--text-muted);
      justify-content: center;
    }
    .form-trust i { color: #10b981; }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: #FAF1DF;
      border-top: 1px solid rgba(201, 162, 39, 0.25);
      border-bottom: 1px solid rgba(201, 162, 39, 0.25);
      padding: 46px 24px;
    }
    .trust-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    }
    .trust-item { text-align: center; }
    .trust-num {
      font-family: 'Playfair Display', serif;
      font-size: 46px; font-weight: 800; line-height: 1;
      background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--navy-deep) 100%);
      -webkit-background-clip: text; background-clip: text;
      color: transparent;
    }
    .trust-lbl {
      font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--navy-deep); margin-top: 8px; font-weight: 700;
    }
    .trust-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; }

    /* ── PROFILE STRIP ── */
    .profile-strip {
      max-width: 1180px; margin: 0 auto;
      padding: 90px 32px 60px;
      display: grid; grid-template-columns: 300px 1fr; gap: 60px;
      align-items: center;
    }
    .profile-avatar-wrap {
      position: relative; width: 320px; height: 320px;
    }
    .profile-avatar {
      width: 320px; height: 320px; border-radius: 22px;
      border: 3.5px solid var(--gold-primary);
      padding: 6px; object-fit: cover; background: #FFFFFF;
      box-shadow: 0 20px 50px rgba(180, 150, 90, 0.22), 0 0 25px rgba(201, 162, 39, 0.18);
    }
    .profile-badge-float {
      position: absolute; bottom: -8px; right: -8px;
      background: linear-gradient(135deg, var(--mahogany), var(--gold-primary));
      color: #FFFFFF; padding: 8px 16px; border-radius: 30px;
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      box-shadow: 0 8px 22px rgba(90, 46, 32, 0.35);
      display: inline-flex; align-items: center; gap: 6px;
    }
    .profile-name { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--navy-deep); line-height: 1.05; letter-spacing: -1px; }
    .profile-title { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-top: 10px; font-weight: 700; }
    .profile-bio { font-size: 15.5px; color: var(--text-body); line-height: 1.85; margin-top: 18px; max-width: 640px; }
    .profile-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
    .badge {
      background: #FFFFFF;
      border: 1px solid rgba(201, 162, 39, 0.35);
      color: var(--navy-deep); font-size: 11px; font-weight: 700;
      padding: 8px 16px; border-radius: 4px;
      letter-spacing: 0.8px; text-transform: uppercase;
      box-shadow: 0 2px 8px rgba(180, 150, 90, 0.12);
    }

    /* ── SERVICES ── */
    .section-block { padding: 85px 32px; }
    .services-section { background: var(--bg); }
    .section-header-center { max-width: 720px; margin: 0 auto 54px; text-align: center; }

    .products-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
    }
    .product-card {
      background: #FFFFFF; border: 1.5px solid rgba(201, 162, 39, 0.28);
      border-radius: 14px; padding: 34px 28px;
      transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s;
      box-shadow: 0 8px 25px rgba(180, 150, 90, 0.10);
      position: relative; overflow: hidden;
    }
    .product-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3.5px;
      background: linear-gradient(90deg, var(--mahogany), var(--gold-primary), var(--gold-light));
      opacity: 0.8; transition: opacity 0.3s;
    }
    .product-card:hover {
      border-color: var(--gold-primary);
      box-shadow: 0 16px 45px rgba(201, 162, 39, 0.22);
      transform: translateY(-6px);
    }
    .product-card:hover::before { opacity: 1; }
    .product-icon {
      width: 54px; height: 54px; border-radius: 12px;
      background: #FAF1DF;
      color: var(--gold-dark);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 22px; margin-bottom: 20px;
      border: 1.5px solid rgba(201, 162, 39, 0.3);
      box-shadow: 0 4px 14px rgba(180, 150, 90, 0.15);
    }
    .product-title { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--navy-deep); margin-bottom: 16px; font-weight: 700; }
    .product-list { list-style: none; }
    .product-list li {
      font-size: 14px; color: var(--text-body); padding: 8px 0;
      border-bottom: 1px dashed rgba(201, 162, 39, 0.25); font-weight: 400;
      display: flex; align-items: center; gap: 10px;
    }
    .product-list li:last-child { border-bottom: none; }
    .product-list li i { color: var(--gold-primary); font-size: 10px; }

    /* ── TESTIMONIALS ── */
    .testimonials-section {
      background: #FAF1DF;
      border-top: 1px solid rgba(201, 162, 39, 0.25);
      border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    }
    .testi-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
    }
    .testi-card {
      background: #FFFFFF; border-radius: 16px; padding: 34px 30px;
      border: 1.5px solid rgba(201, 162, 39, 0.25);
      position: relative;
      box-shadow: 0 8px 24px rgba(180, 150, 90, 0.10);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .testi-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold-primary);
      box-shadow: 0 18px 45px rgba(201, 162, 39, 0.2);
    }
    .testi-quote {
      position: absolute; top: 18px; right: 24px;
      font-family: 'Playfair Display', serif;
      font-size: 64px; color: rgba(201, 162, 39, 0.25); line-height: 1;
    }
    .testi-stars { color: var(--gold-dark); margin-bottom: 14px; font-size: 15px; letter-spacing: 2px; }
    .testi-text {
      font-size: 15.5px; line-height: 1.8; color: var(--text-body); font-style: italic;
      font-family: 'Playfair Display', serif; font-weight: 400;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(201, 162, 39, 0.2); }
    .testi-avatar {
      width: 46px; height: 46px; border-radius: 50%;
      background: linear-gradient(135deg, var(--mahogany), var(--gold-primary));
      color: #FFFFFF; display: flex; align-items: center; justify-content: center;
      font-family: 'Cinzel', serif; font-weight: 700; font-size: 16px;
      flex-shrink: 0; box-shadow: 0 4px 12px rgba(90, 46, 32, 0.3);
    }
    .testi-name { font-weight: 700; color: var(--navy-deep); font-size: 14.5px; }
    .testi-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ── ABOUT + CONTACT ── */
    .about-strip {
      max-width: 1180px; margin: 0 auto; padding: 85px 32px;
      display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start;
    }
    .contact-block {
      background: #FFFFFF;
      border: 1.5px solid rgba(201, 162, 39, 0.3);
      border-radius: 16px; padding: 36px;
      box-shadow: 0 16px 45px rgba(180, 150, 90, 0.12);
    }
    .contact-row { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px dashed rgba(201, 162, 39, 0.25); }
    .contact-row:last-child { border-bottom: none; }
    .contact-icon {
      width: 44px; height: 44px; border-radius: 50%;
      background: #FAF1DF;
      color: var(--gold-dark);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 17px; flex-shrink: 0;
      border: 1.5px solid rgba(201, 162, 39, 0.3);
      box-shadow: 0 4px 12px rgba(180, 150, 90, 0.12);
    }
    .contact-label { font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; font-weight: 700; }
    .contact-val { font-size: 15px; color: var(--navy-deep); font-weight: 600; line-height: 1.6; }
    .contact-val a { color: var(--gold-dark); font-weight: 700; }
    .contact-val a:hover { color: var(--gold-primary); text-decoration: underline; }

    /* ── BOOKING ── */
    .booking-section { background: var(--bg); }
    .booking-card {
      max-width: 780px; margin: 0 auto;
      background: #FFFFFF; border: 1.5px solid rgba(201, 162, 39, 0.3);
      border-radius: 16px; padding: 44px;
      box-shadow: 0 25px 60px rgba(180, 150, 90, 0.15);
      position: relative; overflow: hidden;
    }
    .booking-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--mahogany), var(--gold-primary), var(--gold-light), var(--gold-primary), var(--mahogany));
    }
    .booking-form {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin-top: 24px;
    }
    .booking-form .full { grid-column: 1 / -1; }
    .booking-form label {
      display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--navy-deep); font-weight: 700; margin-bottom: 8px;
    }
    .booking-form input, .booking-form select {
      width: 100%; padding: 13px 14px; border: 1px solid rgba(201, 162, 39, 0.3);
      border-radius: 6px; font-size: 14px; font-family: 'Inter', sans-serif;
      background: #FDFBF7; color: var(--navy-deep);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .booking-form input:focus, .booking-form select:focus {
      outline: none; border-color: var(--gold-primary);
      box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
    }
    .slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 4px; }
    .slot {
      padding: 10px 6px; border: 1px solid rgba(201, 162, 39, 0.3); border-radius: 6px;
      font-size: 12.5px; text-align: center; cursor: pointer;
      color: var(--navy-deep); background: #FDFBF7; font-weight: 600;
      transition: all 0.2s;
    }
    .slot:hover { border-color: var(--gold-primary); color: var(--gold-dark); background: #FAF1DF; }
    .slot.active { background: linear-gradient(135deg, var(--mahogany), var(--gold-primary)); color: #FFFFFF; border-color: var(--gold-light); font-weight: 700; }

    /* ── WHY US ── */
    .why-section { background: #FAF1DF; }
    .why-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
    }
    .why-card {
      background: #FFFFFF;
      border: 1.5px solid rgba(201, 162, 39, 0.25); border-radius: 16px;
      padding: 38px 28px; text-align: left;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      box-shadow: 0 8px 25px rgba(180, 150, 90, 0.08);
    }
    .why-card:hover {
      transform: translateY(-5px); border-color: var(--gold-primary);
      box-shadow: 0 16px 45px rgba(201, 162, 39, 0.2);
    }
    .why-icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: linear-gradient(135deg, var(--mahogany), var(--gold-primary));
      color: #FFFFFF;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 22px; margin-bottom: 22px;
      box-shadow: 0 6px 18px rgba(90, 46, 32, 0.3);
    }
    .why-title { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--navy-deep); margin-bottom: 12px; font-weight: 700; }
    .why-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-weight: 400; }

    /* ── INSIGHTS/BLOG ── */
    .insights-section { background: var(--bg); }
    .insights-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
    }
    .blog-card {
      background: #FFFFFF; border-radius: 16px; overflow: hidden;
      border: 1.5px solid rgba(201, 162, 39, 0.25);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      cursor: pointer;
      box-shadow: 0 8px 25px rgba(180, 150, 90, 0.08);
    }
    .blog-card:hover {
      transform: translateY(-6px);
      border-color: var(--gold-primary);
      box-shadow: 0 20px 45px rgba(201, 162, 39, 0.22);
    }
    .blog-img {
      height: 170px;
      background: linear-gradient(135deg, #FAF1DF 0%, #F5E5C9 100%);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-dark); font-size: 48px;
      position: relative; overflow: hidden;
      border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    }
    .blog-img::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201, 162, 39, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.08) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .blog-body { padding: 26px; }
    .blog-tag {
      display: inline-block; font-size: 10.5px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold-dark); font-weight: 700;
      margin-bottom: 10px;
    }
    .blog-title { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--navy-deep); line-height: 1.35; font-weight: 700; }
    .blog-excerpt { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-top: 10px; }
    .blog-meta { font-size: 12.5px; color: var(--text-faint); margin-top: 16px; display: flex; justify-content: space-between; align-items: center; }
    .blog-meta a { color: var(--gold-dark); font-weight: 700; transition: color 0.2s; }
    .blog-meta a:hover { color: var(--gold-primary); text-decoration: underline; }

    /* ── CTA (Executive Navy & Mahogany Prestige Anchor) ── */
    .cta-section {
      text-align: center; padding: 95px 32px;
      background:
        radial-gradient(circle at 50% 30%, rgba(90, 46, 32, 0.45), transparent 65%),
        linear-gradient(135deg, #071A2F 0%, #0D2945 50%, #3B1E16 100%);
      color: #FFFFFF; position: relative; overflow: hidden;
      border-top: 2px solid var(--gold-primary);
      border-bottom: 2px solid var(--gold-primary);
    }
    .cta-section::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201, 162, 39, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
      pointer-events: none;
    }
    .cta-section .section-title { color: #FFFFFF; }
    .cta-section p.section-desc { color: #CBD5E1; max-width: 620px; margin: 0 auto 36px; }
    .cta-btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

    /* ── CVD Banner ── */
    .cvd-section { background: var(--bg); padding: 80px 24px; display: flex; align-items: center; justify-content: center; }
    .cvd-banner {
      max-width: 620px; width: 100%; background: #FFFFFF;
      border: 2px solid var(--gold-primary); border-radius: 18px;
      padding: 44px 32px 32px; text-align: center; position: relative;
      overflow: hidden; font-family: 'Rajdhani', sans-serif;
      box-shadow: 0 16px 45px rgba(180, 150, 90, 0.18);
    }
    .cvd-banner::before, .cvd-banner::after {
      content: ''; position: absolute; left: 0; right: 0; height: 3.5px;
      background: linear-gradient(90deg, transparent, var(--mahogany), var(--gold-primary), var(--gold-light), var(--mahogany), transparent);
    }
    .cvd-banner::before { top: 0; } .cvd-banner::after { bottom: 0; }
    .cvd-corner { position: absolute; width: 22px; height: 22px; border-color: var(--gold-primary); border-style: solid; }
    .cvd-corner.tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
    .cvd-corner.tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
    .cvd-corner.bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
    .cvd-corner.br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }
    .cvd-heading { font-family: 'Cinzel', serif; font-size: 28px; font-weight: 900; color: var(--navy-deep); letter-spacing: 2px; line-height: 1.2; margin: 0 0 6px; }
    .cvd-subheading { font-size: 12px; color: var(--gold-dark); letter-spacing: 3.5px; text-transform: uppercase; margin: 0 0 28px; font-weight: 700; }
    .cvd-qr-wrapper { display: inline-block; position: relative; margin: 0 auto 14px; }
    .cvd-qr-frame { background: #FAF1DF; border: 2px solid var(--gold-primary); border-radius: 14px; padding: 10px; display: inline-block; position: relative; box-shadow: 0 6px 20px rgba(180, 150, 90, 0.2); }
    .cvd-qr-img { display: block; width: 190px; height: 190px; object-fit: cover; border-radius: 8px; }
    .cvd-qr-label { position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--mahogany), var(--gold-primary)); color: #FFFFFF; font-size: 11px; font-weight: 800; letter-spacing: 2px; padding: 4px 18px; border-radius: 20px; white-space: nowrap; box-shadow: 0 4px 10px rgba(90,46,32,0.4); }
    .cvd-price { display: inline-block; background: linear-gradient(135deg, var(--mahogany), var(--gold-primary), var(--gold-light)); color: #071A2F; font-family: 'Cinzel', serif; font-weight: 900; font-size: 20px; letter-spacing: 1px; padding: 8px 30px; border-radius: 30px; margin: 20px 0 24px; box-shadow: 0 6px 18px rgba(180, 150, 90, 0.3); }
    .cvd-instructions { background: #FAF1DF; border: 1.5px solid rgba(201, 162, 39, 0.3); border-radius: 12px; padding: 22px; margin-bottom: 22px; }
    .cvd-inst-title { color: var(--navy-deep); font-size: 16px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 16px; }
    .cvd-steps { display: flex; flex-direction: column; gap: 10px; }
    .cvd-step { display: flex; align-items: flex-start; gap: 12px; background: #FFFFFF; border: 1px solid rgba(201, 162, 39, 0.25); border-radius: 8px; padding: 12px 16px; font-size: 15px; color: var(--text-body); font-weight: 600; text-align: left; line-height: 1.5; }
    .cvd-step-num { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--mahogany), var(--gold-primary)); color: #FFFFFF; font-size: 14px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .cvd-wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 14px 34px; border-radius: 50px; font-size: 16px; font-weight: 700; margin-top: 12px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
    .cvd-wa-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.45); }

    /* ── FOOTER (Warm Ivory & Gold Prestige) ── */
    footer.site-footer {
      background: #FAF1DF; color: var(--text-muted);
      padding: 70px 32px 30px;
      border-top: 2px solid var(--gold-primary);
    }
    .footer-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    }
    .footer-brand-wrap {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 12px;
      text-decoration: none;
    }
    .footer-logo-img {
      height: 52px;
      width: auto;
      max-width: 65px;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(13, 41, 69, 0.15));
    }
    .footer-brand-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .footer-brand-img {
      height: 26px;
      width: auto;
      max-width: 210px;
      object-fit: contain;
      display: block;
    }
    .footer-logo { font-family: var(--font-brand); font-size: 20px; color: var(--gold-dark); font-weight: 800; letter-spacing: 2px; }
    .footer-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--navy-deep); margin: 6px 0 18px; font-weight: 700; font-family: 'Rajdhani', sans-serif; }
    .footer-about { font-size: 13.5px; line-height: 1.75; color: var(--text-body); max-width: 340px; }
    .footer-col h4 { color: var(--navy-deep); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
    .footer-col ul { list-style: none; }
    .footer-col li { padding: 6px 0; font-size: 13.5px; }
    .footer-col a { color: var(--text-muted); transition: color 0.2s; }
    .footer-col a:hover { color: var(--gold-dark); font-weight: 600; }
    .footer-bottom {
      max-width: 1180px; margin: 24px auto 0;
      display: flex; justify-content: space-between; align-items: center;
      gap: 16px; flex-wrap: wrap;
      font-size: 12px; color: var(--text-muted); line-height: 1.7;
    }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a {
      width: 36px; height: 36px; border-radius: 50%;
      background: #FFFFFF; border: 1.5px solid rgba(201, 162, 39, 0.35);
      color: var(--navy-deep);
      display: inline-flex; align-items: center; justify-content: center;
      transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
      box-shadow: 0 2px 8px rgba(180, 150, 90, 0.15);
    }
    .footer-social a:hover {
      background: var(--gold-primary); color: #FFFFFF;
      border-color: var(--gold-primary); transform: translateY(-2px);
    }
    .disclaimer { font-size: 11.5px; color: var(--text-faint); line-height: 1.7; max-width: 900px; margin: 20px auto 0; text-align: center; }

    /* ── FLOATING PROMO AD ── */
    .fab-promo-ad {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 90;
      filter: drop-shadow(0 10px 20px rgba(180, 150, 90, 0.25));
      transition: transform 0.25s ease;
    }
    .fab-promo-ad:hover { transform: translateY(-4px); }
    .fab-promo-ad img.sticky {
      width: 220px;
      display: block;
      cursor: pointer;
    }
    .fab-promo-ad .hidden-mob { display: none; }
    .fab-promo-ad .hidden-desk { display: block; }

    /* ── MOBILE STICKY BAR ── */
    .mobile-sticky {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 89;
      background: rgba(254, 247, 233, 0.98); border-top: 1.5px solid var(--gold-primary);
      box-shadow: 0 -8px 24px rgba(180, 150, 90, 0.25);
      padding: 8px 12px;
      gap: 10px;
    }
    .mobile-sticky a {
      flex: 1; padding: 12px 10px; text-align: center;
      font-size: 11.5px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      border-radius: 6px; text-decoration: none;
      transition: transform 0.2s;
    }
    .mobile-sticky a:active { transform: scale(0.98); }
    .mobile-sticky a.btn-mobile-health {
      color: #071A2F;
      background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-bright) 50%, var(--gold-primary) 100%);
      box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
    }
    .mobile-sticky a.btn-mobile-wa {
      color: #ffffff;
      background: #25D366;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    .mobile-sticky a i { font-size: 14px; }

    /* ── EXIT-INTENT MODAL ── */
    /* ── EXIT-INTENT FINANCIAL PRESCRIPTION CLIPBOARD MODAL ── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(7, 26, 47, 0.78); backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      align-items: center; justify-content: center; padding: 26px 14px;
      overflow-y: auto;
    }
    .modal-overlay.show { display: flex; animation: fadeIn 0.3s ease; }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes popIn { from { transform: scale(0.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }

    /* The Saddle Brown Leather Clipboard */
    .rx-clipboard {
      position: relative;
      width: 100%;
      max-width: 446px;
      background: #5B2B14;
      background-image: 
        radial-gradient(ellipse at 50% 0%, rgba(142, 72, 38, 0.6) 0%, transparent 70%),
        linear-gradient(160deg, #6B3419 0%, #4D2310 50%, #361709 100%);
      border-radius: 18px;
      padding: 34px 14px 22px;
      box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        inset 0 0 0 1px rgba(0, 0, 0, 0.5);
      border: 1px solid #7D4021;
      animation: popIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-sizing: border-box;
      margin: auto;
    }

    /* Stitched Leather Edge Detail */
    .rx-clipboard::before {
      content: '';
      position: absolute;
      inset: 6px;
      border: 1px dashed rgba(224, 185, 120, 0.38);
      border-radius: 14px;
      pointer-events: none;
      z-index: 2;
    }

    /* Metallic Brass Corner Brackets at Bottom */
    .rx-corner {
      position: absolute;
      width: 22px;
      height: 22px;
      pointer-events: none;
      z-index: 5;
    }
    .rx-corner.bottom-left {
      bottom: 4px;
      left: 4px;
      border-bottom: 3.5px solid #E6CA65;
      border-left: 3.5px solid #E6CA65;
      border-bottom-left-radius: 14px;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
    }
    .rx-corner.bottom-right {
      bottom: 4px;
      right: 4px;
      border-bottom: 3.5px solid #E6CA65;
      border-right: 3.5px solid #E6CA65;
      border-bottom-right-radius: 14px;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
    }
    .rx-corner.bottom-left::after,
    .rx-corner.bottom-right::after {
      content: '';
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #7D5208;
      box-shadow: inset 0 1px 1px #FFF;
    }
    .rx-corner.bottom-left::after { bottom: 4px; left: 4px; }
    .rx-corner.bottom-right::after { bottom: 4px; right: 4px; }

    /* The Brass Clipboard Top Clamp / Clip */
    .rx-clip-assembly {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      width: 170px;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 10;
      pointer-events: none;
    }
    .rx-clip-loop {
      width: 34px;
      height: 14px;
      border: 3.5px solid #C9A227;
      border-bottom: none;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      background: transparent;
      box-shadow: 0 -2px 4px rgba(0,0,0,0.3);
    }
    .rx-clip-body {
      width: 160px;
      height: 32px;
      background: linear-gradient(180deg, #FBF1C7 0%, #D4AF37 25%, #AA7C11 75%, #6B4E08 100%);
      border-radius: 6px;
      border: 1px solid #FFEAA5;
      box-shadow: 
        0 6px 14px rgba(0, 0, 0, 0.45),
        inset 0 1px 1px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      box-sizing: border-box;
    }
    .rx-clip-rivet {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #FFF 0%, #B8860B 45%, #4A3305 100%);
      box-shadow: 0 1px 2px rgba(0,0,0,0.4);
    }
    .rx-clip-wire {
      width: 74px;
      height: 10px;
      border: 3px solid #755208;
      border-top: none;
      border-radius: 0 0 14px 14px;
      margin: 0 auto;
      box-shadow: inset 0 1px 1px #EED888;
    }
    .rx-clip-shadow {
      width: 154px;
      height: 6px;
      background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.45) 0%, transparent 80%);
      margin-top: -2px;
    }

    /* Modal Close Button */
    .modal-close.rx-modal-close {
      position: absolute;
      top: 10px;
      right: 12px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(45, 20, 8, 0.75);
      border: 1px solid rgba(224, 185, 120, 0.45);
      color: #E6CA65;
      font-size: 13px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 20;
      transition: background 0.2s, transform 0.15s, color 0.2s;
    }
    .modal-close.rx-modal-close:hover {
      background: #7D4021;
      color: #FFF;
      transform: scale(1.08);
    }

    /* The Prescription Stationery Pad Paper */
    .rx-paper {
      position: relative;
      background: #FCF9F1;
      background-image: 
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 40%),
        linear-gradient(180deg, #FAF6EC 0%, #F6F0E0 100%);
      border-radius: 4px;
      padding: 14px 16px 18px;
      box-shadow: 
        0 4px 18px rgba(0, 0, 0, 0.28),
        0 1px 3px rgba(0, 0, 0, 0.15);
      border: 1px solid #C5A15C;
      z-index: 3;
      overflow: hidden;
      box-sizing: border-box;
    }
    /* Inner hairline double border */
    .rx-paper-inner {
      border: 1px solid rgba(197, 161, 92, 0.5);
      padding: 12px 14px 14px;
      position: relative;
    }

    /* Dog-ear folded corner at bottom right */
    .rx-paper-corner {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 0 28px 28px;
      border-color: transparent transparent #5B2B14 transparent;
      z-index: 10;
      pointer-events: none;
    }
    .rx-paper-corner::before {
      content: '';
      position: absolute;
      bottom: -28px;
      right: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 28px 28px 0 0;
      border-color: #E2D3B8 transparent transparent transparent;
      box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.25);
    }

    /* Prescription Series Theme Tabs */
    .rx-series-tabs {
      display: flex;
      gap: 5px;
      justify-content: center;
      margin-bottom: 11px;
      flex-wrap: wrap;
    }
    .rx-tab-pill {
      background: #EFE8D6;
      border: 1px solid #CBB895;
      color: #5A4730;
      font-family: 'Rajdhani', 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      padding: 4px 9px;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .rx-tab-pill:hover {
      background: #E5DAC0;
      color: #271904;
    }
    .rx-tab-pill.active {
      background: linear-gradient(135deg, #4A2310 0%, #1A2837 100%);
      color: #F8E6B6;
      border-color: #B8860B;
      box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    }

    /* Prescription Heading */
    .rx-header-block {
      text-align: center;
      margin-bottom: 12px;
    }
    .rx-head-italic {
      font-family: 'Playfair Display', Georgia, serif;
      font-style: italic;
      font-size: 22px;
      font-weight: 700;
      color: #172432;
      line-height: 1.15;
      display: block;
    }
    .rx-head-main {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 23px;
      font-weight: 800;
      color: #172432;
      line-height: 1.18;
      display: block;
      letter-spacing: -0.2px;
    }

    /* Medical Caduceus & Diagnostic Grid */
    .rx-diagnostic-box {
      display: grid;
      grid-template-columns: 82px 1fr;
      gap: 12px;
      align-items: center;
      margin-bottom: 14px;
    }
    .rx-caduceus-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-right: 4px;
    }
    .rx-caduceus-svg {
      width: 78px;
      height: 94px;
      filter: drop-shadow(0 1px 1px rgba(0,0,0,0.12));
    }

    .rx-perks-wrap {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }
    .rx-intro-row {
      border-bottom: 1px solid #D5C7B0;
      padding-bottom: 5px;
      margin-bottom: 2px;
    }
    .rx-intro-text {
      font-family: 'Playfair Display', Georgia, serif;
      font-style: italic;
      font-size: 13px;
      line-height: 1.35;
      color: #273444;
      font-weight: 600;
    }

    .rx-perk-item {
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid #DFD5C2;
      padding-bottom: 4px;
    }
    .rx-perk-badge {
      width: 23px;
      height: 23px;
      min-width: 23px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #354454 0%, #152230 100%);
      border: 1px solid #A8863A;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ECC858;
      font-size: 10px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.22);
    }
    .rx-perk-label {
      font-family: 'Playfair Display', Georgia, serif;
      font-style: italic;
      font-size: 12.8px;
      font-weight: 600;
      color: #172432;
      white-space: nowrap;
    }

    /* Form Fields */
    .rx-form-fields {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 12px;
    }
    .rx-field-group {
      background: #F8F4EA;
      border: 1.5px solid #C4AC82;
      border-radius: 8px;
      display: flex;
      align-items: center;
      padding: 0 12px;
      height: 40px;
      box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .rx-field-group:focus-within {
      border-color: #A37A15;
      box-shadow: 0 0 0 2.5px rgba(184, 134, 11, 0.22);
      background: #FAF7F0;
    }
    .rx-field-icon {
      color: #715738;
      font-size: 13px;
      width: 18px;
      text-align: center;
      margin-right: 8px;
      flex-shrink: 0;
    }
    .rx-field-prefix {
      font-size: 13px;
      font-weight: 700;
      color: #433320;
      margin-right: 8px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Inter', sans-serif;
    }
    .rx-field-prefix span {
      color: #B8A27E;
      font-weight: 400;
    }
    .rx-field-input {
      flex: 1;
      border: none !important;
      outline: none !important;
      background: transparent !important;
      font-size: 13px;
      color: #162432;
      font-family: 'Inter', sans-serif;
      padding: 0 !important;
      margin: 0 !important;
      box-shadow: none !important;
      height: 100%;
    }
    .rx-field-input::placeholder {
      color: #92826F;
      font-style: italic;
    }

    /* Brushed Gold Embossed CTA Button */
    .btn-prescription-gold {
      width: 100%;
      background: linear-gradient(180deg, #F3D97B 0%, #D8B23C 35%, #BC8E1C 70%, #9F720F 100%);
      border: 1px solid #FFEAA5;
      border-bottom: 2.5px solid #6E4C05;
      border-radius: 8px;
      padding: 12px 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #261702;
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: 12.5px;
      letter-spacing: 0.9px;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 
        0 6px 18px rgba(159, 114, 15, 0.38),
        inset 0 1px 1px rgba(255, 255, 255, 0.85);
      transition: all 0.18s ease;
      box-sizing: border-box;
    }
    .btn-prescription-gold:hover {
      background: linear-gradient(180deg, #FAEB9A 0%, #E6C24F 35%, #C99A24 70%, #AB7C12 100%);
      box-shadow: 0 8px 24px rgba(159, 114, 15, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.9);
      transform: translateY(-1px);
    }
    .btn-prescription-gold:active {
      transform: translateY(1px);
      box-shadow: 0 2px 8px rgba(159, 114, 15, 0.4);
    }
    .btn-prescription-gold i {
      font-size: 15px;
      color: #261702;
    }

    /* Prescription Footer Note */
    .rx-footer-note {
      font-size: 11px;
      color: #6E5C49;
      text-align: center;
      margin-top: 8px;
      font-family: 'Inter', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    /* Success View inside Prescription Sheet */
    .rx-success-box {
      text-align: center;
      padding: 22px 8px 18px;
    }
    .rx-success-seal {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #22C55E 0%, #15803D 100%);
      border: 3px solid #FDFBF5;
      box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4);
      color: #FFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 14px;
      animation: popIn 0.4s ease;
    }
    .rx-success-box h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 23px;
      color: #172432;
      margin-bottom: 8px;
    }
    .rx-success-box p {
      font-size: 13.5px;
      color: #4A3B2A;
      line-height: 1.55;
    }

    /* Responsive adjustments for mobile */
    @media (max-width: 460px) {
      .rx-clipboard {
        padding: 30px 10px 18px;
        border-radius: 14px;
      }
      .rx-paper {
        padding: 12px 10px 14px;
      }
      .rx-paper-inner {
        padding: 10px 8px 12px;
      }
      .rx-diagnostic-box {
        grid-template-columns: 66px 1fr;
        gap: 8px;
      }
      .rx-caduceus-svg {
        width: 62px;
        height: 78px;
      }
      .rx-head-italic {
        font-size: 18px;
      }
      .rx-head-main {
        font-size: 19px;
      }
      .rx-intro-text {
        font-size: 12px;
      }
      .rx-perk-label {
        font-size: 12px;
      }
      .rx-clip-assembly {
        width: 140px;
        top: -14px;
      }
      .rx-clip-body {
        width: 130px;
        height: 28px;
      }
      .btn-prescription-gold {
        font-size: 11px;
        padding: 11px 8px;
        letter-spacing: 0.5px;
      }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      nav.top-nav { padding: 14px 20px; }
      .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        background: rgba(254, 247, 233, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 2px solid rgba(201, 162, 39, 0.35);
        box-shadow: 0 12px 30px rgba(180, 150, 90, 0.18);
        padding: 16px 24px 22px;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        z-index: 99;
      }
      .nav-links.nav-open { display: flex; }
      .nav-links li { width: 100%; position: relative; }
      .nav-links a {
        display: inline-flex;
        align-items: center;
        padding: 8px 0;
        width: auto;
        color: var(--navy-deep);
        position: relative;
      }
      .nav-links a::after {
        bottom: 2px;
        left: 0;
        height: 2px;
      }
      .nav-links a:hover { color: var(--gold-dark); }
      .nav-links a:hover::after { width: 0; }
      .nav-links a.active { color: var(--gold-dark); font-weight: 700; }
      .nav-links a.active::after { width: 100%; }
      .dropdown { width: 100%; }
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 4px 0 6px 14px;
        min-width: unset;
        display: flex;
        border-left: 2px solid var(--gold-primary);
        margin: 2px 0 6px 6px;
      }
      .dropdown-menu a {
        padding: 6px 0;
        font-size: 13px;
        color: var(--navy-exec);
      }
      .hamburger { display: block; }
    }
    @media (max-width: 960px) {
      .globe-universe-section { padding: 90px 16px 40px; }
      .hero { padding: 65px 20px 55px; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .page-hero { padding: 130px 20px 55px; }
      .profile-strip { grid-template-columns: 1fr; padding: 60px 24px 40px; gap: 30px; text-align: center; }
      .profile-avatar-wrap { margin: 0 auto; }
      .profile-badges { justify-content: center; }
      .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .about-strip { grid-template-columns: 1fr; padding: 60px 24px; gap: 36px; }
      .section-block { padding: 60px 20px; }
      .booking-form { grid-template-columns: 1fr; }
      .slot-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .mobile-sticky { display: flex; }
      body { padding-bottom: 60px; }
      .hero-benefits { grid-template-columns: 1fr; }

      .fab-promo-ad { bottom: 78px; right: 16px; }
      .fab-promo-ad img.sticky { width: 130px; }
      .fab-promo-ad .hidden-mob { display: block; }
      .fab-promo-ad .hidden-desk { display: none; }
    }
    @media (max-width: 520px) {
      .nav-logo-img { height: 36px; max-width: 44px; }
      .nav-brand-img { height: 18px; max-width: 140px; }
      .nav-logo span { font-size: 7.5px; letter-spacing: 1.8px; }
      .footer-logo-img { height: 44px; }
      .footer-brand-img { height: 22px; max-width: 170px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .booking-card { padding: 30px 22px; }
    }

/* ============================================================
   LUXURY 3D EFFECTS, SCROLL-DRIVEN ANIMATIONS & MICRO-INTERACTIONS
   ============================================================ */

/* 1. Top Reading Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--mahogany), var(--gold-primary), var(--gold-light), var(--gold-soft));
  background-size: 200% 100%;
  z-index: 10000;
  width: 0%;
  transition: width 0.08s ease-out;
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.7);
}

/* 2. Floating Back-to-Top Button */
.back-to-top {
  position: fixed;
  bottom: 85px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mahogany) 0%, var(--gold-primary) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s, box-shadow 0.3s ease;
  border: 1.5px solid var(--gold-primary);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 30px rgba(201, 162, 39, 0.45);
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: #071A2F;
}

/* 3. 3D Tilt Cards & Dynamic Gold Glare */
.tilt-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.18s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s ease;
  position: relative;
  will-change: transform;
}
.tilt-3d::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 162, 39, 0.18), transparent 75%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.tilt-3d:hover::after {
  opacity: 1;
}

/* 4. Scroll Reveal Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered Children Animations */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }

/* 5. Keyframes */
@keyframes float3D {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}
.floating-badge {
  animation: float3D 4s ease-in-out infinite;
}

@keyframes pulseGlowGold {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(201, 162, 39, 0.32);
  }
  50% {
    box-shadow: 0 8px 32px rgba(224, 197, 104, 0.65);
  }
}
.btn-gold {
  animation: pulseGlowGold 3.6s infinite ease-in-out;
}

/* 6. Accessibility / Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-fade-left,
  .reveal-fade-right,
  .reveal-scale,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .floating-badge,
  .profile-badge-float,
  .btn-gold {
    animation: none !important;
  }
  .tilt-3d {
    transform: none !important;
  }
}

/* ── 3D GLOBE INTERACTIVE WEALTH UNIVERSE (TOP HERO) ── */
.globe-universe-section {
  position: relative;
  background: radial-gradient(circle at 50% 35%, #FFF8EC 0%, #FEF7E9 60%, #F5E8D3 100%);
  color: var(--navy-deep);
  padding: 115px 24px 60px;
  overflow: hidden;
  border-bottom: 1.5px solid rgba(201, 162, 39, 0.35);
}
.globe-universe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1.5px 1.5px at 80px 120px, rgba(184, 134, 11, 0.25), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 300px 220px, rgba(201, 162, 39, 0.3), rgba(0,0,0,0)),
    radial-gradient(2px 2px at 520px 80px, rgba(184, 134, 11, 0.2), rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 780px 310px, rgba(201, 162, 39, 0.25), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 980px 150px, rgba(184, 134, 11, 0.2), rgba(0,0,0,0));
  background-size: 550px 400px;
  opacity: 0.6;
  pointer-events: none;
}
.globe-universe-section .section-title {
  color: var(--navy-deep);
}
.globe-universe-section .section-desc {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}
.globe-pills-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px auto 35px;
  max-width: 900px;
  position: relative;
  z-index: 3;
}
.globe-pill {
  background: #FFFFFF;
  border: 1.5px solid rgba(201, 162, 39, 0.35);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(180, 150, 90, 0.12);
}
.globe-pill:hover {
  transform: translateY(-2px);
  background: var(--ivory-surface) !important;
  border-color: var(--gold-primary);
  box-shadow: 0 8px 20px rgba(180, 150, 90, 0.2);
}
.globe-stage-wrapper {
  position: relative;
  max-width: 1140px;
  height: 580px;
  margin: 0 auto;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 50%, #0D2945 0%, #071A2F 70%, #030C16 100%);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 25px 70px rgba(180, 140, 75, 0.25), inset 0 0 60px rgba(13, 41, 69, 0.6);
  overflow: hidden;
}
.globe-canvas-box {
  width: 100%;
  height: 100%;
  cursor: grab;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.globe-canvas-box:active {
  cursor: grabbing;
}
.globe-hud-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  max-width: 360px;
  background: rgba(7, 26, 47, 0.92);
  backdrop-filter: blur(20px);
  border: 1.5px solid var(--mahogany);
  border-radius: 18px;
  padding: 24px 26px;
  text-align: left;
  z-index: 4;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  pointer-events: auto;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.globe-hud-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid var(--gold-primary);
  color: var(--gold-soft);
  background: var(--mahogany-dark);
  margin-bottom: 10px;
}
.globe-hud-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--white);
  transition: opacity 0.2s, color 0.3s;
}
.globe-hud-desc {
  font-size: 13.5px;
  color: var(--ivory);
  line-height: 1.6;
  margin: 0 0 18px;
  transition: opacity 0.2s;
}
.globe-hud-action a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
}
.globe-hud-hint {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .globe-stage-wrapper {
    height: 480px;
  }
  .globe-hud-card {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin: 16px;
    padding: 18px 20px;
  }
  .globe-pill {
    font-size: 11.5px;
    padding: 8px 14px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   EXPERT REVIEW TRANSFORMATIONS: REASSURANCE, MISTAKES, HEALTH SCORE
   ══════════════════════════════════════════════════════════════════ */

/* Hero Reassurance & Diagnostic Perks */
.hero-reassurance-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 8px 18px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-deep);
  flex-wrap: wrap;
}
.hero-reassurance-ribbon i {
  color: var(--gold-dark);
}
.form-diagnostic-perks {
  background: #FDFBF7;
  border: 1px dashed rgba(201, 162, 39, 0.45);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.form-diagnostic-perk {
  font-size: 12px;
  color: var(--navy-deep);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.form-diagnostic-perk:last-child {
  margin-bottom: 0;
}
.form-diagnostic-perk i {
  color: var(--gold-dark);
  font-size: 12px;
}

/* ── 5 COMMON MONEY MISTAKES SECTION ── */
.mistakes-section {
  background: var(--bg-section-alt);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  padding: 85px 24px;
}
.mistakes-grid {
  max-width: 1180px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.mistake-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1.5px solid rgba(90, 46, 32, 0.15);
  box-shadow: 0 8px 24px rgba(180, 150, 90, 0.08);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.mistake-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(180, 150, 90, 0.16);
  border-color: var(--gold-primary);
}
.mistake-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 14px;
}
.mistake-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
  margin-bottom: 10px;
}
.mistake-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}
.mistake-solution {
  background: #FDFBF7;
  border-left: 3px solid var(--gold-primary);
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--mahogany-dark);
  font-weight: 600;
  border-radius: 0 6px 6px 0;
}
.mistakes-bridge-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── 7-QUESTION FINANCIAL HEALTH SCORE ENGINE ── */
.health-score-section {
  padding: 95px 24px;
  background: var(--bg);
  position: relative;
}
.quiz-container {
  max-width: 860px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 24px 70px rgba(180, 150, 90, 0.20), 0 0 0 1px rgba(201, 162, 39, 0.15);
  overflow: hidden;
}
.quiz-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-exec) 100%);
  color: #FFFFFF;
  padding: 28px 36px;
  position: relative;
}
.quiz-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.quiz-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}
.quiz-subtitle {
  font-size: 13.5px;
  color: var(--gold-shine);
  margin-top: 6px;
  opacity: 0.9;
}
.quiz-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}
.quiz-progress-fill {
  height: 100%;
  width: 14.28%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright));
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz-body {
  padding: 36px;
}
.quiz-step-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.quiz-question-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
  margin-bottom: 8px;
}
.quiz-question-hint {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.quiz-options-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-option-btn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid rgba(201, 162, 39, 0.25);
  background: #FDFBF7;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.quiz-option-btn:hover {
  border-color: var(--gold-primary);
  background: #FFFDF9;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(201, 162, 39, 0.15);
}
.quiz-option-btn.selected {
  border-color: var(--navy-deep);
  background: #FAF1DF;
  box-shadow: 0 6px 20px rgba(13, 41, 69, 0.12);
}
.quiz-option-indicator {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.5);
  background: #FFFFFF;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all 0.2s;
}
.quiz-option-btn.selected .quiz-option-indicator {
  border-color: var(--navy-deep);
  background: var(--navy-deep);
}
.quiz-option-indicator::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  opacity: 0;
  transition: opacity 0.2s;
}
.quiz-option-btn.selected .quiz-option-indicator::after {
  opacity: 1;
}
.quiz-option-content {
  flex: 1;
}
.quiz-option-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 2px;
}
.quiz-option-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}
.quiz-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}
.quiz-btn-prev {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.quiz-btn-prev:hover:not(:disabled) {
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}
.quiz-btn-prev:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.quiz-btn-next {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-bright) 50%, var(--gold-primary) 100%);
  color: #071A2F;
  border: none;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.quiz-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.5);
}

/* Score Result Screen */
.score-result-container {
  display: none;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.score-badge-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.score-gauge-card {
  background: linear-gradient(135deg, #071A2F 0%, #153B5B 100%);
  color: #FFFFFF;
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 32px;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 16px 40px rgba(7, 26, 47, 0.25);
}
.score-number-display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 76px);
  font-weight: 900;
  line-height: 1;
  color: var(--gold-bright);
  margin: 8px 0;
}
.score-number-display span {
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.score-verdict-title {
  font-size: 21px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.score-verdict-sub {
  font-size: 14px;
  color: var(--gold-shine);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}
.category-breakdown-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-deep);
  text-align: left;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  text-align: left;
  margin-bottom: 36px;
}
.cat-card {
  background: #FDFBF7;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-deep);
}
.cat-status-pill {
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}
.cat-status-pill.green { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.cat-status-pill.yellow { background: #fef9c3; color: #854d0e; border: 1px solid #fde047; }
.cat-status-pill.red { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.cat-comment {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
.score-consult-box {
  background: #FAF1DF;
  border: 2px solid var(--gold-primary);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(180, 150, 90, 0.15);
}
.score-consult-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.score-consult-desc {
  font-size: 13.5px;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
.score-consult-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 580px;
  margin: 0 auto;
}
.score-consult-form input {
  flex: 1 1 200px;
  padding: 13px 16px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 6px;
  font-size: 14px;
  background: #FFFFFF;
  color: var(--navy-deep);
}
.score-consult-form input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}
.score-consult-form button {
  flex: 1 1 100%;
  padding: 15px 24px;
  background: #25D366;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.2s;
}
.score-consult-form button:hover {
  background: #1eb954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
.score-restart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .quiz-body {
    padding: 24px 18px;
  }
  .quiz-header {
    padding: 22px 20px;
  }
  .score-gauge-card {
    padding: 24px 16px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   HIGH CONVERSION LEAD GENERATION & VISUAL CRO UPGRADES
   ══════════════════════════════════════════════════════════════════ */

/* Hero Lead Card Upgrades */
.lead-availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 1.8s infinite;
}
@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.service-chips-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--navy-deep);
  margin-bottom: 8px;
  display: block;
}
.service-chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}
.service-chip {
  background: #FDFBF7;
  border: 1.5px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  padding: 7px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-deep);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.service-chip:hover {
  border-color: var(--gold-primary);
  background: #FAF1DF;
  color: var(--gold-dark);
}
.service-chip.active {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-exec) 100%);
  color: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(7, 26, 47, 0.2);
}
.btn-wa-instant {
  width: 100%;
  padding: 12px 16px;
  background: #25D366;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-wa-instant:hover {
  background: #1eb954;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}
.form-micro-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(201, 162, 39, 0.3);
}
.form-micro-item {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.form-micro-item i {
  color: #10b981;
  font-size: 10px;
}

/* ── WEALTH GAP & COMPOUNDING LEAKAGE CALCULATOR ── */
.wealth-gap-section {
  padding: 90px 24px;
  background: linear-gradient(180deg, #FEF7E9 0%, #FAF1DF 50%, #FEF7E9 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  position: relative;
}
.wealth-gap-container {
  max-width: 1140px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 24px 70px rgba(180, 150, 90, 0.18), 0 0 0 1px rgba(201, 162, 39, 0.15);
  overflow: hidden;
}
.wealth-gap-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
}
.wealth-gap-controls {
  padding: 44px 40px;
  border-right: 1.5px solid rgba(201, 162, 39, 0.2);
}
.wealth-gap-results {
  padding: 44px 40px;
  background: #FAF7F0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slider-group {
  margin-bottom: 28px;
}
.slider-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.slider-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.slider-val-box {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-dark);
  background: #FAF1DF;
  padding: 4px 14px;
  border-radius: 6px;
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.calc-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #E5E7EB;
  outline: none;
  accent-color: var(--gold-primary);
  cursor: pointer;
  transition: all 0.2s;
}
.slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}
.comp-card-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.comp-bar-item {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1.5px solid rgba(201, 162, 39, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.comp-bar-item.highlighted {
  border-color: var(--gold-primary);
  background: #FFFDF8;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.16);
}
.comp-bar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.comp-bar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  gap: 6px;
}
.comp-bar-rate {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}
.comp-bar-val {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-deep);
}
.comp-bar-item.highlighted .comp-bar-val {
  color: var(--gold-dark);
  font-size: 21px;
}
.comp-bar-track {
  height: 8px;
  background: #F3F4F6;
  border-radius: 4px;
  overflow: hidden;
}
.comp-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.35s ease;
}
.comp-bar-fill.savings { background: #94A3B8; }
.comp-bar-fill.fd { background: #3B82F6; }
.comp-bar-fill.sip { background: linear-gradient(90deg, var(--gold-primary), #10B981); }

.wealth-gap-callout {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-exec) 100%);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 14px;
  border: 1.5px solid var(--gold-primary);
  text-align: center;
  box-shadow: 0 8px 25px rgba(7, 26, 47, 0.25);
}
.wealth-gap-callout-sub {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 700;
}
.wealth-gap-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 900;
  color: #FFFFFF;
  margin: 4px 0 6px;
}
.wealth-gap-callout p {
  font-size: 12px;
  color: var(--gold-shine);
  margin-bottom: 14px;
  line-height: 1.45;
}
.btn-claim-gap {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-bright) 50%, var(--gold-primary) 100%);
  color: #071A2F;
  border: none;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-claim-gap:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.5);
}

/* ── MISTAKE CARD ACTION CHIP ── */
.mistake-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 14px;
  background: #FFFFFF;
  border: 1.5px solid var(--navy-exec);
  border-radius: 6px;
  color: var(--navy-exec);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.mistake-action-btn:hover {
  background: var(--navy-exec);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 41, 69, 0.2);
}
.mistake-action-btn i {
  color: #25D366;
  font-size: 14px;
}
.mistake-action-btn:hover i {
  color: #25D366;
}

/* ── HEALTH SCORE CONSULTANT STRIP ── */
.score-consultant-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1.5px solid rgba(201, 162, 39, 0.35);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  text-align: left;
}
.score-consultant-thumb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  flex-shrink: 0;
}
.score-consultant-info h5 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 2px;
}
.score-consultant-info p {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.35;
}

/* ── EXECUTIVE BOOKING & PORTFOLIO DROP SECTION ── */
.executive-cta-section {
  padding: 95px 24px;
  background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.12), transparent 60%),
              linear-gradient(180deg, #FAF1DF 0%, #FEF7E9 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  position: relative;
}
.executive-card {
  max-width: 1140px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 24px 70px rgba(180, 150, 90, 0.18);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}
.executive-left {
  padding: 48px 44px;
  border-right: 1.5px solid rgba(201, 162, 39, 0.2);
}
.executive-right {
  padding: 48px 40px;
  background: #FAF7F0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.consultation-channels-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.channel-box {
  background: #FDFBF7;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
}
.channel-box i {
  font-size: 20px;
  color: var(--gold-dark);
  margin-bottom: 6px;
  display: block;
}
.channel-box strong {
  display: block;
  color: var(--navy-deep);
  font-size: 12px;
  margin-bottom: 2px;
}
.channel-box span {
  font-size: 10.5px;
  color: var(--text-muted);
}
.cas-drop-box {
  background: #FFFFFF;
  border: 2px dashed rgba(201, 162, 39, 0.45);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 18px;
}
.cas-drop-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.cas-drop-box p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.btn-cas-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: all 0.2s;
}
.btn-cas-upload:hover {
  background: #1eb954;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .wealth-gap-grid, .executive-card {
    grid-template-columns: 1fr;
  }
  .wealth-gap-controls, .executive-left {
    border-right: none;
    border-bottom: 1.5px solid rgba(201, 162, 39, 0.2);
    padding: 32px 24px;
  }
  .wealth-gap-results, .executive-right {
    padding: 32px 24px;
  }
  .consultation-channels-row {
    grid-template-columns: 1fr;
  }
}
