/* ============================================
   EMDAD — Business Setup & Corporate Services
   ============================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- Tokens ---------- */
:root{
  /* Colors */
  --navy:        #0E2A47;
  --navy-dark:   #081627;
  --slate:       #55617A;
  --slate-light: #8A94A6;
  --cream:       #F7F5F0;
  --paper:       #FFFFFF;
  --gold:        #C99A3D;
  --gold-light:  #E7C77E;
  --ink:         #1B2430;
  --line:        #E4E1D8;
  --success:     #2F7A5C;

  /* Type */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Radius / shadow */
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(14, 42, 71, 0.08);
  --shadow-md: 0 8px 30px rgba(14, 42, 71, 0.10);
  --shadow-lg: 0 20px 60px rgba(14, 42, 71, 0.16);

  /* Layout */
  --container: 1200px;
  --header-h: 84px;
  --header-h-scrolled: 68px;
  --utility-h: 44px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Spec-named aliases — same brand palette, kept for the header/hero rebuild */
  --navy-900: var(--navy-dark);
  --navy-800: var(--navy);
  --navy-700: #16324F;
  --gold-500: var(--gold);
  --gold-400: var(--gold-light);
  --cream-50: var(--cream);
  --ink-500:  var(--slate);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section {
  padding-block: 96px;
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 14px; }
.section-head p { color: var(--slate); font-size: 17px; margin-top: 14px; }
.section-head.center { margin-inline: auto; text-align: center; }

.pill {
  display: inline-flex;
  align-items: center;
  background: rgba(14,42,71,0.06);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--paper); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.scroll-sentinel { position: absolute; top: 120px; inset-inline-start: 0; width: 1px; height: 1px; pointer-events: none; }

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  color: #fff;
}

/* Layer 1 — utility bar */
.utility-bar {
  height: var(--utility-h);
  background: rgba(15, 34, 55, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  transition: height 0.25s var(--ease), opacity 0.25s var(--ease);
}
.utility-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.social-links { display: flex; align-items: center; gap: 16px; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: color 0.18s ease, transform 0.18s ease;
}
.social-links a:hover { color: #fff; transform: translateY(-2px); }
.social-links svg { width: 16px; height: 16px; }

.utility-contacts { display: flex; align-items: center; gap: 22px; }
.utility-contacts a {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color 0.18s ease;
}
.utility-contacts a:hover { color: var(--gold-400); }
.utility-contacts svg { width: 15px; height: 15px; flex: none; }

/* Layer 2 — main nav */
.main-nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.25s var(--ease), height 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
}

.site-header.is-scrolled .utility-bar { height: 0; opacity: 0; border-bottom-color: transparent; }
.site-header.is-scrolled .main-nav-wrap {
  height: var(--header-h-scrolled);
  background: var(--navy-800);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 21px; color: #fff; }
.logo .mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--gold-500), #A87D28);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  flex: none;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.nav-link {
  position: relative;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.92);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 6px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link .caret { width: 9px; height: 9px; transition: transform 0.2s ease; opacity: 0.7; }
li.has-mega:hover .nav-link .caret, li.has-mega[aria-expanded="true"] .nav-link .caret { transform: rotate(180deg); }

.nav-icon-cluster { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: background 0.18s ease;
}
.icon-btn:hover { background: rgba(255,255,255,0.12); }
.icon-btn svg { width: 18px; height: 18px; }

.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  position: relative;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.lang-toggle:hover { border-color: var(--gold-400); background: rgba(255,255,255,0.06); }
.lang-toggle svg { width: 14px; height: 14px; }
.lang-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: normal;
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
.lang-tooltip.show { opacity: 1; visibility: visible; transform: translateY(0); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.32); }
.header-actions .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 620px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 50;
}
li.has-mega:hover .mega-menu,
li.has-mega:focus-within .mega-menu,
li.has-mega[aria-expanded="true"] .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-item {
  display: flex;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  align-items: flex-start;
  transition: background 0.15s ease;
}
.mega-item:hover { background: var(--cream); }
.mega-item .ic {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(201, 154, 61, 0.14);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.mega-item .ic svg { width: 18px; height: 18px; }
.mega-item strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; }
.mega-item span { display: block; font-size: 12.5px; color: var(--slate); margin-top: 2px; }

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(8, 22, 39, 0.94);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s;
}
.search-overlay:not([hidden]) { opacity: 1; visibility: visible; }
.search-overlay[hidden] { display: flex; }
.search-overlay-inner {
  width: min(680px, 90vw);
  margin-top: 14vh;
  position: relative;
  text-align: center;
}
.search-close {
  position: absolute;
  top: -56px; right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease;
}
.search-close:hover { background: rgba(255,255,255,0.1); }
.search-icon-lg { width: 30px; height: 30px; color: var(--gold-400); margin: 0 auto 20px; }
#searchInput {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  text-align: center;
  padding: 10px 4px 18px;
}
#searchInput:focus { outline: none; border-bottom-color: var(--gold-500); }
#searchInput::placeholder { color: rgba(255,255,255,0.4); }
.search-suggestions { margin-top: 26px; display: flex; flex-direction: column; gap: 4px; }
.search-suggestions a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  transition: background 0.15s ease, color 0.15s ease;
}
.search-suggestions a:hover, .search-suggestions a.active { background: rgba(255,255,255,0.08); color: var(--gold-400); }
.search-suggestions .empty { color: rgba(255,255,255,0.4); font-size: 14px; padding: 12px 16px; }

