/* ══════════════════════════════════════════════════════════
   ELITE WILL  —  LUXURY REDESIGN SYSTEM
   Theme: Luxury Dark Mode (Onyx, Deep Midnight Navy, Restrained Gold)
   Fonts: Playfair Display (headings) + Manrope (body)
   ══════════════════════════════════════════════════════════ */

:root {
  /* Core Backgrounds */
  --bg-primary: #040914;      /* Deep Onyx Midnight */
  --bg-secondary: #081222;    /* Refined Navy Surface */
  --bg-tertiary: #0c1a2f;     /* Layered Slate Accent */
  --bg-nav: rgba(4, 9, 20, 0.78); /* Floating glass nav background */
  
  /* Brand Accents */
  --color-gold: #c8a96b;      /* Champagne Gold */
  --color-gold-hover: #e8d7a8; /* Luminous Soft Gold */
  --color-gold-glow: rgba(200, 169, 107, 0.12);
  --color-gold-rule: rgba(200, 169, 107, 0.22);
  
  /* Text Palette */
  --text-primary: #ffffff;    /* Absolute White for Headings */
  --text-secondary: #e2e8f0;  /* Off-White for body text */
  --text-muted: #8fa0ba;     /* Cool Slate for descriptions */
  --text-disabled: #4e617d;   /* Subdued Slate for details */

  /* Borders & Glassmorphism */
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glass-bright: rgba(255, 255, 255, 0.12);
  --blur-amount: 24px;
  
  /* Shadows */
  --sh-xs: 0 2px 6px rgba(0, 0, 0, 0.3);
  --sh-sm: 0 4px 18px rgba(0, 0, 0, 0.4);
  --sh-md: 0 12px 36px rgba(0, 0, 0, 0.55);
  --sh-lg: 0 20px 56px rgba(0, 0, 0, 0.7);

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  
  /* Transition Timing */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;

  /* Backward compatibility for inline styles in legacy HTML */
  --navy: var(--text-primary);
  --navy2: var(--bg-secondary);
  --ink: var(--text-secondary);
  --bg-alt: var(--bg-tertiary);
  --surface: var(--bg-secondary);
  --border: var(--border-glass);
  --gold: var(--color-gold);
  --gold2: var(--color-gold-hover);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
html { 
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { 
  display: block; 
  max-width: 100%; 
  height: auto; 
}
a { 
  color: inherit; 
  text-decoration: none; 
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ── PAGE SYSTEM ───────────────────────────────────────── */
.page { 
  display: none; 
  min-height: 100vh; 
  animation: pageIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) both; 
}
.page.active { 
  display: block; 
}
@keyframes pageIn { 
  from { opacity: 0; transform: translateY(12px) scale(0.99); } 
  to { opacity: 1; transform: none; } 
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION (Floating Glass Capsule Navbar)
   ══════════════════════════════════════════════════════════ */
nav {
  position: fixed; 
  top: 16px; 
  left: 5vw; 
  right: 5vw; 
  z-index: 200;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 0 32px; 
  height: 68px;
  background: var(--bg-nav);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--border-glass);
  border-radius: 34px;
  box-shadow: var(--sh-sm);
  transition: var(--transition-smooth);
}
nav.scrolled {
  top: 8px;
  height: 60px;
  background: rgba(4, 9, 20, 0.90);
  border-color: var(--border-glass-bright);
  box-shadow: var(--sh-md), 0 0 20px rgba(200, 169, 107, 0.05);
}

.nav-logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  cursor: pointer; 
}
.nav-logo img { 
  height: 38px; 
  width: 38px; 
  object-fit: contain; 
  border-radius: 50%;
  border: 1px solid var(--color-gold-rule);
  transition: var(--transition-smooth);
}
nav.scrolled .nav-logo img {
  height: 32px;
  width: 32px;
}
.nav-logo:hover img {
  transform: rotate(5deg) scale(1.05);
  border-color: var(--color-gold);
  box-shadow: 0 0 12px var(--color-gold-glow);
}
.nav-logo-text { 
  display: flex; 
  flex-direction: column; 
  line-height: 1.15; 
}
.nav-logo-top {
  font-family: var(--serif);
  font-size: 15px; 
  letter-spacing: .06em; 
  font-weight: 600;
  color: var(--text-primary); 
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 8px; 
  letter-spacing: .24em; 
  text-transform: uppercase;
  color: var(--color-gold); 
  font-weight: 600; 
  margin-top: 1px;
  font-family: var(--sans);
}

.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 28px; 
  list-style: none; 
}
.nav-links a {
  font-size: 11px; 
  letter-spacing: .14em; 
  text-transform: uppercase;
  color: var(--text-muted); 
  font-weight: 600;
  transition: var(--transition-fast); 
  cursor: pointer;
  position: relative; 
  padding-bottom: 4px;
  font-family: var(--sans);
}
.nav-links a::after {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0;
  height: 1.5px; 
  background: var(--color-gold);
  transform: scaleX(0); 
  transform-origin: left; 
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { 
  color: var(--text-primary); 
}
.nav-links a:hover::after, .nav-links a.active::after { 
  transform: scaleX(1); 
}

.nav-cta {
  font-size: 10px; 
  letter-spacing: .16em; 
  text-transform: uppercase;
  border: 1.5px solid var(--color-gold); 
  color: var(--color-gold);
  padding: 8px 20px; 
  background: transparent;
  font-family: var(--sans); 
  font-weight: 700; 
  cursor: pointer;
  transition: var(--transition-smooth); 
  border-radius: 20px;
}
.nav-cta:hover { 
  background: var(--color-gold); 
  color: var(--bg-primary); 
  box-shadow: 0 0 15px var(--color-gold-glow);
  transform: translateY(-1px);
}

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: 6px; 
}
.hamburger span { 
  display: block; 
  width: 22px; 
  height: 1.5px; 
  background: var(--text-primary); 
  transition: var(--transition-smooth); 
}
.mobile-menu {
  display: none; 
  position: fixed; 
  top: 96px; 
  left: 5vw; 
  right: 5vw;
  background: var(--bg-secondary); 
  padding: 24px;
  border: 1px solid var(--border-glass); 
  border-radius: 20px; 
  z-index: 199;
  box-shadow: var(--sh-lg);
  animation: slideDown 0.3s ease-out both;
}
.mobile-menu.open { 
  display: block; 
}
.mobile-menu li { 
  list-style: none; 
  padding: 12px 0; 
  border-bottom: 1px solid var(--border-glass); 
}
.mobile-menu li:last-child {
  border-bottom: none;
}
.mobile-menu a {
  font-size: 13px; 
  letter-spacing: .12em; 
  text-transform: uppercase;
  color: var(--text-secondary); 
  cursor: pointer; 
  font-weight: 600;
  font-family: var(--sans);
}
.mobile-menu a:hover {
  color: var(--color-gold);
}

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

