/* ==========================================================================
   Insperte — B2B Corporate Design System
   Inspired by HBG Knowledge: Deep Navy Blues · Crisp White Cards · Slate Accents
   Font: Inter (Google Fonts)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&display=swap');

:root {
  /* ── Core Navy Palette (HBG-inspired) ── */
  --navy-950:  #040e22;   /* deepest ink */
  --navy-900:  #0a1628;   /* hero / footer bg */
  --navy-800:  #0f2040;   /* dark card bg */
  --navy-700:  #163058;   /* section dark */
  --navy-600:  #1d4080;   /* medium navy */
  --navy-500:  #2355a0;   /* nav active, accents */
  --navy-400:  #3a72c4;   /* link hover */
  --navy-100:  #dce8f8;   /* light tint */
  --navy-50:   #eef4fc;   /* very light tint */

  /* ── Corporate Blue Accent ── */
  --blue:      #1a56db;   /* CTA primary */
  --blue-dark: #1040b0;
  --blue-lite: #e8f0fd;

  /* ── Neutral / Surface ── */
  --ink:       #0d1b2a;   /* headings */
  --ink-soft:  #1c2e44;
  --body:      #3d4f65;   /* paragraph */
  --muted:     #667a90;   /* captions */
  --subtle:    #8fa0b5;   /* very light text */

  --bg:        #f7f9fc;   /* page background */
  --surface:   #ffffff;   /* card white */
  --surface-2: #f0f4fa;   /* alt section bg */
  --surface-3: #e5edf7;   /* highlight bg */

  --border:     #d0dce9;
  --border-soft:#e2eaf4;

  /* ── Gold Accent (sparingly) ── */
  --gold:      #d4a017;
  --gold-lite: #fef8e6;

  /* ── Radius ── */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* ── Shadows ── */
  --sh-xs: 0 1px 3px rgba(13,27,42,0.06);
  --sh-sm: 0 2px 8px rgba(13,27,42,0.08);
  --sh-md: 0 8px 28px rgba(13,27,42,0.10);
  --sh-lg: 0 20px 52px rgba(13,27,42,0.14);

  /* ── Layout ── */
  --container: 1200px;
  --section-py: 96px;
}

/* ────────────────────────────────── BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.55em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

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

/* ────────────────────────────── EYEBROW LABEL ───────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-lite);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(26,86,219,0.15);
}
.eyebrow::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ──────────────────────────────── SECTIONS ──────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--surface-2); }
.section--dark { background: var(--navy-900); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p, .section--dark li { color: #9bb3cc; }
.section--tight { padding: 64px 0; }

.section-head { max-width: 620px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

/* ──────────────────────────────── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(26,86,219,0.25);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ─────────────────────────────── HEADER ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--sh-xs);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  height: 72px;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(10,22,40,0.3);
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-name {
  display: flex;
  flex-direction: column;
}
.brand-name strong {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand-name small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* Keep backward compat with existing HTML that uses <span>Insperte<small>...</small></span> */
.brand > span {
  display: flex;
  flex-direction: column;
}
.brand > span:not(.brand-mark) {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand > span small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  font-style: normal;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--body);
  padding: 8px 14px;
  border-radius: var(--r-md);
  transition: all 0.15s ease;
  position: relative;
}
.main-nav a:hover {
  color: var(--navy-900);
  background: var(--surface-2);
}
.main-nav a.active {
  color: var(--blue);
  background: var(--blue-lite);
  font-weight: 600;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 17px;
  height: 1.8px;
  background: var(--ink);
  position: relative;
  transition: all 0.22s ease;
  border-radius: 2px;
}
.nav-toggle span::before { position: absolute; top: -5.5px; }
.nav-toggle span::after  { position: absolute; top: 5.5px; }

/* ────────────────────────────── HERO SECTION ────────────────────────────── */
.hero {
  padding: 84px 0 96px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* Subtle grid dot pattern background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(26,86,219,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
/* Navy accent bar at left */
.hero::after {
  content: "";
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  border-radius: 2px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--navy-900);
}
.hero h1 span { color: var(--blue); }

.hero-lead {
  font-size: 1.1rem;
  color: var(--body);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.72;
}

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

.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.hero-meta div {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}
.hero-meta strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}

/* ─────────────────────── HERO PHOTO WRAP ───────────────────────────────── */
.hero-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
}
.hero-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    175deg,
    rgba(10,22,40,0.55) 0%,
    rgba(10,22,40,0.05) 45%,
    rgba(10,22,40,0.30) 100%
  );
}

/* Floating badge on hero photo */
.hero-badge {
  position: absolute;
  left: 18px; bottom: 18px; right: 18px;
  z-index: 2;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: var(--sh-md);
  border: 1px solid rgba(255,255,255,0.8);
}
.hero-badge .icon-circle {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-lite);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge .icon-circle svg { width: 18px; height: 18px; }
.hero-badge strong { display: block; font-size: 0.86rem; color: var(--navy-900); font-weight: 700; }
.hero-badge span { font-size: 0.72rem; color: var(--muted); }

/* ──────────────────────────── TRUST STRIP ───────────────────────────────── */
.trust-strip {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 28px 20px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
  font-weight: 600;
  color: #9bb3cc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transition: background 0.2s ease;
}
.trust-item:first-child { border-left: none; }
.trust-item:hover { background: rgba(255,255,255,0.04); }
.trust-item .ico {
  color: #60a5fa;
  display: flex;
  width: 36px; height: 36px;
  background: rgba(96,165,250,0.12);
  border-radius: 9px;
  align-items: center;
  justify-content: center;
}
.trust-item .ico svg { width: 19px; height: 19px; }

/* ──────────────────────────────── GRIDS ─────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ─────────────────────────────── CARDS ─────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--sh-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--navy-100);
}

/* Step cards */
.step-card {
  position: relative;
  padding-top: 44px;
  border-top: 3px solid var(--blue);
}
.step-num {
  position: absolute;
  top: -20px; left: 26px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--sh-sm);
  letter-spacing: -0.02em;
}

/* ─────────────────────── INDUSTRY CARDS ────────────────────────────────── */
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--navy-100);
}
.industry-card .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-50);
  color: var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--border-soft);
}
.industry-card .ico svg { width: 22px; height: 22px; }
.industry-card h3 { margin-bottom: 6px; font-size: 1.05rem; color: var(--navy-900); }
.industry-card p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ──────────────────────── SPLIT PANELS ─────────────────────────────────── */
.split-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel {
  border-radius: var(--r-xl);
  padding: 40px;
}
.panel-light {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
}
.panel-dark {
  background: var(--navy-900);
  color: #9bb3cc;
}
.panel-dark h3 { color: #fff; }
.panel ul { margin: 20px 0 28px; }
.panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  line-height: 1.55;
}
.panel-light li { color: var(--body); }
.panel-dark li { color: #9bb3cc; }

.check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check svg { width: 10px; height: 10px; }
.panel-light .check { background: var(--blue-lite); color: var(--blue); }
.panel-dark .check { background: rgba(96,165,250,0.15); color: #60a5fa; }

/* ─────────────────────────── PILLARS ───────────────────────────────────── */
.pillar { text-align: center; padding: 10px; }
.pillar .ico {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--blue-lite);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26,86,219,0.12);
}
.pillar .ico svg { width: 26px; height: 26px; }

/* ─────────────────────────── CTA BANNER ───────────────────────────────── */
.cta-banner {
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 72px 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* Subtle glow */
.cta-banner::before {
  content: "";
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(26,86,219,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: #9bb3cc; max-width: 520px; margin: 0 auto 32px; font-size: 1.02rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────── FOOTER ────────────────────────────────── */
.site-footer {
  background: var(--navy-950);
  color: #8fa0b5;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Footer brand */
.footer-brand .brand > span:not(.brand-mark) { color: #fff; }
.footer-brand .brand .brand-mark {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%);
}
.footer-brand p {
  margin: 18px 0 20px;
  color: #7a8fa6;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-contact {
  font-size: 0.88rem;
  line-height: 2;
  color: #7a8fa6;
}

/* Footer columns */
.footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: #7a8fa6;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #fff; }

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: #4e6177;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom .legal { color: #4e6177; }
.footer-bottom a:hover { color: #fff; }

/* ──────────────────── PAGE HEADER (inner pages) ────────────────────────── */
.page-header {
  padding: 60px 0 52px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-soft);
}
.page-header--photo {
  position: relative;
  padding: 120px 0 68px;
  background-size: cover;
  background-position: center;
  border-bottom: none;
  color: #fff;
  overflow: hidden;
}
.page-header--photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(4,14,34,0.93) 0%,
    rgba(10,22,40,0.82) 50%,
    rgba(10,22,40,0.92) 100%
  );
}
.page-header--photo .container { position: relative; z-index: 1; }
.page-header--photo h1 { color: #fff; }
.page-header--photo p { color: #9bb3cc; }
.page-header--photo .breadcrumb { color: #5c7a97; }
.page-header--photo .breadcrumb a:hover { color: #fff; }
.page-header--photo .eyebrow {
  background: rgba(255,255,255,0.1);
  color: #93c5fd;
  border-color: rgba(147,197,253,0.2);
}
.page-header--photo .eyebrow::before { background: #93c5fd; }

.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { transition: color 0.15s; }
.breadcrumb a:hover { color: var(--blue); }
.page-header p { color: var(--muted); font-size: 1.04rem; max-width: 580px; margin: 0; }

/* ──────────────────── MISSION & VISION GRID ────────────────────────────── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
}
.mv-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-lite);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(26,86,219,0.12);
}
.mv-card .ico svg { width: 24px; height: 24px; }
.mv-card h3 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.mv-card p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

/* Value items */
.value-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 800;
  flex-shrink: 0;
  width: 40px;
  letter-spacing: -0.04em;
}
.value-item h3 { margin-bottom: 4px; font-size: 1rem; }
.value-item p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* ─────────────────────────────── FAQ ───────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: var(--navy-100); }
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.faq-item.open .faq-question { color: var(--blue); }
.faq-question .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
  border: 1px solid var(--border-soft);
}
.faq-item.open .faq-question .plus {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--body);
  font-size: 0.94rem;
  line-height: 1.72;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─────────────────────────── CONTACT ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-900);
  color: #9bb3cc;
  border-radius: var(--r-xl);
  padding: 40px;
}
.contact-info-card .eyebrow {
  background: rgba(255,255,255,0.1);
  color: #93c5fd;
  border-color: rgba(147,197,253,0.2);
}
.contact-info-card .eyebrow::before { background: #93c5fd; }
.contact-info-card h3 { color: #fff; }

.contact-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(96,165,250,0.12);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row .ico svg { width: 18px; height: 18px; }
.contact-row strong { display: block; color: #fff; font-size: 0.88rem; margin-bottom: 2px; }
.contact-row span,
.contact-row a { font-size: 0.88rem; color: #7a8fa6; }
.contact-row a:hover { color: #60a5fa; }

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-sm);
}
.contact-form-card h3 { margin-bottom: 4px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 118px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; }
.form-success { color: #16a34a !important; font-weight: 600 !important; }

/* ──────────────────── PHOTO / IMAGE COMPONENTS ──────────────────────────── */

/* Zigzag split rows */
.split-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-photo-row + .split-photo-row { margin-top: 80px; }
.split-photo-row.reverse .split-photo-media { order: 2; }
.split-photo-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 4 / 3;
}
.split-photo-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.split-photo-media:hover img { transform: scale(1.03); }
.split-photo-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(10,22,40,0.22) 0%, transparent 55%);
}

/* Full image band */
.image-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  box-shadow: var(--sh-md);
}
.image-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.image-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4,14,34,0.92) 0%,
    rgba(10,22,40,0.72) 48%,
    rgba(10,22,40,0.28) 100%
  );
  z-index: 1;
}
.image-band-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 56px 60px;
  max-width: 540px;
}
.image-band-content .eyebrow {
  background: rgba(255,255,255,0.12);
  color: #93c5fd;
  border-color: rgba(147,197,253,0.2);
}
.image-band-content .eyebrow::before { background: #93c5fd; }
.image-band-content h2 { color: #fff; }
.image-band-content p { color: #9bb3cc; margin-bottom: 0; }

/* ──────────────────── SPLIT PHOTO LISTS ────────────────────────────────── */
.split-photo-row ul { margin: 20px 0 28px; }
.split-photo-row li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--body);
  line-height: 1.55;
}
.split-photo-row .check { background: var(--blue-lite); color: var(--blue); }

/* ───────────────────────── SECTION DIVIDER ──────────────────────────────── */
.divider { height: 1px; background: var(--border-soft); margin: 0; }
.text-center { text-align: center; }

/* ──────────────────────── RESPONSIVE BREAKPOINTS ───────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-wrap { max-width: 440px; margin: 0 auto; }
  .grid-3, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .split-panels, .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
  .split-photo-row { grid-template-columns: 1fr; gap: 28px; }
  .split-photo-row.reverse .split-photo-media { order: 0; }
  .split-photo-row + .split-photo-row { margin-top: 52px; }
  .image-band-content { padding: 40px 36px; max-width: 100%; }
  .cta-banner { padding: 56px 48px; }
}

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

  .main-nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }

  .site-header.open .main-nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    box-shadow: var(--sh-md);
  }
  .site-header.open .main-nav a { padding: 11px 14px; }

  .grid-3, .grid-6, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 44px 24px; }
  .cta-banner h2 { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .panel { padding: 28px; }
  .mv-card, .contact-info-card, .contact-form-card { padding: 28px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 56px 0 64px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .split-panels { grid-template-columns: 1fr; }
  .hero::after { display: none; }
}