/* Drawer backdrop (mobile) */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 550;
  background: rgba(8, 22, 39, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s;
}
.drawer-backdrop.show { opacity: 1; visibility: visible; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 8px 0;
}
.nav-toggle span { width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer-footer { display: none; }
.drawer-ctas { display: none; }

@media (max-width: 991px) {
  .utility-bar { display: none; }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    width: 88%;
    max-width: 380px;
    background: var(--navy-800);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.32s var(--ease);
    z-index: 600;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .main-nav .nav-link { padding: 14px 16px; font-size: 16px; }
  .main-nav .nav-link::after { display: none; }
  .main-nav > ul > li {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .main-nav.open > ul > li { opacity: 1; transform: translateX(0); }
  .main-nav.open > ul > li:nth-child(1) { transition-delay: 0.04s; }
  .main-nav.open > ul > li:nth-child(2) { transition-delay: 0.08s; }
  .main-nav.open > ul > li:nth-child(3) { transition-delay: 0.12s; }
  .main-nav.open > ul > li:nth-child(4) { transition-delay: 0.16s; }
  .main-nav.open > ul > li:nth-child(5) { transition-delay: 0.2s; }
  .main-nav.open > ul > li:nth-child(6) { transition-delay: 0.24s; }
  .mega-menu { position: static; width: 100%; transform: none; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: none; display: none; grid-template-columns: 1fr; margin-top: 4px; background: rgba(255,255,255,0.04); }
  .mega-item strong { color: #fff; }
  .mega-item span { color: rgba(255,255,255,0.6); }
  .mega-item:hover { background: rgba(255,255,255,0.06); }
  li.has-mega.open .mega-menu { display: grid; }
  .header-actions .btn-ghost { display: none; }
  .nav-icon-cluster .lang-toggle { display: none; }
  .nav-toggle { display: flex; }

  .drawer-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

  .drawer-footer {
    display: block;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .drawer-footer .social-links { flex-wrap: wrap; margin-bottom: 18px; }
  .drawer-footer .utility-contacts { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (min-width: 981px) and (max-width: 1279px) {
  .main-nav > ul { gap: 0; }
  .nav-link { padding: 10px 11px; font-size: 14px; }
  .header-actions .btn-ghost { display: none; }
}

@media (max-width: 600px) {
  .header-actions .btn { display: none; }
  .main-nav-inner { gap: 14px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: calc(var(--utility-h) + var(--header-h));
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: rgba(11, 26, 43, 0.62); }
.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(11,26,43,0.88) 0%, rgba(11,26,43,0.35) 55%, rgba(11,26,43,0.55) 100%);
}
.hero-bottom-fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(8,18,30,0.82) 0%, rgba(8,18,30,0.35) 22%, transparent 46%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: 56px;
}
.hero-copy { max-width: 620px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-eyebrow .rule { width: 32px; height: 1px; background: var(--gold-500); display: inline-block; flex: none; }
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
}
.hero h1 .accent { color: var(--gold-500); }
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-ctas .btn svg { width: 18px; height: 18px; }
.nudge-arrow { display: inline-flex; transition: transform 0.2s ease; }
.hero-ctas .btn:hover .nudge-arrow { transform: translateY(3px); }
.nudge-arrow svg { width: 15px; height: 15px; }

.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-strip {
  padding-block: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-stat .num {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.trust-stat .num .suffix { color: var(--gold-500); font-size: 0.55em; }
.trust-stat .label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; }

@media (max-width: 900px) {
  .hero-gradient { background: linear-gradient(180deg, rgba(11,26,43,0.7) 0%, rgba(11,26,43,0.5) 40%, rgba(11,26,43,0.88) 100%); }
  .hero h1 { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
}

/* ============ SETUP JOURNEY TRACKER ============ */
.tracker-section { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.tracker-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 90% 10%, rgba(201,154,61,0.18), transparent 60%);
}
.tracker-section .section-head h2 { color: #fff; }
.tracker-section .section-head p { color: rgba(255,255,255,0.62); }
.tracker-section .eyebrow { color: var(--gold-light); }
.tracker-section .eyebrow::before { background: var(--gold-light); }

.tracker {
  position: relative;
  margin-top: 40px;
}
.tracker-total {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-family: var(--font-mono);
}
.tracker-total .lbl { font-size: 13px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.tracker-total .val { font-size: 30px; font-weight: 700; color: var(--gold-light); }

.tracker-path {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  position: relative;
}
.tracker-path::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px; right: 22px;
  height: 2px;
  background: rgba(255,255,255,0.14);
}
.tracker-node {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0;
  background: none;
}
.tracker-node .dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.tracker-node.active .dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 0 0 6px rgba(201,154,61,0.16);
}
.tracker-node .authority {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.tracker-node .title { font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.tracker-node .days { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.5); }
.tracker-node:hover .dot, .tracker-node:focus-visible .dot { border-color: var(--gold-light); }

.tracker-detail {
  margin-top: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.tracker-detail h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); margin-bottom: 12px; color: var(--gold-light); }
.tracker-detail ul li { font-size: 14.5px; color: rgba(255,255,255,0.82); padding-left: 18px; position: relative; margin-bottom: 8px; }
.tracker-detail ul li::before { content: "—"; position: absolute; left: 0; color: rgba(255,255,255,0.35); }

@media (max-width: 900px) {
  .tracker-path { grid-template-columns: repeat(4, 1fr); row-gap: 28px; }
  .tracker-path::before { display: none; }
  .tracker-detail { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .tracker-path { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .ic {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(14,42,71,0.06);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card .ic svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--slate); margin-bottom: 16px; }
.service-card .chip {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(201,154,61,0.14);
  color: #8a6423;
  font-weight: 600;
}
.service-card .go {
  display: flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 13.5px; font-weight: 600; color: var(--navy);
}
.service-card .go svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.service-card:hover .go svg { transform: translateX(4px); }

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============ PACKAGES / PRICING ============ */
.packages-section { background: var(--paper); }

.package-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 48px;
}
.package-tab {
  padding: 11px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.package-tab:hover { color: var(--navy); }
.package-tab.active { background: var(--navy); color: #fff; }

.package-panel { display: none; }
.package-panel.active { display: block; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.package-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-card.featured {
  background: linear-gradient(175deg, var(--navy), var(--navy-dark));
  border-color: transparent;
  color: #fff;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.package-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.package-ribbon {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 20px;
}
.package-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--navy); margin-bottom: 14px; }
.package-card.featured .package-name { color: #fff; }
.package-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.package-card.featured .package-price { color: var(--gold-light); border-bottom-color: rgba(255,255,255,0.15); }
.package-price span { font-size: 13px; font-weight: 600; color: var(--slate); }
.package-card.featured .package-price span { color: rgba(255,255,255,0.55); }
.package-price small { font-size: 13px; font-weight: 500; color: var(--slate); margin-left: auto; }
.package-card.featured .package-price small { color: rgba(255,255,255,0.55); }
.package-features { flex: 1; margin-bottom: 28px; }
.package-features li {
  font-size: 14px;
  color: var(--slate);
  padding-left: 26px;
  position: relative;
  margin-bottom: 13px;
  line-height: 1.4;
}
.package-card.featured .package-features li { color: rgba(255,255,255,0.78); }
.package-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(20,97,79,0.12);
}
.package-features li::after {
  content: "";
  position: absolute;
  left: 5px; top: 7px;
  width: 6px; height: 3px;
  border-left: 1.6px solid var(--success);
  border-bottom: 1.6px solid var(--success);
  transform: rotate(-45deg);
}
.package-card.featured .package-features li::before { background: rgba(201,154,61,0.18); }
.package-card.featured .package-features li::after { border-color: var(--gold-light); }
.package-card.featured .btn-primary { background: var(--gold); color: var(--navy-dark); }
.package-card.featured .btn-primary:hover { background: var(--gold-light); }
.package-card.featured .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.package-card.featured .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.package-note { text-align: center; font-size: 13px; color: var(--slate); margin-top: 36px; }

@media (max-width: 980px) {
  .package-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-4px); }
  .package-tabs { flex-wrap: wrap; width: auto; }
}

/* ============ PARTNERS ============ */
.partners-section { background: var(--cream); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.partner-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--slate-light);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease;
}
.partner-mark:hover { color: var(--navy); background: var(--cream); }
.partners-grid .partner-mark:nth-child(4n) { border-right: none; }
.partners-grid .partner-mark:nth-last-child(-n+4) { border-bottom: none; }

@media (max-width: 900px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid .partner-mark:nth-child(4n) { border-right: 1px solid var(--line); }
  .partners-grid .partner-mark:nth-child(2n) { border-right: none; }
  .partners-grid .partner-mark:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .partners-grid .partner-mark:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partner-mark { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .partners-grid .partner-mark:last-child { border-bottom: none !important; }
}

/* ============ WHY US ============ */
.why-section { background: var(--paper); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-item .num { font-family: var(--font-mono); color: var(--gold); font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.why-item h3 { font-size: 18px; margin-bottom: 10px; }
.why-item p { font-size: 14.5px; color: var(--slate); }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ CEO MESSAGE ============ */
.ceo-section { background: var(--navy-dark); position: relative; overflow: hidden; }
.ceo-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 8% 0%, rgba(201,154,61,0.14), transparent 60%),
    radial-gradient(700px 420px at 100% 100%, rgba(255,255,255,0.05), transparent 60%);
}
.ceo-section .section-head h2 { color: #fff; }
.ceo-section .eyebrow { color: var(--gold-light); }
.ceo-section .eyebrow::before { background: var(--gold-light); }

.ceo-card {
  position: relative;
  background: linear-gradient(175deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  padding: 60px;
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
}
.ceo-card::after {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px dashed rgba(201,154,61,0.25);
  pointer-events: none;
}

/* Portrait column */
.ceo-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
}
.ceo-portrait-frame {
  position: relative;
  width: 168px; height: 168px;
  display: flex; align-items: center; justify-content: center;
}
.ceo-portrait-frame .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,154,61,0.3);
}
.ceo-portrait-frame .ring-1 { inset: 0; }
.ceo-portrait-frame .ring-2 { inset: -14px; border-color: rgba(201,154,61,0.14); }
.ceo-avatar {
  width: 132px; height: 132px;
  border-radius: 50%;
  background: linear-gradient(155deg, #16405f, var(--navy-dark));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}
.ceo-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.ceo-badge svg { width: 11px; height: 11px; }

.ceo-sig { display: flex; flex-direction: column; gap: 3px; margin-top: 6px; }
.ceo-sig-name { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 18px; }
.ceo-sig-role { font-family: var(--font-mono); font-size: 11.5px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.06em; }

.ceo-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cred { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.cred strong { font-family: var(--font-mono); color: var(--gold-light); font-size: 15px; font-weight: 700; }
.cred span { font-size: 12.5px; color: rgba(255,255,255,0.6); }

.ceo-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 9px 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ceo-linkedin svg { width: 15px; height: 15px; color: var(--gold-light); }
.ceo-linkedin:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-light); }

/* Copy column */
.ceo-copy { position: relative; }
.quote-mark {
  position: absolute;
  top: -46px; left: -8px;
  font-family: var(--font-display);
  font-size: 140px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.28;
  pointer-events: none;
}
.ceo-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.55;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
}
.ceo-attribution {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.ceo-name { font-weight: 700; color: var(--gold-light); font-size: 15.5px; font-family: var(--font-display); }
.ceo-title { font-size: 13px; color: rgba(255,255,255,0.55); }
.ceo-title::before { content: "— "; }
.ceo-cta { margin-top: 26px; color: #fff; border-color: rgba(255,255,255,0.28); }
.ceo-cta:hover { border-color: var(--gold-light); background: rgba(255,255,255,0.06); }

@media (max-width: 780px) {
  .ceo-card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .quote-mark { position: static; display: block; margin-bottom: -14px; }
  .ceo-attribution { justify-content: center; }
}

/* ============ PROCESS ============ */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}
.process-step {
  position: relative;
  padding: 28px 24px;
  border-top: 2px solid var(--line);
}
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--slate); }
@media (max-width: 900px) {
  .process-list { grid-template-columns: 1fr; }
  .process-step { border-top: none; border-left: 2px solid var(--line); padding-left: 20px; }
}

/* ============ INDUSTRIES ============ */
.industries-section { background: var(--navy-dark); color: #fff; }
.industries-section .section-head h2 { color: #fff; }
.industries-section .section-head p { color: rgba(255,255,255,0.6); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.industry-tile {
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center;
  padding: 14px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.industry-tile:hover { background: rgba(255,255,255,0.05); border-color: var(--gold); transform: translateY(-4px); }
.industry-tile svg { width: 26px; height: 26px; color: var(--gold-light); }
.industry-tile span { font-size: 12.5px; font-weight: 500; }
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--paper); }
.t-slide { padding: 8px 8px 8px 2px; }
.t-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  border: 1px solid var(--line);
}
.t-card .quote { font-size: 16px; color: var(--ink); line-height: 1.6; margin-bottom: 24px; }
.t-card .who { display: flex; align-items: center; gap: 12px; }
.t-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
}
.t-card .name { font-weight: 600; font-size: 14.5px; color: var(--navy); }
.t-card .role { font-size: 12.5px; color: var(--slate); }
.swiper-pagination { position: static; margin-top: 28px; }
.swiper-pagination-bullet { background: var(--slate-light); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); }

/* ============ FAQ ============ */
.faq-section .container { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy);
}
.faq-q .plus { flex: none; width: 20px; height: 20px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--navy);
  border-radius: 2px;
}
.faq-q .plus::before { width: 100%; height: 2px; top: 9px; }
.faq-q .plus::after { width: 2px; height: 100%; left: 9px; transition: transform 0.25s ease; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p { padding: 0 4px 22px; color: var(--slate); font-size: 14.5px; max-width: 640px; }

/* ============ CONTACT / CTA ============ */
.cta-section {
  background: linear-gradient(155deg, var(--navy), var(--navy-dark));
  color: #fff;
  border-radius: 24px;
  margin-inline: 24px;
  max-width: calc(var(--container) - 0px);
  margin-inline: auto;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 90% 0%, rgba(201,154,61,0.22), transparent 60%);
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; position: relative; }
.cta-copy .eyebrow { color: var(--gold-light); }
.cta-copy .eyebrow::before { background: var(--gold-light); }
.cta-copy h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); margin-top: 14px; }
.cta-copy p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 15.5px; max-width: 420px; }
.cta-contact-links { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.cta-contact-links a { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.85); }
.cta-contact-links svg { width: 17px; height: 17px; color: var(--gold-light); flex: none; }
.cta-contact-links a.addr { align-items: flex-start; }
.cta-contact-links a.addr svg { margin-top: 2px; }
.cta-contact-links a.addr span { display: flex; flex-direction: column; gap: 2px; }
.cta-contact-links a.addr strong { color: #fff; font-weight: 600; font-size: 13.5px; }

.form-card { background: #fff; border-radius: var(--radius); padding: 28px; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 12.5px; font-weight: 600; color: var(--slate); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 14px;
  background: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 88px; }
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #C2453B; }
.field-error { font-size: 12px; color: #C2453B; display: none; }
.form-group.error .field-error { display: block; }
.form-note { font-size: 12px; color: var(--slate); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 12px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(47,122,92,0.12); color: var(--success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 18px; margin-bottom: 6px; }
.form-success p { color: var(--slate); font-size: 14px; }

@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 40px 24px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 260px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.footer-social svg { width: 15px; height: 15px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); max-width: 260px; }
.footer-contact a { font-size: 13.5px; font-weight: 600; color: var(--gold-light); }
.footer-contact a:hover { color: #fff; }
.footer-contact span { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; font-family: var(--font-mono); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.newsletter-form { display: flex; margin-top: 14px; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05); color: #fff; font-size: 13.5px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-block: 24px; font-size: 12.5px; flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 20px; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============ Floating buttons ============ */
.floating-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.floating-btn:hover { transform: scale(1.08); }
.floating-btn.top { background: var(--navy); color: #fff; bottom: 94px; opacity: 0; pointer-events: none; transform: translateY(10px); transition: transform 0.25s ease, opacity 0.25s ease; }
.floating-btn.top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floating-btn svg { width: 22px; height: 22px; }

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease;
}
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp svg { width: 26px; height: 26px; position: relative; z-index: 1; }
.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .pulse-ring { display: none; }
}

/* ============ Reveal animation base ============ */
.reveal { opacity: 0; transform: translateY(24px); }

/* ============ Misc ============ */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }
