/* ═══════════════════════════════════════════════════════════════
   GlobalSync — Premium Design System
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --gold: #FECC05;
  --gold-dim: #d4a904;
  --gold-glow: rgba(254, 204, 5, 0.35);
  --ink: #060b14;
  --navy: #0a1224;
  --navy-mid: #0f1c3f;
  --navy-light: #1a336b;
  --slate: #4a5568;
  --muted: #6b7280;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: #e5e7eb;
  --surface: #f8fafc;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(6, 11, 20, 0.08);
  --shadow-lg: 0 20px 60px rgba(6, 11, 20, 0.14);
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #ecfdf5;
  color: #065f46;
  font-size: 14px;
  line-height: 1.5;
}
.form-status.is-error {
  background: #fef2f2;
  color: #991b1b;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.legal-copy {
  max-width: 760px;
}
.legal-copy h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 20px;
}
.legal-copy a {
  color: var(--gold-dim);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-copy a:hover { color: var(--ink); }

.modal-overlay[aria-hidden="true"] { display: none; }
.modal-box:focus { outline: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
section { padding: 96px 0; }

/* ── Typography helpers ─────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a7b00;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.eyebrow.light { color: rgba(255,255,255,.7); }
.eyebrow.light::before { background: var(--gold); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.75;
}
.lead.light { color: rgba(255,255,255,.72); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover { box-shadow: 0 8px 32px var(--gold-glow); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: #1a2332; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 1px 12px rgba(6, 11, 20, 0.04);
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(6, 11, 20, 0.08);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img { height: 44px; object-fit: contain; }
.nav-logo .wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.nav-logo .wordmark span { color: var(--gold-dim); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links > li, .dropdown li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold-dim); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  list-style: none;
  border: 1px solid var(--line-dark);
  z-index: 100;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.service-dropdown, .it-dropdown {
  max-height: min(70vh, 520px);
  overflow-y: auto;
  min-width: 280px;
}
.nav-links > li:hover > .dropdown,
.nav-links > li:focus-within > .dropdown { display: block; }
.dropdown .submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 240px;
}
.dropdown li:hover > .submenu,
.dropdown li:focus-within > .submenu { display: block; }
.service-dropdown .submenu {
  position: static;
  display: none;
  min-width: 0;
  padding: 0 0 4px 12px;
  box-shadow: none;
  border: none;
  background: transparent;
}
.service-dropdown .has-submenu:hover > .submenu,
.service-dropdown .has-submenu.submenu-open > .submenu,
.service-dropdown .has-submenu:focus-within > .submenu { display: block; }
.service-dropdown .has-submenu > a { font-weight: 700; }
.service-dropdown .submenu a { font-size: 13px; padding-top: 7px; padding-bottom: 7px; }
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 13.5px;
  color: var(--slate);
  transition: background .15s, color .15s;
}
.dropdown a:hover, .dropdown a.active {
  background: #fffbeb;
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  text-align: right;
  line-height: 1.2;
}
.nav-phone small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nav-phone a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}
.nav-phone a:hover { color: var(--gold-dim); }
.nav-cta {
  padding: 10px 20px !important;
  font-size: 13px !important;
}

.nav-ham {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  flex-direction: column;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.nav-ham span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-ham.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.active span:nth-child(2) { opacity: 0; }
.nav-ham.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

/* ── Hero (home) ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 51, 107, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(254, 204, 5, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0d1a35 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}
.hero-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-copy { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(254, 204, 5, 0.12);
  border: 1px solid rgba(254, 204, 5, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge i { font-size: 11px; }
.hero h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-slide {
  display: none;
  animation: fadeUp .6s var(--ease);
}
.hero-slide.active { display: block; }
.hero-slide em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), #ffe566);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.hero-trust-item span { font-size: 13px; color: rgba(255,255,255,.55); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding-top: 36px;
}
.hero-card-main {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
}
.hero-card-main h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
}
.hero-service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hero-service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: background .2s, transform .2s;
}
.hero-service-list li:hover { background: rgba(254,204,5,.12); transform: translateX(4px); }
.hero-service-list i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 8px;
  font-size: 13px;
  flex-shrink: 0;
}
.hero-float {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.hero-float i { color: #22c55e; font-size: 18px; }
.hero-float.top { top: 0; right: 8px; }
.hero-float.bottom { bottom: 20px; left: -30px; animation-delay: -2s; }

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  background: transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  padding: 0;
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); }

/* ── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 36px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── About / split imagery ───────────────────────────────────── */
.about-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img img { width: 100%; border-radius: var(--radius); }
.about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  transform: translate(16px, 16px);
  z-index: -1;
}
.about-quote {
  margin-top: 28px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .3s, transform .3s var(--ease);
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffe566);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 13px; color: var(--muted); }