/* ══════════════════════════════════════════════════════════
   SHARED LAYOUT
   ══════════════════════════════════════════════════════════ */
.section { 
  padding: 96px 5vw; 
}
.container { 
  max-width: 1160px; 
  margin: 0 auto; 
}
.container-n { 
  max-width: 820px; 
  margin: 0 auto; 
}

/* Overline label */
.overline {
  font-size: 10px; 
  letter-spacing: .30em; 
  text-transform: uppercase;
  color: var(--color-gold); 
  display: flex; 
  align-items: center; 
  gap: 14px;
  margin-bottom: 18px; 
  font-family: var(--sans); 
  font-weight: 700;
}
.overline::before {
  content: ''; 
  display: block; 
  width: 24px; 
  height: 1.5px; 
  background: var(--color-gold);
}

/* Section title */
.sec-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 500; 
  line-height: 1.15;
  color: var(--text-primary); 
  letter-spacing: -0.01em;
}
.sec-title em { 
  font-style: italic; 
  color: var(--color-gold); 
  font-weight: 400;
}

.rule-gold { 
  width: 44px; 
  height: 2px; 
  background: var(--color-gold); 
  margin: 24px 0; 
}

.body-text {
  color: var(--text-muted);
  font-size: 17px; 
  line-height: 1.80;
  max-width: 600px; 
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn-p {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: var(--color-gold);
  color: var(--bg-primary);
  border: 1.5px solid var(--color-gold);
  font-family: var(--sans); 
  font-size: 11px;
  font-weight: 700; 
  letter-spacing: .18em; 
  text-transform: uppercase;
  padding: 14px 32px; 
  cursor: pointer; 
  border-radius: 24px;
  transition: var(--transition-smooth);
}
.btn-p:hover { 
  background: transparent; 
  color: var(--color-gold); 
  box-shadow: 0 0 20px var(--color-gold-glow);
  transform: translateY(-2px);
}
.btn-p svg { 
  width: 14px; 
  height: 14px; 
  flex-shrink: 0; 
  transition: transform 0.25s ease;
}
.btn-p:hover svg {
  transform: translateX(4px);
}

.btn-o {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: transparent; 
  color: var(--text-primary);
  border: 1.5px solid var(--border-glass-bright);
  font-family: var(--sans); 
  font-size: 11px;
  font-weight: 600; 
  letter-spacing: .18em; 
  text-transform: uppercase;
  padding: 13px 30px; 
  cursor: pointer; 
  border-radius: 24px; 
  transition: var(--transition-smooth);
}
.btn-o:hover { 
  background: var(--color-gold); 
  color: var(--bg-primary); 
  border-color: var(--color-gold);
  box-shadow: 0 0 15px var(--color-gold-glow);
  transform: translateY(-2px);
}
.btn-o svg {
  width: 14px; 
  height: 14px; 
  transition: transform 0.25s ease;
}
.btn-o:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.80);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  font-family: var(--sans); 
  font-size: 11px;
  font-weight: 600; 
  letter-spacing: .18em; 
  text-transform: uppercase;
  padding: 13px 30px; 
  cursor: pointer; 
  border-radius: 24px; 
  transition: var(--transition-smooth);
}
.btn-ghost:hover { 
  border-color: var(--color-gold); 
  color: var(--color-gold); 
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative; 
  min-height: 100vh;
  display: flex; 
  align-items: flex-end;
  padding-top: 100px; 
  overflow: hidden;
}
.hero-bg {
  position: absolute; 
  inset: 0;
  background-image: url('assets/image_1.jpeg');
  background-size: cover;
  background-position: center 55%;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom { 
  from { transform: scale(1.01); } 
  to { transform: scale(1.06); } 
}

/* Sleek Dark Gradient Overlay */
.hero-overlay {
  position: absolute; 
  inset: 0; 
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(4, 9, 20, 0.75) 0%,
      rgba(4, 9, 20, 0.40) 30%,
      rgba(4, 9, 20, 0.30) 50%,
      rgba(4, 9, 20, 0.65) 75%,
      rgba(4, 9, 20, 0.98) 100%),
    linear-gradient(110deg,
      rgba(4, 9, 20, 0.85) 0%,
      rgba(4, 9, 20, 0.40) 55%,
      transparent 80%);
}

