/* ============================================================
   ISENGAL — DARK MODE ONLY
   v3 · April 2026
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
img, svg { display: block; max-width: 100%; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { text-decoration: none; color: inherit; }

/* ── TOKENS ── */
:root {
  --bg:         #0d1117;
  --surface:    #111820;
  --surface-2:  #161e28;
  --border:     #1e2a38;
  --divider:    #1a2535;
  --text:       #e8e3d8;
  --text-muted: #8a9ab0;
  --text-faint: #5c7080;
  --navy:       #0f1f3d;
  --gold:       #c9a040;
  --gold-dim:   #8a6a18;
  --gold-faint: rgba(201,160,64,0.08);
  --gold-glow:  rgba(201,160,64,0.18);

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.6);

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-io:    cubic-bezier(0.4, 0, 0.2, 1);
  --t:          180ms cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --container:  1120px;
  --section-py: 96px;
}

/* ── BASE ── */
html, body { background: var(--bg); color: var(--text); }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  z-index: 1000;
  transition: width 80ms linear;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  HEADER
   ╚══════════════════════════════════════════════════════╝ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { height: 36px; width: auto; }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav a.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  margin-left: 8px;
  padding: 6px 16px;
}
.nav a.nav-cta:hover { background: var(--gold-faint); color: var(--gold); }

/* mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--t);
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  color: var(--text-muted);
  transition: color var(--t);
}
.mobile-nav a:hover { color: var(--text); }

/* ╔══════════════════════════════════════════════════════╗
   ║  SIDE NAV (right-fixed)
   ╚══════════════════════════════════════════════════════╝ */
.sidenav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidenav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidenav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  cursor: pointer;
}
.sidenav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-faint);
  border: 1px solid transparent;
  flex-shrink: 0;
  transition: background var(--t), transform var(--t);
  margin-left: auto; /* dot on right side */
}
.sidenav-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--t), transform var(--t), color var(--t);
  white-space: nowrap;
  pointer-events: none;
  /* label shows on left, dot on right */
  order: -1;
}
/* show label on hover */
.sidenav-link:hover .sidenav-label,
.sidenav-link.active .sidenav-label {
  opacity: 1;
  transform: translateX(0);
}
.sidenav-link:hover .sidenav-dot {
  background: var(--text-muted);
}
.sidenav-link.active .sidenav-dot {
  background: var(--gold);
  transform: scale(1.4);
}
.sidenav-link.active .sidenav-label {
  color: var(--gold);
}

/* ╔══════════════════════════════════════════════════════╗
   ║  BUTTONS
   ╚══════════════════════════════════════════════════════╝ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background var(--t), color var(--t), box-shadow var(--t), transform var(--t), border-color var(--t);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  color: #0d1117;
  border-color: var(--gold);
  font-weight: 500;
}
.btn-gold:hover {
  background: #d4ad52;
  box-shadow: 0 4px 20px rgba(201,160,64,0.3);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-faint);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-dim);
}
.btn-outline:hover {
  background: var(--gold-faint);
  border-color: var(--gold);
}

.btn-full { width: 100%; }

/* ╔══════════════════════════════════════════════════════╗
   ║  SECTION COMMON
   ╚══════════════════════════════════════════════════════╝ */
.section {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--divider);
}
.section:last-child { border-bottom: none; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0;
}
.section-intro {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  HERO
   ╚══════════════════════════════════════════════════════╝ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Background photo with deep navy overlay */
  background:
    linear-gradient(
      160deg,
      rgba(10, 18, 35, 0.88) 0%,
      rgba(15, 31, 61, 0.82) 40%,
      rgba(10, 18, 35, 0.92) 100%
    ),
    url('hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding: 80px 0 80px;
  /* mask watermark in bottom-right corner */
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 30% 40%, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 30% 40%, black 60%, transparent 100%);
}

/* gold grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,160,64,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* subtle warm glow bottom-right */
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,160,64,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-pattern { display: none; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-tension {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 32px 0 0;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-faint);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  PROBLEM
   ╚══════════════════════════════════════════════════════╝ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 36px 32px;
  background: var(--surface);
  transition: background var(--t);
}
.problem-card:hover { background: var(--surface-2); }

.problem-icon {
  flex-shrink: 0;
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-faint);
  border: 1px solid rgba(201,160,64,0.15);
  border-radius: var(--radius);
  color: var(--gold);
  overflow: hidden;
}
.problem-icon svg { width: 22px; height: 22px; flex-shrink: 0; }

.problem-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.problem-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.problem-callout {
  background: var(--navy);
  border: 1px solid rgba(201,160,64,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  text-align: center;
}
.callout-stat {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}
.callout-stat strong { color: var(--gold); }
.callout-aed {
  font-size: 0.75em;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.callout-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  DIVIDER BAND
   ╚══════════════════════════════════════════════════════╝ */
.divider-band {
  background: var(--navy);
  border-top: 1px solid rgba(201,160,64,0.15);
  border-bottom: 1px solid rgba(201,160,64,0.15);
  padding: 36px 0;
}
.divider-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--text-muted);
  text-align: center;
  font-style: normal;
  letter-spacing: 0.01em;
}
.divider-text em { color: var(--gold); font-style: italic; }

/* ╔══════════════════════════════════════════════════════╗
   ║  APPROACH — steps + VS table
   ╚══════════════════════════════════════════════════════╝ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 64px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--t), background var(--t);
}
.step-card:hover {
  border-color: rgba(201,160,64,0.3);
  background: var(--surface-2);
}

.step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--border), rgba(201,160,64,0.3), var(--border));
  align-self: center;
  margin: 0 4px;
  position: relative;
  top: -16px;
}

/* VS Table */
.vs-wrap { margin-top: 16px; }
.vs-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.vs-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vs-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--surface-2);
  padding: 14px 24px;
  gap: 16px;
}
.vs-head span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.vs-head .vs-isengal-col { color: var(--gold); }

.vs-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 16px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  transition: background var(--t);
}
.vs-row:hover { background: var(--surface); }
.vs-row span { color: var(--text-muted); line-height: 1.5; }
.vs-row .vs-isengal-col {
  color: var(--text);
  font-weight: 500;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  SERVICES — step cards vertical
   ╚══════════════════════════════════════════════════════╝ */
.services-section { background: var(--bg); }

.svc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-step {
  display: flex;
  gap: 0;
  position: relative;
}

.svc-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 64px;
  padding-top: 4px;
}
.svc-step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  background: var(--gold-faint);
  border: 1px solid rgba(201,160,64,0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.svc-step-line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(201,160,64,0.25), rgba(201,160,64,0.06));
  margin-top: 8px;
  margin-bottom: 8px;
}
/* hide line on last step */
.svc-step:last-child .svc-step-line { display: none; }

.svc-step-body {
  flex: 1;
  padding: 0 0 48px 28px;
}
.svc-step:last-child .svc-step-body { padding-bottom: 0; }

.svc-step-head {
  margin-bottom: 16px;
}
.svc-step-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.svc-step-title-row h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
}
.svc-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-faint);
  border: 1px solid rgba(201,160,64,0.25);
  border-radius: 20px;
  padding: 3px 10px;
}

.svc-step-tagline {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* expand button */
.svc-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color var(--t), border-color var(--t), background var(--t);
  margin-bottom: 0;
}
.svc-expand-btn:hover {
  color: var(--gold);
  border-color: rgba(201,160,64,0.3);
  background: var(--gold-faint);
}
.svc-btn-icon {
  transition: transform 0.3s var(--ease-out);
}
.svc-expand-btn[aria-expanded="true"] .svc-btn-icon {
  transform: rotate(180deg);
}
.svc-expand-btn[aria-expanded="true"] .svc-btn-label::after {
  content: '';
}

/* detail panel */
.svc-step-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
  margin-top: 0;
  overflow: hidden;
}
.svc-step-detail.open {
  grid-template-rows: 1fr;
  margin-top: 24px;
}
.svc-detail-inner {
  overflow: hidden;
  min-height: 0;
}

.svc-detail-cols {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
}
.svc-detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.svc-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-detail-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.svc-detail-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 12px;
}

.svc-outcome-box {
  background: var(--navy);
  border: 1px solid rgba(201,160,64,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  min-width: 180px;
}
.svc-outcome-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.svc-outcome-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}
.svc-outcome-aed {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.svc-outcome-roi {
  font-size: 12px;
  color: var(--gold-dim);
  font-weight: 500;
}

.svc-for {
  font-size: 13px;
  color: var(--text-faint);
  font-style: italic;
  padding: 0 0 4px;
}
.svc-for strong { color: var(--text-muted); font-style: normal; }

/* ╔══════════════════════════════════════════════════════╗
   ║  PROOF — case cards + data visuals
   ╚══════════════════════════════════════════════════════╝ */
.proof-section { background: var(--surface); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.case-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  min-height: 220px;
  transition: border-color var(--t), box-shadow var(--t);
}
.case-card:hover,
.case-card:focus-visible {
  border-color: rgba(201,160,64,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  outline: none;
}

.case-front {
  padding: 28px 28px 24px;
  background: var(--surface);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: opacity 0.3s var(--ease-io);
}
.case-card.active .case-front {
  opacity: 0;
  pointer-events: none;
}

.case-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-faint);
  border: 1px solid rgba(201,160,64,0.2);
  border-radius: 20px;
  padding: 3px 10px;
  align-self: flex-start;
  margin-bottom: 16px;
}
.case-front h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 10px;
}
.case-teaser {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.case-hint {
  font-size: 12px;
  color: var(--text-faint);
  font-style: italic;
  display: block;
  margin-top: auto;
  transition: color var(--t);
}
.case-card:hover .case-hint { color: var(--gold); }

/* back */
.case-back {
  position: absolute;
  inset: 0;
  padding: 28px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-io);
}
.case-card.active .case-back {
  opacity: 1;
  pointer-events: auto;
  aria-hidden: false;
}

.case-back-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.case-back-steps p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.case-back-steps p strong { color: var(--text); font-weight: 500; }

.case-back-results {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
.case-result {
  flex: 1;
  min-width: 0;
  background: rgba(201,160,64,0.08);
  border: 1px solid rgba(201,160,64,0.2);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.case-result span {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.case-result small {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* DATA VISUALS */
.data-visuals {
  margin-top: 16px;
}
.data-visuals-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.data-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.data-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.data-card-note {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 12px;
  font-style: italic;
}

/* bar chart */
/* ── PANEL 1: LEAK BREAKDOWN ── */
.leak-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.leak-row { display: flex; flex-direction: column; gap: 5px; }
.leak-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.leak-label {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.leak-pct {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  font-family: var(--font-display);
}
.leak-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.leak-bar-fill {
  height: 100%;
  width: var(--w);
  background: var(--gold);
  border-radius: 2px;
}
.leak-context {
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.4;
  margin: 0;
}

/* ── PANEL 2: DIAGNOSTIC TIMELINE ── */
.diag-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diag-step {
  display: flex;
  gap: 16px;
  padding-bottom: 18px;
  position: relative;
}
.diag-step:not(.diag-step--final)::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 24px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.diag-week {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,160,64,0.1);
  border: 1px solid rgba(201,160,64,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.diag-content {
  padding-top: 10px;
  flex: 1;
}
.diag-content strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.diag-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── PANEL 3: BENCHMARK TABLE ── */
.bench-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.bench-table th {
  text-align: left;
  color: var(--text-faint);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 8px 10px 0;
  border-bottom: 1px solid var(--border);
}
.bench-table td {
  padding: 10px 8px 10px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: top;
  line-height: 1.4;
}
.bench-table td:first-child {
  color: var(--text);
  font-weight: 500;
}
.bench-table td:last-child {
  color: rgba(201,160,64,0.8);
  font-weight: 500;
  white-space: nowrap;
}
.bench-table tbody tr:last-child td {
  border-bottom: none;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  PRICING
   ╚══════════════════════════════════════════════════════╝ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 16px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color var(--t), box-shadow var(--t);
}
.pricing-card:hover {
  border-color: rgba(201,160,64,0.2);
  box-shadow: var(--shadow-md);
}

/* featured card */
.pricing-featured {
  background: var(--navy);
  border-color: rgba(201,160,64,0.35);
  box-shadow: 0 0 0 1px rgba(201,160,64,0.12), var(--shadow-lg);
  margin-top: -12px;
  padding-top: 48px;
}
.pricing-featured-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d1117;
  background: var(--gold);
  border-radius: 20px;
  padding: 4px 14px;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.pricing-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* price block */
.pricing-price-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-from {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.pricing-usd {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-aed {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.pricing-period {
  font-size: 12px;
  color: var(--text-faint);
}

/* features list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 16px;
  line-height: 1.5;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  WHY US
   ╚══════════════════════════════════════════════════════╝ */
.why-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,160,64,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background var(--t), border-color var(--t);
}
.why-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,160,64,0.2);
}
.why-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-faint);
  border: 1px solid rgba(201,160,64,0.15);
  border-radius: var(--radius);
  color: var(--gold);
  margin-bottom: 20px;
  overflow: hidden;
}
.why-icon svg { width: 20px; height: 20px; flex-shrink: 0; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  ABOUT
   ╚══════════════════════════════════════════════════════╝ */
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-content {}
.about-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 20px;
}
.about-caveat {
  font-size: 14px;
  color: var(--text-faint);
  font-style: italic;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  line-height: 1.65;
}
.about-quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 32px;
  padding: 28px 28px;
  border-left: 2px solid var(--gold);
  background: var(--gold-faint);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.5;
}

.legal-signal {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 24px;
  line-height: 1.6;
}
.legal-signal a {
  color: var(--text-faint);
  text-decoration: underline;
  text-decoration-color: var(--border);
  transition: color var(--t);
}
.legal-signal a:hover { color: var(--text-muted); }

/* credentials */
.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credentials-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cred-icon {
  width: 36px;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-faint);
  border-radius: var(--radius-sm);
  color: var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}
.cred-icon svg { width: 20px; height: 20px; flex-shrink: 0; }
.credential-text {}
.credential-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
}
.credential-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  CONTACT
   ╚══════════════════════════════════════════════════════╝ */
.contact-section {
  background: var(--surface);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-content {}
.contact-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 32px;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-item svg { color: var(--gold); flex-shrink: 0; }

.intake-note {
  font-size: 12px;
  color: var(--text-faint);
  font-style: italic;
  margin-top: 24px;
  line-height: 1.6;
}

/* Contact form */
.contact-form {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,160,64,0.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-faint);
}
.form-field select option {
  background: var(--surface-2);
  color: var(--text);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.contact-tension {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  opacity: 0.9;
}

/* Form select */
.form-field select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a9ab0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color var(--transition-interactive);
}
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field select option {
  background: var(--surface-2);
  color: var(--text);
}

/* Form checkbox */
.form-check {
  margin: 8px 0 20px;
}
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.form-check-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
  border-radius: 3px;
}

.form-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 12px;
  line-height: 1.6;
}
.form-status {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 16px;
  display: none;
}
.form-status.show { display: block; }
.form-status--success {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #86efac;
}
.form-status--error {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  color: #fca5a5;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  FOOTER
   ╚══════════════════════════════════════════════════════╝ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img { height: 28px; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 6px;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.6;
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-faint);
  opacity: 1;
  line-height: 1.65;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
  grid-column: 1 / -1;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  PRIVACY PAGE
   ╚══════════════════════════════════════════════════════╝ */
.privacy-page {
  min-height: 100vh;
  padding: 100px 0 80px;
}
.privacy-page h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 12px;
}
.privacy-page p,
.privacy-page li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.privacy-page h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 40px 0 16px;
}
.privacy-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  ANIMATION HELPERS
   ╚══════════════════════════════════════════════════════╝ */
.fade-up {
  opacity: 1; /* fallback — visible by default */
}
@supports (animation-timeline: scroll()) {
  .fade-up {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
}
@keyframes reveal-fade {
  to { opacity: 1; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  RESPONSIVE
   ╚══════════════════════════════════════════════════════╝ */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .step-connector { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-featured { margin-top: 0; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .sidenav { display: none; }
  .data-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .container { padding: 0 20px; }

  .nav { display: none; }
  .mobile-menu-toggle { display: flex; }

  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 20px 0 0; }
  .hero-stat-div { margin: 0 20px 0 0; }
  .hero-stat-num { font-size: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  .problem-grid { grid-template-columns: 1fr; background: transparent; }
  .problem-card { border: 1px solid var(--border); border-radius: var(--radius); }
  .problem-callout { padding: 32px 24px; }

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

  .vs-head, .vs-row { grid-template-columns: 1fr 1fr; }
  .vs-head span:nth-child(2),
  .vs-row span:nth-child(2) { display: none; }

  .svc-detail-cols { grid-template-columns: 1fr; }
  .svc-outcome-box { text-align: left; }

  .cases-grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr; }

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

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

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-links { justify-content: center; }

  .sidenav { display: none; }

  .contact-form { padding: 28px 24px; }
}

/* very small */
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stat-div { display: none; }
  .hero-stat { padding: 0; }
  .svc-step-marker { width: 44px; }
  .svc-step-num { width: 30px; height: 30px; font-size: 11px; }
  .svc-step-body { padding-left: 16px; }
}

/* ── PRICING — extra classes from HTML ── */
.pricing-tier {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-roi {
  font-size: 12px;
  color: var(--gold-dim);
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 500;
}
.pricing-note {
  font-size: 13px;
  color: var(--text-faint);
  font-style: italic;
  margin-top: 24px;
  text-align: center;
  line-height: 1.6;
}

/* ── FOOTER NAV ── */
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
}
.footer-nav a {
  font-size: 13px;
  color: var(--text-faint);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--text-muted); }
.footer-brand p {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 6px;
  line-height: 1.6;
}

/* ── JS-BASED FADE FALLBACK ── */
/* When scroll-driven animations are NOT supported, JS adds .revealed */
@supports not (animation-timeline: scroll()) {
  .fade-up {
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
  }
  .fade-up.revealed {
    opacity: 1;
  }
}

/* ── HEADER SCROLLED STATE ── */
.header--scrolled {
  border-bottom-color: rgba(30,42,56,0.8);
}

/* ── WHY-BG ── */
.why-bg { display: none; } /* handled via ::before on why-section */

/* ── SECTION TAGLINE (contact/about subtitle lines) ── */
.section-tagline {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
}

/* ── LEGAL SIGNAL with icon ── */
.legal-signal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 24px;
  line-height: 1.6;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.legal-signal svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-signal p { margin: 0; }
.legal-signal a {
  color: var(--text-faint);
  text-decoration: underline;
  text-decoration-color: var(--border);
  transition: color var(--t);
}
.legal-signal a:hover { color: var(--text-muted); }

/* ── CREDENTIAL inner text ── */
.credential h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.3;
}
.credential p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ── CONTACT ITEM link ── */
.contact-item a {
  color: var(--text-muted);
  transition: color var(--t);
}
.contact-item a:hover { color: var(--gold); }

/* ── PRICING price block refinement ── */
.pricing-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-price-block .pricing-from {
  display: inline-block;
  margin-bottom: 2px;
}
.pricing-price-block .pricing-usd {
  display: block;
  line-height: 1;
}
.pricing-price-block .pricing-aed {
  display: block;
}
.pricing-price-block .pricing-period {
  display: block;
  margin-top: 4px;
}

/* ── HERO HERITAGE CREST ── */
/* ── HERO HERITAGE CREST + NAME — identity block ── */
.hero-brand-title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(201,160,64,0.22);
}
.hero-crest {
  flex-shrink: 0;
}
.hero-crest-img {
  height: 120px;
  width: auto;
  filter:
    drop-shadow(0 0 36px rgba(201,160,64,0.4))
    drop-shadow(0 4px 14px rgba(0,0,0,0.7));
}
.hero-brand-name-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-brand-wordmark {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  line-height: 1;
}
.hero-brand-rule {
  display: none;
}
.hero-brand-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── DIFFERENTIATOR GRID ── */
.diff-wrap {
  margin-top: 56px;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 16px;
}
.diff-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 32px 28px;
  background: var(--surface);
  transition: background var(--t);
}
.diff-card:hover { background: var(--surface-2); }
.diff-icon {
  flex-shrink: 0;
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-faint);
  border: 1px solid rgba(201,160,64,0.15);
  border-radius: var(--radius);
  color: var(--gold);
  overflow: hidden;
}
.diff-icon svg { width: 20px; height: 20px; flex-shrink: 0; }
.diff-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.diff-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .diff-grid {
    grid-template-columns: 1fr;
    background: transparent;
  }
  .diff-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .hero-brand-title { gap: 16px; margin-bottom: 36px; padding-bottom: 32px; }
  .hero-crest-img { height: 72px; }
  .hero-brand-wordmark { font-size: 36px; }
}





/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

/* Qualifier card */
.faq-qualifier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: sticky;
  top: 96px;
}

.faq-qualifier-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.faq-qualifier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-qualifier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.faq-qualifier-list li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-qualifier-note {
  font-size: 13px;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin: 0;
  line-height: 1.6;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: color var(--transition-interactive);
}

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

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-faint);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms ease;
}

.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-a {
  padding: 0 0 24px 0;
}

.faq-a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-qualifier {
    position: static;
  }
}

@media (max-width: 480px) {
  .faq-grid {
    margin-top: 40px;
    gap: 36px;
  }
  .faq-qualifier {
    padding: 28px 24px;
  }
  .faq-q {
    font-size: 15px;
    padding: 18px 0;
  }
}