/* ── Clients marquee ──────────────────────────────────────────── */
.clients-marquee-wrap {
  margin-top: 48px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.clients-marquee { width: 100%; }
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clients-marquee 36s linear infinite;
}
.clients-marquee-wrap:hover .clients-track { animation-play-state: paused; }
.client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 110px;
  padding: 0 24px;
}
.client-logo img {
  max-height: 76px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .72;
  transition: filter .3s, opacity .3s, transform .3s;
}
.client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}
@keyframes clients-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; max-width: 900px; margin: 0 auto; }
  .clients-marquee-wrap { -webkit-mask-image: none; mask-image: none; }
  .client-logo[aria-hidden="true"] { display: none; }
}

/* ── CTA bands ──────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #f5d020 100%);
  padding: 72px 0;
}
.cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  max-width: 560px;
  color: var(--ink);
}
.cta-inner p { color: rgba(6,11,20,.7); margin-top: 8px; font-size: 16px; }

/* ── Inner page hero ────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 72px;
  background: var(--navy);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image, none) center/cover no-repeat;
  opacity: .15;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--navy) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
}

/* ── Inner page layouts ─────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-copy p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; }
.content-copy .btn { margin-top: 8px; }
.corp-split .btn-outline-dark { margin-top: 28px; }
.image-panel {
  transition: transform .35s var(--ease);
}
.image-panel img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform .45s var(--ease), box-shadow .35s var(--ease);
}
.image-panel:hover { transform: translateY(-4px); }
.image-panel:hover img {
  transform: scale(1.02);
  box-shadow: 0 28px 70px rgba(6, 11, 20, 0.18);
}

/* ── What We Offer (service pages) ──────────────────────────── */
.offers-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}
.offers-shell {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 64px rgba(6, 11, 20, 0.1);
}
.offers-shell-head {
  position: relative;
  padding: 44px 48px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #142a5c 100%);
  color: var(--white);
}
.offers-shell-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(254, 204, 5, 0.12) 0%, transparent 60%),
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.02) 50%, transparent 100%);
  pointer-events: none;
}
.offers-shell-head::after {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, #ffe566 50%, var(--gold) 100%);
}
.offers-kicker {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.offers-shell-head .offers-title,
.form-intro-band .offers-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  max-width: 720px;
}
.form-intro-band .offers-title { font-size: clamp(24px, 3vw, 32px); }
.offers-shell-head .offers-lead,
.form-intro-band .offers-lead {
  position: relative;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
}
.form-intro-band .offers-lead { margin-top: 12px; }
.offers-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--line-dark);
}
.offer-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 32px;
  background: var(--white);
  border-left: 4px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.offer-row:hover {
  background: #fffdf5;
  border-left-color: var(--gold);
}
.offer-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
  opacity: .18;
  transition: color .3s var(--ease), opacity .3s var(--ease);
}
.offer-row:hover .offer-num {
  color: var(--gold-dim);
  opacity: 1;
}
.offer-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 8px;
}
.offer-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid var(--line-dark);
  transition: border-color .3s var(--ease);
}
.offer-content a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.offer-content a:hover { color: var(--gold-dim); }
.offer-row:hover .offer-content p { border-left-color: var(--gold); }
.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mission-split .mission-card {
  margin: 0;
  border-left: 4px solid var(--gold);
}
.offers-shell-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 32px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}
.offers-foot-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.offers-foot-note i { color: var(--gold); font-size: 14px; }
.offers-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: gap .2s var(--ease);
}
.offers-foot-link:hover { gap: 12px; color: #ffe566; }

/* ── Section variants (corporate family) ────────────────────── */
.section-band {
  padding: 96px 0;
  background: var(--white);
}
.section-band--surface {
  background: var(--surface);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-head .eyebrow { justify-content: center; }
.section-head::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 22px auto 0;
  border-radius: 2px;
}
.section-head--light .section-title { color: var(--white); }
.section-head--light .lead { color: rgba(255, 255, 255, 0.72); }
.section-head--light::after { background: var(--gold); }

.tile-grid {
  display: grid;
  gap: 20px;
}
.tile-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tile-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-tile {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
  cursor: default;
  transition:
    transform .3s var(--ease),
    box-shadow .3s var(--ease),
    border-color .3s var(--ease),
    background .3s var(--ease);
}
.section-band--surface .feature-tile,
.section-band .feature-tile { box-shadow: 0 2px 12px rgba(6, 11, 20, 0.04); }
.feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(6, 11, 20, 0.12);
  border-color: rgba(254, 204, 5, 0.45);
  background: linear-gradient(180deg, #fffdf5 0%, var(--white) 100%);
}
.feature-tile h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color .25s var(--ease);
}
.feature-tile:hover h3 { color: var(--gold-dim); }
.feature-tile p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  transition: color .25s var(--ease);
}
.feature-tile:hover p { color: var(--slate); }
.feature-tile .tile-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 204, 5, 0.14);
  border-radius: 10px;
  color: var(--gold-dim);
  font-size: 16px;
  margin-bottom: 16px;
  transition: transform .3s var(--ease), color .25s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-tile:hover .tile-icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(254, 204, 5, 0.35);
}
.band-cta { text-align: center; margin-top: 40px; }
.band-cta .btn {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), gap .2s var(--ease);
}
.band-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px var(--gold-glow);
}
.band-cta .btn:hover i { transform: translateX(4px); }
.band-cta .btn i { transition: transform .2s var(--ease); }

.section-timeline {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #142a5c 100%);
  position: relative;
  overflow: hidden;
}
.section-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(254, 204, 5, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.section-timeline .container { position: relative; }
.step-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(254, 204, 5, 0.25);
}
.step-item {
  text-align: center;
  position: relative;
}
.step-badge {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(254, 204, 5, 0.35);
}
.step-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-item p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 280px;
  margin: 0 auto;
}
.timeline-cta {
  text-align: center;
  margin-top: 48px;
}
.timeline-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.timeline-cta .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.section-split-wrap {
  padding: 96px 0;
  background: var(--white);
}
.corp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.corp-split .about-quote {
  margin-top: 0;
}

.section-marquee {
  padding: 72px 0 80px;
  background: var(--surface);
  border-top: 1px solid var(--line-dark);
}
.section-marquee .section-head { margin-bottom: 36px; }
.section-marquee .clients-marquee-wrap {
  margin-top: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.section-showcase {
  padding: 96px 0;
  background: var(--white);
}
.section-showcase .case-grid { margin-top: 0; }
.showcase-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 2px solid var(--line-dark);
}
.showcase-foot p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.showcase-foot p i { color: var(--gold-dim); }
.showcase-foot a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s, color .2s;
}
.showcase-foot a:hover { color: var(--gold-dim); gap: 12px; }

.section-channel {
  padding: 80px 0;
  background: var(--surface);
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.channel-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 204, 5, 0.5);
  box-shadow: var(--shadow);
}
.channel-card i {
  font-size: 26px;
  color: var(--gold-dim);
  margin-bottom: 14px;
}
.channel-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.channel-card p,
.channel-card a {
  font-size: 14px;
  color: var(--slate);
}
.channel-card a {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.channel-card a:hover { color: var(--gold-dim); }
.channel-card small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.section-dual {
  padding: 80px 0;
  background: linear-gradient(135deg, #fffbeb 0%, #fef9e7 50%, #fff 100%);
  border-top: 1px solid rgba(254, 204, 5, 0.2);
  border-bottom: 1px solid rgba(254, 204, 5, 0.2);
}
.section-dual .mission-split { gap: 28px; }
.section-dual .mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-dark);
  border-top: 4px solid var(--gold);
}

.section-form {
  padding: 96px 0;
  background: var(--surface);
}
.form-intro-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 40px 48px;
  color: var(--white);
  position: relative;
}
.form-intro-band::after {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 0;
  height: 3px;
  background: var(--gold);
}
.form-intro-band .offers-kicker { margin-bottom: 12px; }
.form-panel {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 40px 48px;
  box-shadow: var(--shadow-lg);
  color: var(--slate);
}
.form-panel .form-layout { margin-top: 0; }
.form-panel .contact-form {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.section-quote {
  padding: 72px 0;
  background: var(--ink);
  text-align: center;
}
.section-quote blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
}
.section-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.section-quote .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}

.belief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.belief-card {
  padding: 32px;
  background: var(--white);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 2px 16px rgba(6, 11, 20, 0.05);
  transition: border-color .25s;
}
.belief-card:hover { border-left-color: var(--gold); }
.belief-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.belief-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Home services matrix ───────────────────────────────────── */
.offers-matrix--home .offer-content h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.offers-matrix--home .offer-content h3 a:hover { color: var(--gold-dim); }
.offer-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.offer-content h3 a:hover { color: var(--gold-dim); }

.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-dark);
}
.mission-card h3 { font-size: 20px; margin-bottom: 14px; color: var(--ink); }
.mission-card p { font-size: 16px; color: var(--slate); line-height: 1.75; }

/* Case studies */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--surface);
}
.case-body { padding: 28px; }
.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.case-body h2 { font-size: 19px; margin-bottom: 12px; line-height: 1.35; }
.case-body p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* Contact form */
.form-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}
.contact-aside {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-aside h2 { color: var(--white); font-size: 26px; margin-bottom: 16px; }
.contact-aside p { color: rgba(255,255,255,.7); margin-bottom: 12px; }
.contact-aside .aside-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-aside .aside-item i { color: var(--gold); font-size: 18px; margin-top: 3px; }
.contact-aside .aside-item a { color: var(--gold); font-weight: 700; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 50px;
  border: 1.5px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Detailed contact form */
.contact-form-header h3 {
  font-size: 22px;
  margin-bottom: 0;
  color: var(--ink);
}
.contact-form-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}
.contact-form-header p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.65;
}
fieldset.form-section {
  border: none;
  padding: 0;
  margin: 0 0 32px;
}
fieldset.form-section legend { width: 100%; }
.form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
.form-section-num {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-label .req { color: #c2410c; }
.form-hint {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.form-group select { cursor: pointer; }
.form-group optgroup { font-weight: 700; color: var(--ink); }
.form-row.three { grid-template-columns: repeat(3, 1fr); }
.form-check-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  cursor: pointer;
}
.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold-dim);
  cursor: pointer;
}
.form-check a { color: var(--gold-dim); font-weight: 600; }
.contact-form .btn-gold { width: 100%; padding: 16px 28px; font-size: 16px; }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

.contact-aside .process-steps {
  list-style: none;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-aside .process-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-aside .step-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(254, 204, 5, 0.15);
  border: 1px solid rgba(254, 204, 5, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
}
.contact-aside .step-text strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-aside .step-text span {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.aside-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.aside-trust span {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: rgba(255,255,255,.75);
}

@media (max-width: 1100px) {
  .form-row.three { grid-template-columns: 1fr 1fr; }
}

/* Service page extras */
.benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  margin-top: -1px;
}
.benefit-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.benefit-item:last-child { border-right: none; }
.benefit-item i { font-size: 24px; color: var(--gold); margin-bottom: 12px; }
.benefit-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.benefit-item span { font-size: 13px; color: rgba(255,255,255,.55); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px 48px;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px 32px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { min-width: 0; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 300px;
  color: rgba(255,255,255,.62);
}
.footer-logo {
  display: inline-block;
  text-decoration: none;
}
.footer-logo img { height: 44px; display: block; }
.footer-logo .wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.footer-logo .wordmark span { color: var(--gold); }
.footer-col { min-width: 0; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
}
.footer-col a {
  display: inline-block;
  font-size: 14px;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  transition: color .2s, transform .2s;
}
.footer-col a:hover { color: var(--gold); transform: translateX(2px); }
.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s, color .2s;
}
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.footer-bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.footer-credit {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin: 0;
}
.footer-credit a {
  color: rgba(255,255,255,.55);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.footer-credit a:hover { color: var(--gold); }

/* ── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 20, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-overlay.open,
.modal-overlay.open[aria-hidden="false"] { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: fadeUp .4s var(--ease);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--surface);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--line-dark); color: var(--ink); }
.modal-box h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.modal-box .modal-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.form-submit:hover { background: var(--gold-dim); box-shadow: 0 4px 20px var(--gold-glow); }

/* ── Interactive hovers ───────────────────────────────────────── */
.nav-logo {
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.nav-logo:hover { opacity: .88; transform: scale(1.02); }
.nav-links > li > a {
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: rgba(254, 204, 5, 0.1);
}
.nav-phone a {
  transition: color .2s var(--ease);
}
.nav-phone a:hover { color: var(--gold-dim); }
.nav-ham span { transition: background .2s var(--ease), transform .2s var(--ease); }
.nav-ham:hover span { background: var(--gold-dim); }

.dropdown a {
  transition: color .2s var(--ease), background .2s var(--ease), padding-left .2s var(--ease);
}
.dropdown a:hover {
  background: var(--surface);
  color: var(--gold-dim);
  padding-left: 20px;
}

.stat-item {
  transition: transform .25s var(--ease);
}
.stat-item:hover { transform: translateY(-3px); }

.benefit-item {
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.benefit-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.belief-card,
.mission-card {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.belief-card:hover,
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.channel-card i {
  transition: transform .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.channel-card:hover i {
  transform: scale(1.12);
  color: var(--gold);
}

.case-card img {
  transition: transform .45s var(--ease);
}
.case-card:hover img { transform: scale(1.05); }
.case-body h2 a { transition: color .2s var(--ease); }
.case-body h2:hover { color: var(--gold-dim); }

.testi-card {
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.testi-card:hover {
  border-color: rgba(254, 204, 5, 0.45);
}

.step-item {
  transition: transform .25s var(--ease);
}
.step-item:hover { transform: translateY(-4px); }
.step-item:hover .step-badge {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(254, 204, 5, 0.45);
}
.step-badge { transition: transform .25s var(--ease), box-shadow .25s var(--ease); }

.showcase-foot a,
.timeline-cta .btn {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), gap .2s var(--ease), color .2s var(--ease);
}
.timeline-cta .btn:hover { transform: translateY(-2px); }

.footer-col a,
.footer-credit a,
.breadcrumb a {
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer-col a {
  display: inline-block;
}
.footer-col a:hover,
.footer-credit a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.footer-logo {
  transition: opacity .2s var(--ease);
}
.footer-logo:hover { opacity: .85; }

.social-icon {
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.social-icon:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: rgba(254, 204, 5, 0.55);
}
.form-check:hover { color: var(--ink); }

.contact-aside .aside-item {
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.contact-aside .aside-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}
.contact-aside .aside-item a {
  transition: color .2s var(--ease);
}
.contact-aside .aside-item a:hover { color: #ffe566; }

.aside-trust span {
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.aside-trust span:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.channel-card a,
.offer-content a,
.offers-foot-link {
  transition: color .2s var(--ease), gap .2s var(--ease);
}

.cta-inner .btn {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
}
.cta-inner .btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.hero-card-main {
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.hero-card-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-dot {
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.hero-dot:hover { transform: scale(1.15); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
  .nav-links > li > a { font-size: 13px; padding: 8px 10px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-matrix { grid-template-columns: 1fr; }
  .tile-grid--3, .tile-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-strip { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(2) { border-right: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container, .nav-inner, .cta-inner, .footer-grid, .footer-bar { padding-left: 20px; padding-right: 20px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 12px 20px 40px;
    overflow-y: auto;
    gap: 0;
    border-top: 1px solid var(--line-dark);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--line-dark);
    white-space: normal;
  }
  .dropdown {
    position: static;
    display: none !important;
    box-shadow: none;
    border: none;
    padding: 0 0 4px 8px;
    min-width: 0;
    max-height: none;
  }
  .dropdown::before { display: none; }
  .nav-links > li.nav-open > .dropdown { display: block !important; }
  .service-dropdown .submenu,
  .dropdown .submenu {
    display: none !important;
    position: static;
    padding: 0 0 4px 12px;
  }
  .has-submenu.submenu-open > .submenu { display: block !important; }
  .has-submenu > a::after {
    content: " +";
    float: right;
    font-weight: 400;
    color: var(--muted);
  }
  .has-submenu.submenu-open > a::after { content: " −"; }
  .nav-cta { display: none; }
  .nav-ham { display: flex; }

  .hero { min-height: auto; padding-bottom: 60px; }
  .hero h1 { font-size: 34px; }
  .hero-dots { bottom: 24px; }
  .two-col, .form-layout, .corp-split { grid-template-columns: 1fr; gap: 40px; }
  .case-grid, .testimonials-grid,
  .benefits-strip, .stats-grid { grid-template-columns: 1fr; }
  .benefit-item { border-right: none; border-bottom: 1px solid var(--line); }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row.three { grid-template-columns: 1fr; }
  .about-img::after { display: none; }
  .tile-grid--3, .tile-grid--4 { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
  .step-track { grid-template-columns: 1fr; gap: 40px; }
  .step-track::before { display: none; }
  .corp-split { grid-template-columns: 1fr; gap: 40px; }
  .belief-grid { grid-template-columns: 1fr; }
  .form-intro-band, .form-panel { padding-left: 24px; padding-right: 24px; }
  .form-intro-band::after { left: 24px; right: 24px; }
  .offers-section { padding: 64px 0; }
  .offers-shell-head { padding: 32px 24px 28px; }
  .offers-shell-head::after { left: 24px; right: 24px; }
  .offer-row { grid-template-columns: 48px 1fr; padding: 22px 20px; gap: 14px; }
  .offer-num { font-size: 28px; }
  .offers-shell-foot { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .mission-split { grid-template-columns: 1fr; }
}