.hero-grain {
  position: absolute; 
  inset: 0; 
  z-index: 2; 
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { 
  position: relative; 
  z-index: 3; 
  width: 100%; 
  padding: 0 5vw 48px; 
}
.hero-container { 
  max-width: 1160px; 
  margin: 0 auto; 
}

.hero-eyebrow {
  font-size: 10px; 
  letter-spacing: .34em; 
  text-transform: uppercase;
  color: var(--color-gold); 
  display: flex; 
  align-items: center; 
  gap: 16px;
  margin-bottom: 24px; 
  font-family: var(--sans); 
  font-weight: 700;
  opacity: 0; 
  transform: translateY(18px);
  animation: fadeUp .9s .2s ease forwards;
}
.hero-eyebrow::before { 
  content: ''; 
  width: 32px; 
  height: 1.5px; 
  background: var(--color-gold); 
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 500; 
  line-height: 1.10;
  color: var(--text-primary); 
  letter-spacing: -.02em;
  margin-bottom: 24px; 
  max-width: 780px;
  opacity: 0; 
  transform: translateY(22px);
  animation: fadeUp 1s .4s ease forwards;
}
.hero-headline em { 
  font-style: italic; 
  color: var(--color-gold); 
  font-weight: 400;
}

.hero-sub {
  font-size: 17px; 
  line-height: 1.80; 
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 520px; 
  margin-bottom: 36px;
  opacity: 0; 
  transform: translateY(18px);
  animation: fadeUp 1s .6s ease forwards;
}
.hero-actions {
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  margin-bottom: 64px;
  opacity: 0; 
  transform: translateY(16px);
  animation: fadeUp 1s .8s ease forwards;
}

/* Hero variant buttons */
.btn-hero-p {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: var(--color-gold); 
  color: var(--bg-primary);
  border: 1.5px solid var(--color-gold);
  font-family: var(--sans); 
  font-size: 11px;
  font-weight: 700; 
  letter-spacing: .18em; 
  text-transform: uppercase;
  padding: 14px 32px; 
  cursor: pointer; 
  border-radius: 24px; 
  transition: var(--transition-smooth);
}
.btn-hero-p:hover { 
  background: var(--color-gold-hover); 
  border-color: var(--color-gold-hover); 
  box-shadow: 0 0 20px rgba(200, 169, 107, 0.25);
  transform: translateY(-2px);
}
.btn-hero-p svg { 
  width: 14px; 
  height: 14px; 
  flex-shrink: 0; 
  transition: transform 0.25s ease;
}
.btn-hero-p:hover svg {
  transform: translateX(4px);
}

.hero-stats {
  display: flex; 
  gap: 0;
  border-top: 1px solid var(--border-glass);
  padding-top: 36px;
  opacity: 0; 
  animation: fadeUp 1s 1s ease forwards;
}
.hero-stat { 
  padding-right: 44px; 
  margin-right: 44px; 
  border-right: 1px solid var(--border-glass); 
}
.hero-stat:last-child { 
  border-right: none; 
  padding-right: 0; 
  margin-right: 0; 
}
.hero-stat-num {
  font-family: var(--serif); 
  font-size: 28px;
  color: var(--color-gold); 
  font-weight: 500; 
  line-height: 1; 
  margin-bottom: 6px;
}
.hero-stat-lbl {
  font-size: 10px; 
  letter-spacing: .16em; 
  text-transform: uppercase;
  color: var(--text-muted); 
  font-weight: 600; 
  font-family: var(--sans);
}

.scroll-ind {
  position: absolute; 
  bottom: 24px; 
  right: 5vw; 
  z-index: 3;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px;
  opacity: 0; 
  animation: fadeUp 1s 1.2s ease forwards;
}
.scroll-ind-line {
  width: 1px; 
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.15); }
}
.scroll-ind-lbl {
  font-size: 8px; 
  letter-spacing: .22em; 
  text-transform: uppercase;
  color: var(--text-disabled); 
  writing-mode: vertical-rl;
  font-family: var(--sans); 
  font-weight: 700;
}

/* City location tag — top right corner */
.hero-city-tag {
  position: absolute; 
  top: 108px; 
  right: 5vw; 
  z-index: 4;
  display: flex; 
  align-items: center; 
  gap: 7px;
  font-family: var(--sans); 
  font-size: 10px;
  letter-spacing: .18em; 
  text-transform: uppercase;
  color: var(--text-muted); 
  font-weight: 600;
  opacity: 0; 
  animation: fadeUp .8s 1.4s ease forwards;
}

/* Split layout inside hero */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px; 
  align-items: center;
  margin-bottom: 48px;
}
.hero-left  { display: flex; flex-direction: column; }
.hero-right { display: flex; justify-content: flex-end; align-items: center; }

/* ── Floating glass trust card inside hero ── */
.hero-trust-card {
  background: rgba(8, 18, 34, 0.72);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--border-glass-bright);
  padding: 32px;
  border-top: 3px solid var(--color-gold);
  border-radius: 8px;
  opacity: 0; 
  animation: fadeUp 1s .95s ease forwards;
  min-width: 290px;
  box-shadow: var(--sh-md);
}
.htc-label {
  font-family: var(--sans); 
  font-size: 9px;
  letter-spacing: .26em; 
  text-transform: uppercase;
  color: var(--color-gold); 
  font-weight: 700; 
  margin-bottom: 8px;
}
.htc-title {
  font-family: var(--serif); 
  font-size: 22px;
  color: var(--text-primary); 
  font-weight: 500; 
  line-height: 1.25;
  margin-bottom: 18px;
}
.htc-divider {
  width: 100%; 
  height: 1px;
  background: var(--border-glass);
  margin-bottom: 18px;
}
.htc-row {
  display: flex; 
  align-items: center; 
  gap: 12px;
  padding: 8px 0;
  font-family: var(--sans); 
  font-size: 13px;
  color: var(--text-secondary); 
  font-weight: 400;
  border-bottom: 1px solid var(--border-glass);
}
.htc-row:last-child { 
  border-bottom: none; 
}
.htc-row svg { 
  color: var(--color-gold); 
  flex-shrink: 0; 
}

/* ══════════════════════════════════════════════════════════
   INTERACTIVE WIDGET (Will Selector Quiz / Calculator)
   ══════════════════════════════════════════════════════════ */
.quiz-widget {
  background: rgba(8, 18, 34, 0.85);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--border-glass-bright);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--sh-lg);
  border-top: 3px solid var(--color-gold);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  animation: fadeUp 1s .95s ease forwards;
}

.quiz-header {
  margin-bottom: 20px;
}
.quiz-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.quiz-step-dot {
  flex: 1;
  height: 3px;
  background: var(--border-glass-bright);
  border-radius: 2px;
  transition: var(--transition-smooth);
}
.quiz-step-dot.active {
  background: var(--color-gold);
  box-shadow: 0 0 6px var(--color-gold-glow);
}

.quiz-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.25;
}

.quiz-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quiz-slide {
  display: none;
  animation: slideFadeIn 0.4s ease-out forwards;
}
.quiz-slide.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: none; }
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.quiz-option:hover {
  border-color: var(--color-gold-rule);
  background: rgba(200, 169, 107, 0.04);
}
.quiz-option input[type="radio"] {
  accent-color: var(--color-gold);
  cursor: pointer;
}
.quiz-option-lbl {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.quiz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
}
.quiz-btn-back {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
}
.quiz-btn-back:hover {
  color: var(--text-primary);
  border-color: var(--border-glass-bright);
}
.quiz-btn-next {
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  color: var(--bg-primary);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition-smooth);
}
.quiz-btn-next:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  box-shadow: 0 0 10px var(--color-gold-glow);
}

.quiz-result-box {
  text-align: center;
  padding: 16px 0;
}
.quiz-result-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-gold-glow);
  border: 1px solid var(--color-gold-rule);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 700;
}
.quiz-result-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.quiz-result-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════
   PROBLEM STRIP
   ══════════════════════════════════════════════════════════ */
.prob-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass); 
  border-bottom: 1px solid var(--border-glass);
  padding: 80px 5vw;
}
.prob-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; 
}
.prob-item {
  background: var(--bg-tertiary); 
  padding: 44px 36px;
  position: relative; 
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  transition: var(--transition-smooth);
}
.prob-item:hover { 
  border-color: var(--color-gold-rule);
  box-shadow: var(--sh-sm), 0 4px 20px rgba(200, 169, 107, 0.03);
  transform: translateY(-2px);
}
.prob-n {
  font-family: var(--serif); 
  font-size: 56px;
  color: rgba(200, 169, 107, 0.04); 
  position: absolute; 
  top: 16px; 
  right: 24px;
  line-height: 1; 
  font-weight: 700;
  user-select: none;
}
.prob-icon { 
  width: 32px; 
  height: 32px; 
  margin-bottom: 22px; 
  color: var(--color-gold); 
}
.prob-title {
  font-family: var(--serif); 
  font-size: 22px; 
  margin-bottom: 13px;
  font-weight: 500; 
  color: var(--text-primary);
}
.prob-body { 
  color: var(--text-muted); 
  font-size: 15.5px; 
  line-height: 1.78; 
  font-weight: 400; 
}

/* ══════════════════════════════════════════════════════════
   WHY IT MATTERS / MATTERS GRID
   ══════════════════════════════════════════════════════════ */
.matters-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 80px; 
  align-items: center; 
}
.matters-visual {
  height: 520px; 
  position: relative; 
  overflow: hidden;
  border-radius: 8px; 
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border-glass-bright);
}
.matters-visual img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.matters-visual-ov {
  position: absolute; 
  inset: 0;
  background: linear-gradient(to top, rgba(4, 9, 20, 0.70) 0%, transparent 60%);
}
.matters-visual-cap {
  position: absolute; 
  bottom: 22px; 
  left: 26px;
  font-size: 9px; 
  letter-spacing: .22em; 
  text-transform: uppercase;
  color: rgba(255, 255, 255, .60); 
  font-family: var(--sans); 
  font-weight: 700;
}
.matter-item {
  display: flex; 
  gap: 22px; 
  align-items: flex-start;
  padding-bottom: 28px; 
  border-bottom: 1px solid var(--border-glass);
}
.matter-item:last-child { 
  border-bottom: none; 
  padding-bottom: 0; 
}
.matter-n {
  font-family: var(--serif); 
  font-size: 13px; 
  color: var(--color-gold);
  flex-shrink: 0; 
  margin-top: 4px; 
  letter-spacing: .08em; 
  font-weight: 700;
}
.matter-title {
  font-family: var(--serif); 
  font-size: 20px; 
  margin-bottom: 8px;
  font-weight: 500; 
  color: var(--text-primary);
}
.matter-body { 
  color: var(--text-muted); 
  font-size: 15.5px; 
  line-height: 1.78; 
}

/* ══════════════════════════════════════════════════════════
   HOW WE HELP
   ══════════════════════════════════════════════════════════ */
.help-bg { 
  background: var(--bg-secondary); 
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.help-grid {
  display: grid; 
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.help-card {
  background: var(--bg-tertiary); 
  padding: 48px; 
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}
.help-card:hover { 
  border-color: var(--color-gold-rule);
  box-shadow: var(--sh-md), 0 6px 24px rgba(200, 169, 107, 0.02);
  transform: translateY(-2px);
}
.hc-icon { 
  width: 36px; 
  height: 36px; 
  color: var(--color-gold); 
  margin-bottom: 24px; 
}
.hc-title {
  font-family: var(--serif); 
  font-size: 22px; 
  margin-bottom: 12px;
  font-weight: 500; 
  color: var(--text-primary);
}
.hc-body { 
  color: var(--text-muted); 
  font-size: 15.5px; 
  line-height: 1.80; 
}

/* ══════════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════════ */
.stats-strip {
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; 
  padding: 24px 5vw;
}
.stat-box {
  background: var(--bg-secondary); 
  padding: 48px 32px; 
  text-align: center;
  position: relative; 
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}
.stat-box::before {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(200, 169, 107, .06), transparent 70%);
  pointer-events: none;
}
.stat-big {
  font-family: var(--serif); 
  font-size: 44px;
  color: var(--color-gold-hover); 
  font-weight: 400; 
  line-height: 1;
  margin-bottom: 8px; 
  position: relative; 
  z-index: 1;
}
.stat-lbl {
  font-size: 10.5px; 
  letter-spacing: .16em; 
  text-transform: uppercase;
  color: var(--text-muted); 
  font-family: var(--sans); 
  font-weight: 600;
  position: relative; 
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   CTA BAND (Dark bottom panel)
   ══════════════════════════════════════════════════════════ */
.cta-band {
  padding: 110px 5vw; 
  background: var(--bg-secondary); 
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative; 
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: radial-gradient(ellipse 80% 90% at 50% 100%, rgba(200, 169, 107, .06), transparent 65%);
  pointer-events: none;
}
.cta-band .sec-title { 
  color: var(--text-primary); 
  margin: 0 auto 16px; 
  max-width: 680px; 
}
.cta-band .sec-title em { 
  color: var(--color-gold-hover); 
}
.cta-band .body-text {
  color: var(--text-muted); 
  margin: 0 auto 40px; 
  max-width: 520px; 
  text-align: center;
}
.cta-band .btns { 
  display: flex; 
  gap: 16px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

/* Compliance statement tag */
.compliance-tag {
  font-size: 9.5px; 
  letter-spacing: .12em; 
  color: var(--text-disabled);
  display: inline-block; 
  padding: 8px 20px; 
  margin-top: 24px;
  border: 1px solid rgba(200, 169, 107, .16); 
  font-family: var(--sans);
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (Slim top section for other pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 160px 5vw 80px;
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary)); 
  border-bottom: 1px solid var(--border-glass);
}
.page-hero .sec-title { 
  max-width: 760px; 
}
.page-hero .body-text { 
  margin-top: 18px; 
}

/* ══════════════════════════════════════════════════════════
   PAGE 2 — WHY A WILL
   ══════════════════════════════════════════════════════════ */
.scenario-block {
  background: var(--bg-secondary); 
  border-left: 3px solid var(--color-gold);
  border-radius: 0 8px 8px 0;
  padding: 36px 40px; 
  margin: 40px 0;
  border-top: 1px solid var(--border-glass);
  border-right: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.sc-lbl {
  font-size: 9px; 
  letter-spacing: .26em; 
  text-transform: uppercase;
  color: var(--color-gold); 
  margin-bottom: 14px; 
  font-family: var(--sans); 
  font-weight: 700;
}
.sc-text {
  font-family: var(--serif); 
  font-size: 19px; 
  font-style: italic;
  line-height: 1.65; 
  color: var(--text-primary); 
  font-weight: 400;
}
.two-col { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 64px; 
  align-items: start; 
}

/* Risk details */
.risk-item {
  padding: 24px 28px; 
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  background: var(--bg-secondary); 
  transition: var(--transition-smooth);
  border-left: 3px solid transparent;
}
.risk-item:hover { 
  border-color: var(--border-glass-bright); 
  border-left-color: var(--color-gold); 
  box-shadow: var(--sh-sm); 
}
.risk-head { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  margin-bottom: 10px; 
}
.risk-dot { 
  width: 7px; 
  height: 7px; 
  border-radius: 50%; 
  background: var(--color-gold); 
  flex-shrink: 0; 
}
.risk-title { 
  font-family: var(--serif); 
  font-size: 19px; 
  font-weight: 500; 
  color: var(--text-primary); 
}
.risk-body { 
  color: var(--text-muted); 
  font-size: 15.5px; 
  line-height: 1.78; 
  padding-left: 21px; 
}

/* Expatriates card layout */
.expat-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  margin-top: 36px;
}
.expat-card {
  background: var(--bg-secondary); 
  padding: 40px 32px;
  border-top: 3px solid var(--color-gold); 
  border-radius: 0 0 8px 8px;
  border-left: 1px solid var(--border-glass);
  border-right: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--sh-xs);
  transition: var(--transition-smooth);
}
.expat-card:hover { 
  box-shadow: var(--sh-md); 
  transform: translateY(-3px); 
  border-color: var(--border-glass-bright);
}
.expat-flag { 
  font-size: 32px; 
  margin-bottom: 18px; 
}
.expat-title { 
  font-family: var(--serif); 
  font-size: 20px; 
  margin-bottom: 10px; 
  font-weight: 500; 
  color: var(--text-primary); 
}
.expat-body { 
  color: var(--text-muted); 
  font-size: 15.5px; 
  line-height: 1.78; 
}

.asset-strip { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  margin-top: 32px;
}
.asset-cell {
  background: var(--bg-secondary); 
  padding: 48px 32px; 
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}
.asset-cell:hover { 
  background: var(--bg-tertiary); 
  border-color: var(--color-gold-rule);
}

/* ══════════════════════════════════════════════════════════
   PAGE 3 — OUR PROCESS
   ══════════════════════════════════════════════════════════ */
.proc-timeline {
  position: relative; 
  padding-left: 64px; 
  display: flex; 
  flex-direction: column;
}
.proc-timeline::before {
  content: ''; 
  position: absolute;
  top: 40px; 
  bottom: 40px; 
  left: 20px;
  width: 1px; 
  background: var(--border-glass);
}
.proc-step {
  position: relative; 
  padding: 32px 0 32px 32px;
  border-bottom: 1px solid var(--border-glass);
}
.proc-step:last-child { 
  border-bottom: none; 
}
.step-n {
  position: absolute; 
  left: -64px; 
  top: 32px;
  width: 40px; 
  height: 40px;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: var(--bg-primary);
  font-family: var(--serif); 
  font-size: 16px; 
  color: var(--color-gold); 
  font-weight: 600;
}
.step-title { 
  font-family: var(--serif); 
  font-size: 24px; 
  margin-bottom: 10px; 
  font-weight: 500; 
  color: var(--text-primary); 
}
.step-body { 
  color: var(--text-muted); 
  font-size: 16px; 
  line-height: 1.78; 
  max-width: 580px; 
}
.step-tags { 
  display: flex; 
  gap: 8px; 
  flex-wrap: wrap; 
  margin-top: 16px; 
}
.s-tag-p {
  font-size: 9px; 
  letter-spacing: .14em; 
  text-transform: uppercase;
  color: var(--color-gold); 
  border: 1px solid var(--color-gold-rule);
  padding: 4px 12px; 
  background: var(--color-gold-glow); 
  font-family: var(--sans); 
  font-weight: 700;
  border-radius: 12px;
}

.bracket-box {
  position: relative; 
  padding: 32px;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}
.bracket-box::before, .bracket-box::after {
  content: ''; 
  position: absolute; 
  width: 16px; 
  height: 16px;
}
.bracket-box::before { 
  top: 0; 
  left: 0; 
  border-top: 2px solid var(--color-gold); 
  border-left: 2px solid var(--color-gold); 
  border-radius: 8px 0 0 0;
}
.bracket-box::after { 
  bottom: 0; 
  right: 0; 
  border-bottom: 2px solid var(--color-gold); 
  border-right: 2px solid var(--color-gold); 
  border-radius: 0 0 8px 0;
}

.compliance-panel {
  background: var(--bg-secondary); 
  border: 1px solid var(--color-gold-rule);
  border-radius: 8px;
  padding: 48px; 
  margin-top: 64px; 
  position: relative; 
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.compliance-panel::before {
  content: '“'; 
  font-family: var(--serif);
  font-size: 160px; 
  color: rgba(200, 169, 107, .04);
  position: absolute; 
  top: -40px; 
  left: 20px; 
  line-height: 1;
}
.compliance-stmt {
  font-family: var(--serif); 
  font-size: 19px; 
  font-style: italic; 
  line-height: 1.75;
  color: var(--text-primary); 
  font-weight: 400; 
  max-width: 720px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   PAGE 4 — WILL SOLUTIONS
   ══════════════════════════════════════════════════════════ */
.sol-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 24px; 
}
.sol-card {
  background: var(--bg-secondary); 
  padding: 44px;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  transition: var(--transition-smooth); 
  box-shadow: var(--sh-xs);
  border-top: 3px solid transparent;
}
.sol-card:hover {
  border-color: var(--border-glass-bright); 
  border-top-color: var(--color-gold);
  box-shadow: var(--sh-md); 
  transform: translateY(-4px);
}
.sol-icon { 
  font-size: 32px; 
  margin-bottom: 18px; 
}
.sol-title { 
  font-family: var(--serif); 
  font-size: 24px; 
  margin-bottom: 10px; 
  font-weight: 500; 
  color: var(--text-primary); 
}
.sol-sub {
  font-size: 9.5px; 
  letter-spacing: .18em; 
  text-transform: uppercase;
  color: var(--color-gold); 
  margin-bottom: 12px; 
  font-family: var(--sans); 
  font-weight: 700;
}
.sol-body { 
  color: var(--text-muted); 
  font-size: 15.5px; 
  line-height: 1.80; 
}
.sol-tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  margin-top: 24px; 
}
.s-tag {
  font-size: 9px; 
  letter-spacing: .12em; 
  text-transform: uppercase;
  color: var(--text-secondary); 
  background: var(--bg-tertiary);
  padding: 4px 10px; 
  border: 1px solid var(--border-glass);
  font-family: var(--sans); 
  font-weight: 600;
  border-radius: 4px;
}

.court-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
  margin-top: 40px; 
}
.court-card {
  background: var(--bg-secondary); 
  padding: 44px 36px;
  border-top: 3px solid var(--color-gold); 
  border-radius: 0 0 8px 8px;
  border-left: 1px solid var(--border-glass);
  border-right: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--sh-sm);
}
.court-title { 
  font-family: var(--serif); 
  font-size: 22px; 
  margin-bottom: 12px; 
  font-weight: 500; 
  color: var(--text-primary); 
}
.court-body { 
  color: var(--text-muted); 
  font-size: 15.5px; 
  line-height: 1.80; 
}

/* ══════════════════════════════════════════════════════════
   PAGE 5 — PARTNER WITH US
   ══════════════════════════════════════════════════════════ */
.partner-hero-wrap {
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  min-height: 480px;
}
.partner-hero-content {
  padding: 120px 5vw 80px;
  background: var(--bg-primary);
  display: flex; 
  flex-direction: column; 
  justify-content: center;
}
.partner-hero-photo {
  position: relative; 
  overflow: hidden; 
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-glass);
}
.partner-hero-photo img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.why-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px;
}
.why-item {
  background: var(--bg-secondary); 
  padding: 40px 32px;
  border: 1px solid var(--border-glass); 
  border-top: 3px solid var(--color-gold);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--sh-xs); 
  transition: var(--transition-smooth);
}
.why-item:hover { 
  box-shadow: var(--sh-md); 
  transform: translateY(-3px); 
  border-color: var(--border-glass-bright);
}
.why-n {
  font-family: var(--serif); 
  font-size: 40px;
  color: rgba(200, 169, 107, .15); 
  margin-bottom: 12px; 
  line-height: 1; 
  font-weight: 700;
}
.why-title { 
  font-family: var(--serif); 
  font-size: 21px; 
  margin-bottom: 12px; 
  font-weight: 500; 
  color: var(--text-primary); 
}
.why-body { 
  color: var(--text-muted); 
  font-size: 15.5px; 
  line-height: 1.78; 
}

.benefits-list {
  display: flex; 
  flex-direction: column;
  border: 1px solid var(--border-glass); 
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
}
.benefit-row {
  display: flex; 
  align-items: flex-start; 
  gap: 24px;
  padding: 26px 32px; 
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-fast);
}
.benefit-row:last-child { 
  border-bottom: none; 
}
.benefit-row:hover { 
  background: var(--bg-tertiary); 
}
.benefit-icon { 
  color: var(--color-gold); 
  flex-shrink: 0; 
  margin-top: 3px; 
}
.benefit-title { 
  font-family: var(--serif); 
  font-size: 19px; 
  font-weight: 500; 
  margin-bottom: 6px; 
  color: var(--text-primary); 
}
.benefit-body { 
  color: var(--text-muted); 
  font-size: 15.5px; 
  line-height: 1.78; 
}

.partner-form {
  background: var(--bg-secondary); 
  padding: 48px;
  border: 1px solid var(--border-glass-bright); 
  border-radius: 8px;
  box-shadow: var(--sh-lg);
}
.form-title { 
  font-family: var(--serif); 
  font-size: 28px; 
  margin-bottom: 8px; 
  font-weight: 500; 
  color: var(--text-primary); 
}
.form-sub { 
  color: var(--text-muted); 
  font-size: 15.5px; 
  margin-bottom: 28px; 
  line-height: 1.70; 
}
.form-row { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  margin-bottom: 20px; 
}
.form-label {
  font-size: 9.5px; 
  letter-spacing: .20em; 
  text-transform: uppercase;
  color: var(--color-gold); 
  font-weight: 700; 
  font-family: var(--sans);
}
.form-input {
  background: var(--bg-tertiary); 
  border: 1.5px solid var(--border-glass);
  color: var(--text-primary); 
  font-family: var(--sans); 
  font-size: 15px; 
  font-weight: 400;
  padding: 12px 16px; 
  outline: none; 
  transition: var(--transition-fast); 
  width: 100%;
  border-radius: 6px;
}
.form-input:focus { 
  border-color: var(--color-gold); 
  background: var(--bg-secondary); 
  box-shadow: 0 0 10px rgba(200, 169, 107, 0.05);
}
.form-input::placeholder { 
  color: var(--text-disabled); 
}
.form-select option { 
  background: var(--bg-secondary); 
  color: var(--text-primary);
}

/* Custom form row interaction using :has() */
.form-row:has(.form-input:focus) .form-label {
  color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 80px 5vw 40px;
}
.foot-grid {
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; 
  margin-bottom: 48px;
}
.foot-brand {
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 16px;
}
.foot-brand img { 
  height: 38px; 
  width: 38px; 
  object-fit: contain; 
  border-radius: 50%;
  border: 1px solid var(--color-gold-rule);
}
.foot-brand-name { 
  font-family: var(--serif); 
  font-size: 18px; 
  letter-spacing: .06em; 
  color: var(--text-primary); 
  font-weight: 500; 
}
.foot-desc {
  color: var(--text-muted); 
  font-size: 14px; 
  line-height: 1.80;
  max-width: 300px; 
  font-weight: 400;
}
.foot-col-title {
  font-size: 9px; 
  letter-spacing: .26em; 
  text-transform: uppercase;
  color: var(--color-gold); 
  margin-bottom: 20px; 
  font-family: var(--sans); 
  font-weight: 700;
}
.foot-links { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}
.foot-links a {
  font-size: 13.5px; 
  color: var(--text-muted);
  cursor: pointer; 
  transition: var(--transition-fast); 
  font-weight: 400;
}
.foot-links a:hover { 
  color: var(--text-primary); 
}
.foot-social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.foot-social {
  width: 36px; 
  height: 36px; 
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer; 
  transition: var(--transition-fast);
}
.foot-social:hover { 
  border-color: var(--color-gold);
  background: var(--color-gold-glow);
  transform: translateY(-2px);
}
.foot-bottom {
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start;
  gap: 20px; 
  flex-wrap: wrap;
  padding-top: 28px; 
  border-top: 1px solid var(--border-glass);
}
.foot-copy { 
  font-size: 12px; 
  color: var(--text-disabled); 
  font-weight: 400; 
}
.foot-compliance {
  font-size: 11px; 
  color: var(--text-disabled); 
  max-width: 580px;
  line-height: 1.70; 
  border-left: 2px solid var(--color-gold-rule); 
  padding-left: 14px;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS & TRANSITIONS
   ══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0; 
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.visible { 
  opacity: 1; 
  transform: none; 
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE LAYOUTS
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .matters-grid,
  .two-col,
  .court-row,
  .partner-hero-wrap { 
    grid-template-columns: 1fr; 
  }
  .partner-hero-photo { 
    height: 380px; 
  }
  .prob-grid, .help-grid, .sol-grid { 
    grid-template-columns: 1fr; 
  }
  .expat-grid, .why-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  .foot-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  nav .nav-links, nav .nav-cta { 
    display: none; 
  }
  .hamburger { 
    display: flex; 
  }
  .proc-timeline { 
    padding-left: 48px; 
  }
  .stats-strip, .asset-strip { 
    grid-template-columns: 1fr; 
  }
  .compliance-panel { 
    padding: 36px; 
  }
  .two-col[style] { 
    grid-template-columns: 1fr !important; 
  }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    justify-content: center;
  }
  .quiz-widget {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  body { 
    font-size: 15.5px; 
  }
  nav {
    left: 4vw;
    right: 4vw;
    padding: 0 20px;
  }
  .section { 
    padding: 72px 5vw; 
  }
  .page-hero { 
    padding: 130px 5vw 60px; 
  }
  .hero-headline { 
    font-size: clamp(34px, 8.5vw, 48px); 
  }
  .hero-sub { 
    font-size: 16px; 
  }
  .hero-stats { 
    flex-wrap: wrap; 
    gap: 20px; 
  }
  .hero-stat { 
    border-right: none; 
    padding-right: 0; 
    margin-right: 0; 
  }
  .expat-grid, .why-grid { 
    grid-template-columns: 1fr; 
  }
  .foot-grid { 
    grid-template-columns: 1fr; 
  }
  .partner-form { 
    padding: 32px 20px; 
  }
  .btn-p, .btn-hero, .btn-o, .btn-ghost { 
    width: 100%; 
    justify-content: center; 
  }
  .hero-actions { 
    flex-direction: column; 
    gap: 12px;
  }
  .matters-visual { 
    height: 340px; 
  }
}
