/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* navy-forward core — sampled directly from brand logo pixels */
  --ink: #020D1E;
  --ink-soft: #041634;
  --navy: #052956;
  --navy-soft: #0C3D74;
  --navy-line: rgba(255,255,255,0.10);
  --navy-line-strong: rgba(255,255,255,0.18);

  /* paper */
  --paper: #F5F6F8;
  --paper-dim: #EAEDF2;
  --paper-line: rgba(2,21,44,0.09);

  /* accents — exact brand orange, sampled from logo pixels */
  --brass: #FE6601;
  --brass-light: #FF8F42;
  --brass-dim: rgba(254,102,1,0.14);
  --ember: #E85A00;

  /* text */
  --text-onlight: #0E1B30;
  --text-onlight-mute: #59647B;
  --text-ondark: #F3F5F8;
  --text-ondark-mute: #9FAAC2;

  --white: #FFFFFF;

  /* type */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* scale */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(5,20,45,0.05);
  --shadow-card: 0 2px 5px rgba(5,20,45,0.05), 0 20px 44px -22px rgba(5,20,45,0.28);
  --shadow-card-hover: 0 10px 20px -6px rgba(5,20,45,0.14), 0 32px 60px -20px rgba(5,20,45,0.34);
  --shadow-pop: 0 24px 70px -18px rgba(2,13,30,0.55);
  --shadow-glow: 0 12px 28px -8px rgba(254,102,1,0.42);
}

/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text-onlight);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.section {
  padding: 96px 0;
}
.section--tight { padding: 72px 0; }
.section--dark {
  background: var(--ink);
  color: var(--text-ondark);
}
.section--navy {
  background: var(--navy);
  color: var(--text-ondark);
}
.section--paper { background: var(--paper); }
.section--paper-dim { background: var(--paper-dim); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 14px;
}
.section-head p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-onlight-mute);
}
.section--dark .section-head p,
.section--navy .section-head p { color: var(--text-ondark-mute); }

.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--brass {
  background: var(--brass);
  color: var(--ink);
}
.btn--brass:hover { background: var(--brass-light); }

.btn--nav-cta {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--nav-cta:hover { background: var(--navy); color: var(--white); }

.btn--outline-dark {
  border-color: var(--navy-line-strong);
  color: var(--text-ondark);
  background: transparent;
}
.btn--outline-dark:hover { border-color: var(--brass); color: var(--brass-light); }

.btn--outline-light {
  border-color: var(--paper-line);
  color: var(--text-onlight);
  background: transparent;
}
.btn--outline-light:hover { border-color: var(--navy); background: var(--white); }

.btn--ghost {
  color: var(--brass);
  padding-left: 4px;
  padding-right: 4px;
}
.btn--ghost:hover { color: var(--brass-light); }

.btn--block { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 15.5px; }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

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

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--paper-line);
  box-shadow: 0 14px 32px -22px rgba(5,20,45,0.35);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text-onlight);
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow-sm);
}
.logo-mark { height: 58px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-onlight-mute);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.15s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--navy); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
}

.nav-item-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none;
}
.nav-drop-btn svg { width: 11px; height: 11px; transition: transform 0.18s ease; }
.nav-item-drop:hover .nav-drop-btn svg,
.nav-item-drop.is-open .nav-drop-btn svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-pop);
  opacity: 0;
  visibility: hidden;
  translate: 0 6px;
  transition: opacity 0.15s ease, translate 0.15s ease, visibility 0.15s;
}
.nav-item-drop:hover .nav-dropdown,
.nav-item-drop.is-open .nav-dropdown {
  opacity: 1; visibility: visible; translate: 0 0;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-onlight-mute);
}
.nav-dropdown a:hover { background: var(--paper); color: var(--navy); }
.nav-dropdown .lever-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brass);
  width: 20px;
  flex: none;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  color: var(--text-onlight);
}
.nav-burger svg { width: 18px; height: 18px; }

/* ============================================================
   HERO + DIAL
   ============================================================ */
.hero {
  padding: 168px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero > .container { max-width: 1360px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 82% 12%, rgba(200,155,74,0.14), transparent 60%),
    radial-gradient(600px 500px at -5% 90%, rgba(22,39,74,0.9), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(38px, 4.6vw, 60px);
  margin-top: 18px;
  color: var(--text-ondark);
}
.hero-copy .accent { color: var(--brass-light); }
.hero-copy p {
  margin-top: 22px;
  font-size: 18px;
  color: var(--text-ondark-mute);
  max-width: 480px;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dial-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dial-svg { width: 100%; max-width: 720px; height: auto; overflow: visible; }
.dial-tick { stroke: var(--navy-line-strong); stroke-width: 1; }
.dial-tick--major { stroke: rgba(255,255,255,0.32); stroke-width: 1.5; }
.dial-ring { fill: none; stroke: var(--navy-line); stroke-width: 1; }
.dial-center-circle { fill: var(--navy-soft); stroke: var(--navy-line-strong); stroke-width: 1; }
.dial-center-num {
  font-family: var(--font-display);
  font-weight: 700;
  fill: var(--text-ondark);
}
.dial-center-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  fill: var(--brass-light);
}
.dial-hand {
  transform-origin: 250px 250px;
  animation: sweep 12s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .dial-hand { animation: none; } }
@keyframes sweep { to { transform: rotate(360deg); } }

.dial-node { cursor: pointer; }
.dial-node-hit { fill: transparent; }
.dial-node-circle {
  fill: var(--navy-soft);
  stroke: var(--navy-line-strong);
  stroke-width: 1.5;
  transition: fill 0.18s ease, stroke 0.18s ease;
}
.dial-node:hover .dial-node-circle, .dial-node:focus-visible .dial-node-circle {
  fill: var(--brass);
  stroke: var(--brass);
}
.dial-node-icon { color: var(--brass-light); transition: color 0.18s ease; }
.dial-node:hover .dial-node-icon, .dial-node:focus-visible .dial-node-icon { color: var(--ink); }
.dial-node-icon svg { width: 20px; height: 20px; overflow: visible; }
.dial-node-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  fill: var(--text-ondark-mute);
  transition: fill 0.18s ease;
}
.dial-node:hover .dial-node-label, .dial-node:focus-visible .dial-node-label { fill: var(--text-ondark); }
.dial-spoke { stroke: var(--navy-line); stroke-width: 1; }

.dial-caption {
  text-align: center;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-ondark-mute);
  letter-spacing: 0.04em;
}
.dial-caption strong { color: var(--brass-light); font-weight: 500; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  background: var(--ink-soft);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 26px 24px;
  border-left: 1px solid var(--navy-line);
  text-align: center;
}
.stat-cell:first-child { border-left: none; }
.stat-num {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--brass-light);
  letter-spacing: -0.01em;
}
.stat-label {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-ondark-mute);
}

.trust-strip {
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  background: var(--ink-soft);
  padding: 24px 0;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-ondark);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item svg { width: 19px; height: 19px; color: var(--brass); flex: none; }
@media (max-width: 900px) {
  .trust-row { justify-content: center; }
}
@media (max-width: 500px) {
  .trust-item { font-size: 13px; }
}

/* ============================================================
   GRIDS / CARDS — services, why-us
   ============================================================ */
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 18px; right: 18px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--paper-line);
}
.service-card:hover::before { background: var(--brass); }
.service-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--brass-dim);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card-icon svg { width: 21px; height: 21px; }
.service-card-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-onlight-mute);
  letter-spacing: 0.08em;
}
.service-card h3 { font-size: 18.5px; margin-top: 6px; }
.service-card p {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--text-onlight-mute);
}
.service-card-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.service-card-link svg { width: 13px; height: 13px; transition: transform 0.15s ease; }
.service-card:hover .service-card-link svg { transform: translateX(3px); }

.service-card--detailed { display: flex; flex-direction: column; }
.service-card p.service-card-headline { font-size: 14px; font-weight: 600; color: var(--text-onlight); margin-top: 6px; }
.service-card-checklist { margin-top: 14px; display: grid; gap: 10px; flex: 1; }
.service-card-check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-onlight-mute); }

.principle-card {
  padding: 24px 0;
  border-top: 1px solid var(--paper-line);
}
.principle-card:last-child { border-bottom: 1px solid var(--paper-line); }
.principle-card h3 { font-size: 19px; margin-top: 10px; }
.principle-card p { margin-top: 8px; color: var(--text-onlight-mute); font-size: 15px; max-width: 620px; }

/* ============================================================
   PROCESS TIMELINE (real sequence — numbered)
   ============================================================ */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 0 22px 0 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px; right: -1px;
  width: calc(100% - 44px);
  border-top: 1px dashed var(--navy-line-strong);
}
.process-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brass-light);
  width: 34px; height: 34px;
  border: 1px solid var(--navy-line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  background: var(--navy);
}
.process-step h3 { font-size: 17px; margin-top: 18px; color: var(--text-ondark); }
.process-step p { font-size: 14px; margin-top: 8px; color: var(--text-ondark-mute); max-width: 240px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--navy-soft);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--brass);
  line-height: 1;
}
.testimonial-card p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-ondark);
  line-height: 1.65;
}
.testimonial-byline {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brass-dim);
  color: var(--brass-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  flex: none;
}
.testimonial-name { font-size: 13.5px; font-weight: 600; color: var(--text-ondark); }
.testimonial-role { font-size: 12.5px; color: var(--text-ondark-mute); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.blog-card-top {
  height: 130px;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
}
.blog-card-top::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(220px 140px at 85% 0%, rgba(200,155,74,0.35), transparent 70%);
}
.blog-cat {
  position: relative;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--brass-light);
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--navy-line-strong);
  padding: 5px 10px;
  border-radius: 20px;
}
.blog-card-body { padding: 20px 20px 22px; }
.blog-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-onlight-mute);
}
.blog-card h3 { font-size: 17px; margin-top: 10px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--text-onlight-mute); margin-top: 8px; }
.blog-read {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.blog-read svg { width: 12px; height: 12px; }

/* ============================================================
   SERVICE PAGE — BANNER + LEAD FORM
   ============================================================ */
.svc-banner {
  padding: 156px 0 80px;
  position: relative;
  overflow: hidden;
}
.svc-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(640px 420px at 88% 0%, rgba(200,155,74,0.14), transparent 60%);
  pointer-events: none;
}
.svc-banner-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.svc-lever-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-ondark-mute);
}
.svc-lever-tag strong { color: var(--brass-light); font-weight: 500; }
.svc-banner h1 {
  font-size: clamp(32px, 3.8vw, 48px);
  color: var(--text-ondark);
  margin-top: 14px;
}
.svc-banner-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--text-ondark-mute);
  max-width: 480px;
}
.svc-highlights { margin-top: 26px; display: grid; gap: 13px; }
.svc-highlight {
  display: flex; align-items: center; gap: 11px;
  font-size: 14.5px; color: var(--text-ondark);
}
.svc-banner-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

.lead-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-pop);
}
.lead-card-head { margin-bottom: 20px; }
.lead-card-head h3 { font-size: 19px; color: var(--text-onlight); }
.lead-card-head p { font-size: 13.5px; color: var(--text-onlight-mute); margin-top: 6px; }

.lead-split { display: grid; grid-template-columns: 1fr 0.95fr; gap: 54px; align-items: center; }
.lead-split-copy h2 { margin-top: 14px; font-size: clamp(26px, 3vw, 36px); }
.lead-split-copy > p { margin-top: 14px; color: var(--text-onlight-mute); font-size: 16px; max-width: 440px; }
.lead-tabs { display: flex; gap: 10px; margin-top: 28px; }
.lead-tab {
  padding: 11px 20px;
  border-radius: 30px;
  border: 1px solid var(--paper-line);
  background: var(--white);
  font-size: 13.5px; font-weight: 700;
  color: var(--text-onlight-mute);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.lead-tab:hover { border-color: var(--navy); color: var(--navy); }
.lead-tab.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.lead-points { margin-top: 28px; display: grid; gap: 13px; }
.lead-points li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text-onlight); }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  color: var(--text-onlight-mute);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 14.5px;
  color: var(--text-onlight);
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brass);
  outline: none;
}
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-note {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--text-onlight-mute);
  text-align: center;
}
.field-note-alt {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-onlight-mute);
  text-align: center;
}
.field-note-alt a { color: var(--navy); font-weight: 600; text-decoration: underline; }

.whatsapp-quick-cta {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  background: var(--paper-dim);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 18px 26px;
  margin-bottom: 46px;
  text-align: center;
}
.whatsapp-quick-cta span { font-size: 14.5px; font-weight: 600; color: var(--text-onlight); }
.whatsapp-quick-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-size: 13.5px; font-weight: 700;
  padding: 10px 18px; border-radius: 30px;
}
.whatsapp-quick-cta a svg { width: 16px; height: 16px; }
.whatsapp-quick-cta a:hover { background: #1FB855; }

.form-success { text-align: center; padding: 30px 6px; }
.form-success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brass-dim);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success-icon svg { width: 24px; height: 24px; }
.form-success h3 { font-size: 18px; color: var(--text-onlight); }
.form-success p { font-size: 14px; color: var(--text-onlight-mute); margin-top: 8px; }

/* ============================================================
   PROVIDE / INCLUDE / OFFER
   ============================================================ */
.provide-card {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.provide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  background: var(--white);
}
.provide-card-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--navy);
  color: var(--brass-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.provide-card-icon svg { width: 18px; height: 18px; }
.provide-card h4 { font-size: 15.5px; }
.provide-card p { font-size: 13.5px; color: var(--text-onlight-mute); margin-top: 6px; }

.include-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.include-item {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-line);
  font-size: 15px;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex; flex-direction: column;
}
.offer-card-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--brass);
}
.offer-card h4 { font-size: 18px; margin-top: 8px; }
.offer-card p { font-size: 14px; color: var(--text-onlight-mute); margin-top: 8px; flex: 1; }
.offer-card .btn { margin-top: 18px; }

/* ============================================================
   CLOSING CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(115deg, var(--navy) 0%, var(--ink) 55%, #3A1B04 100%);
  color: var(--text-ondark);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 340px at 88% 20%, rgba(254,102,1,0.28), transparent 62%);
}
.cta-strip-inner {
  position: relative;
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  max-width: 560px;
}
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--text-ondark-mute);
  padding: 72px 0 28px;
  border-top: 1px solid var(--navy-line);
}
.footer-logo-chip {
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  width: fit-content;
}
.footer-logo-chip .logo-mark { height: 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
}
.footer-brand p { font-size: 14px; margin-top: 14px; max-width: 260px; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-ondark);
  margin-bottom: 16px;
}
.footer-col a, .footer-col li {
  display: block;
  font-size: 14px;
  padding: 6px 0;
}
.footer-col a:hover { color: var(--brass-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; padding: 6px 0; }
.footer-contact-item svg { width: 14px; height: 14px; margin-top: 3px; color: var(--brass); flex: none; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 46px; height: 46px;
  border: 1px solid var(--navy-line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.footer-social svg { width: 21px; height: 21px; }
.footer-social a:hover { border-color: var(--brass); color: var(--brass-light); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.price-card:hover::before { opacity: 1; }
.price-card--popular {
  border-color: var(--navy);
  box-shadow: var(--shadow-card-hover);
}
.price-card--popular::before { opacity: 1; }
.price-popular-flag {
  position: absolute; top: -13px; left: 26px;
  background: var(--brass); color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 20px;
}
.price-card--standard::before { background: var(--navy); opacity: 1; }
.price-card--premium::before { background: linear-gradient(90deg, var(--brass), var(--brass-light)); opacity: 1; }
.price-card--custom { background: var(--ink); border-color: var(--ink); }
.price-card--custom::before { background: var(--brass-light); opacity: 1; }
.price-card--custom .price-name,
.price-card--custom .price-amount,
.price-card--custom .price-desc,
.price-card--custom .price-feature { color: var(--text-ondark); }
.price-card--custom .price-desc { color: var(--text-ondark-mute); }
.price-card--custom .price-feature .tick { background: rgba(255,143,66,0.18); }

/* ============================================================
   PRICING TABS
   ============================================================ */
.pricing-tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 6px;
  background: var(--paper-dim);
  border-radius: 30px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto; margin-right: auto;
}
.pricing-tab {
  padding: 10px 18px;
  border-radius: 24px;
  border: none;
  background: transparent;
  font-size: 13px; font-weight: 700;
  color: var(--text-onlight-mute);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.pricing-tab:hover { color: var(--navy); }
.pricing-tab.is-active { background: var(--navy); color: var(--white); box-shadow: var(--shadow-card); }
@media (max-width: 900px) {
  .pricing-tabs { width: 100%; overflow-x: auto; justify-content: flex-start; flex-wrap: nowrap; }
}

/* ============================================================
   BUNDLE CTA — all six services
   ============================================================ */
.bundle-cta { background: linear-gradient(115deg, var(--navy) 0%, var(--ink) 55%, #3A1B04 100%); color: var(--text-ondark); padding: 60px 0; }
.bundle-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.bundle-cta-inner h2 { margin-top: 10px; font-size: clamp(24px, 2.6vw, 32px); max-width: 480px; }
.bundle-cta-inner > div:first-child p { margin-top: 12px; color: var(--text-ondark-mute); max-width: 440px; }
.bundle-cta-price { text-align: center; }
.bundle-price-amount { font-family: var(--font-display); font-weight: 800; font-size: 42px; color: var(--brass-light); line-height: 1; }
.bundle-price-label { font-size: 13px; color: var(--text-ondark-mute); margin-top: 6px; margin-bottom: 18px; }

.price-name { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--text-onlight-mute); text-transform: uppercase; }
.price-amount { font-family: var(--font-display); font-size: 34px; font-weight: 700; margin-top: 10px; color: var(--text-onlight); line-height: 1.2; }
.price-amount-prefix { display: block; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--text-onlight-mute); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 3px; }
.price-card--custom .price-amount-prefix { color: var(--text-ondark-mute); }
.price-amount span { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--text-onlight-mute); }
.price-desc { font-size: 13.5px; color: var(--text-onlight-mute); margin-top: 8px; }
.price-features { margin-top: 22px; display: grid; gap: 13px; flex: 1; }
.price-feature { display: flex; align-items: center; gap: 11px; font-size: 14px; }

.price-ladder {
  margin-top: 18px;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  padding: 4px 0;
}
.price-ladder-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 9px 0;
}
.price-ladder-row:not(:last-child) { border-bottom: 1px dashed var(--paper-line); }
.price-ladder-amount { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text-onlight); flex: none; }
.price-card--custom .price-ladder-amount { color: var(--text-ondark); }
.price-ladder-label { font-size: 12.5px; color: var(--text-onlight-mute); text-align: right; }
.price-card--custom .price-ladder-label { color: var(--text-ondark-mute); }

.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 10px; }
.addon-chip {
  display: flex; align-items: center; gap: 11px;
  background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 13.5px; font-weight: 600; color: var(--text-onlight);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.addon-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
@media (max-width: 900px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .addon-grid { grid-template-columns: 1fr; } }
.price-card .btn { margin-top: 24px; }

.faq-item {
  border-bottom: 1px solid var(--paper-line);
  padding: 20px 0;
}
.faq-item h4 { font-size: 16px; display: flex; align-items: center; gap: 10px; }
.faq-item h4 .eyebrow { font-size: 11px; }
.faq-item p { font-size: 14.5px; color: var(--text-onlight-mute); margin-top: 10px; max-width: 640px; }

/* ============================================================
   ABOUT — team / values
   ============================================================ */
.value-card { padding: 4px 0; }
.value-card .eyebrow { margin-bottom: 10px; }
.value-card h3 { font-size: 18px; }
.value-card p { font-size: 14.5px; color: var(--text-onlight-mute); margin-top: 8px; }

.team-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: left;
}
.team-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--brass-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  margin-bottom: 16px;
}
.team-card h4 { font-size: 15.5px; }
.team-card p { font-size: 13px; color: var(--text-onlight-mute); margin-top: 6px; }

.about-story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.about-story-figure {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-story-figure::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(260px 260px at 30% 20%, rgba(200,155,74,0.30), transparent 65%);
}
.about-story-figure svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--navy-line); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px;
  background: var(--navy-soft);
  color: var(--brass-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-item h4 { font-size: 14px; color: var(--text-ondark); }
.contact-info-item p { font-size: 14px; color: var(--text-ondark-mute); margin-top: 4px; }
.map-box {
  margin-top: 28px;
  height: 200px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--navy-line-strong);
  background: var(--navy-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  color: var(--text-ondark-mute);
  font-size: 12.5px;
}
.map-box svg { width: 22px; height: 22px; color: var(--brass); }
.contact-form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
main { padding-top: 0; }

.divider-line { border-top: 1px solid var(--paper-line); }

/* ============================================================
   PIPELINE — connected step-flow (replaces flat 3-card offers)
   ============================================================ */
.pipeline { position: relative; display: grid; gap: 0; }
.pipeline--5 { grid-template-columns: repeat(5, 1fr); }
.pipeline--4 { grid-template-columns: repeat(4, 1fr); }
.pipeline::before {
  content: "";
  position: absolute;
  top: 27px; left: 27px; right: 27px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass) 8%, var(--brass) 92%, transparent);
  z-index: 0;
}
.pipeline-step { position: relative; z-index: 1; padding-right: 18px; }
.pipeline-node {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--brass);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pipeline-step:hover .pipeline-node { transform: translateY(-4px) scale(1.06); box-shadow: var(--shadow-glow); }
.pipeline-step h4 { margin-top: 18px; font-size: 15.5px; }
.pipeline-step p { margin-top: 6px; font-size: 13px; color: var(--text-onlight-mute); max-width: 210px; line-height: 1.55; }

.pipeline--dark .pipeline-node { background: var(--navy-soft); box-shadow: none; }
.pipeline--dark .pipeline-step h4 { color: var(--text-ondark); }
.pipeline--dark .pipeline-step p { color: var(--text-ondark-mute); }
.pipeline--dark::before { background: linear-gradient(90deg, transparent, var(--brass) 8%, var(--brass) 92%, transparent); opacity: 0.6; }

@media (max-width: 900px) {
  .pipeline--5, .pipeline--4 { grid-template-columns: 1fr; gap: 30px; }
  .pipeline::before { display: none; }
  .pipeline-step { padding-right: 0; padding-left: 70px; min-height: 54px; }
  .pipeline-node { position: absolute; left: 0; top: 0; }
  .pipeline-step p { max-width: none; }
}

/* ============================================================
   TICK — small circular checkmark badge, used across lists
   ============================================================ */
.tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brass-dim);
  color: var(--brass);
  flex: none;
}
.tick svg { width: 11px; height: 11px; }
.tick--dark { background: rgba(255,143,66,0.18); }

/* ============================================================
   INDUSTRIES GRID (website development page)
   ============================================================ */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.industry-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 14.5px; font-weight: 600; color: var(--text-onlight);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.industry-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: transparent; }
.industry-chip-icon {
  width: 34px; height: 34px; flex: none;
  border-radius: 9px;
  background: var(--brass-dim);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
}
.industry-chip-icon svg { width: 17px; height: 17px; }
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card--light {
  background: var(--paper);
  border: 1px solid var(--paper-line);
}
.testimonial-card--light p { color: var(--text-onlight); }
.testimonial-card--light .testimonial-name { color: var(--text-onlight); }
.testimonial-card--light .testimonial-role { color: var(--text-onlight-mute); }
.testimonial-card--light .testimonial-avatar { background: var(--brass-dim); color: var(--brass); }

/* ============================================================
   LIVE BADGE — subtle pulse, respects reduced motion
   ============================================================ */
.live-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.03em;
  color: var(--text-ondark-mute);
  margin-bottom: 20px;
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--navy-line-strong);
  border-radius: 30px;
  width: fit-content;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #34D399; position: relative; flex: none; }
.live-dot::after {
  content: "";
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1.5px solid #34D399;
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(0.5); opacity: 0.9; } 100% { transform: scale(2.1); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .live-dot::after { animation: none; opacity: 0.5; } }
.text-center { text-align: center; }

/* ============================================================
   COMPACT PAGE HEADER (About / Blog / Pricing / Contact)
   ============================================================ */
.page-header {
  padding: 156px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(560px 340px at 90% 0%, rgba(200,155,74,0.14), transparent 60%);
  pointer-events: none;
}
.page-header-inner { position: relative; max-width: 640px; }
.page-header h1 {
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--text-ondark);
  margin-top: 14px;
}
.page-header p {
  margin-top: 16px;
  font-size: 16.5px;
  color: var(--text-ondark-mute);
}

.blog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.blog-grid-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.blog-sidebar { position: sticky; top: 110px; display: grid; gap: 30px; }
.blog-sidebar-block h5 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-onlight-mute); margin-bottom: 14px;
}
.blog-search {
  display: flex; align-items: center; gap: 9px;
  border: 1px solid var(--paper-line); border-radius: var(--radius-sm);
  padding: 11px 13px; background: var(--white);
}
.blog-search svg { width: 15px; height: 15px; color: var(--text-onlight-mute); flex: none; }
.blog-search input { border: none; outline: none; font-size: 13.5px; width: 100%; background: transparent; }
.blog-cat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 600; color: var(--text-onlight-mute);
  cursor: pointer; transition: background 0.15s ease, color 0.15s ease;
}
.blog-cat-item:hover { background: var(--paper-dim); color: var(--text-onlight); }
.blog-cat-item.is-active { background: var(--navy); color: var(--white); }
.blog-cat-count { font-family: var(--font-mono); font-size: 11px; opacity: 0.7; }
.blog-latest-item { display: block; padding: 10px 0; border-bottom: 1px solid var(--paper-line); cursor: pointer; }
.blog-latest-item:last-child { border-bottom: none; }
.blog-latest-item h6 { font-size: 13px; font-weight: 600; color: var(--text-onlight); line-height: 1.4; }
.blog-latest-item span { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-onlight-mute); }
.blog-empty { grid-column: 1/-1; text-align: center; padding: 50px 20px; color: var(--text-onlight-mute); font-size: 14.5px; }

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-grid-full { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .svc-banner-grid, .about-story-grid, .contact-grid, .lead-split { grid-template-columns: 1fr; }
  .dial-wrap { margin-top: 8px; max-width: 380px; margin-left: auto; margin-right: auto; }
  .grid-6, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid-full { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .process-row { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .process-step:nth-child(2)::after { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3) { border-left: none; }
  .stat-cell { border-bottom: 1px solid var(--navy-line); padding-bottom: 22px; }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta .btn span.long { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 132px 0 56px; }
  .page-header { padding: 128px 0 48px; }
  .svc-banner { padding: 128px 0 56px; }
  .grid-6, .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .blog-grid-full { grid-template-columns: 1fr; }
  .include-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .process-step::after { display: none !important; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* mobile nav panel */
.mobile-panel {
  display: none;
  position: fixed;
  inset: 92px 0 0 0;
  z-index: 480;
  background: var(--white);
  overflow-y: auto;
  padding: 8px 28px 40px;
}
.mobile-panel.is-open { display: block; }
.mobile-link {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--paper-line);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-onlight);
}
.mobile-sub { padding-left: 16px; }
.mobile-sub .mobile-link { font-size: 14.5px; color: var(--text-onlight-mute); padding: 13px 4px; }
.mobile-panel .btn { margin-top: 22px; }

/* ============================================================
   PROMO MODAL — Home page popup
   ============================================================ */
.promo-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 900;
  background: rgba(2,13,30,0.72);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 20px;
  animation: promoFade 0.25s ease;
}
.promo-modal-overlay.is-open { display: flex; }
@keyframes promoFade { from { opacity: 0; } to { opacity: 1; } }
.promo-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 40px 36px 32px;
  box-shadow: var(--shadow-pop);
  animation: promoPop 0.3s cubic-bezier(.2,.8,.2,1);
}
@keyframes promoPop { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) { .promo-modal, .promo-modal-overlay { animation: none; } }
.promo-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--paper-line);
  background: var(--white); color: var(--text-onlight-mute);
  display: flex; align-items: center; justify-content: center;
}
.promo-modal-close svg { width: 15px; height: 15px; }
.promo-modal-close:hover { background: var(--paper); color: var(--text-onlight); }
.promo-modal-head { text-align: center; max-width: 420px; margin: 0 auto; }
.promo-modal-head h3 { font-size: 23px; margin-top: 12px; color: var(--text-onlight); }
.promo-modal-head p { font-size: 14px; color: var(--text-onlight-mute); margin-top: 8px; }
.promo-modal-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.promo-card {
  border: 1px solid var(--paper-line); border-radius: var(--radius-md);
  padding: 22px 18px; text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.promo-card-icon {
  width: 42px; height: 42px; margin: 0 auto 12px;
  border-radius: 10px; background: var(--brass-dim); color: var(--brass);
  display: flex; align-items: center; justify-content: center;
}
.promo-card-icon svg { width: 20px; height: 20px; }
.promo-card h4 { font-size: 15px; }
.promo-card-price { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--navy); margin: 8px 0 14px; }
.promo-modal-note { text-align: center; font-size: 11.5px; color: var(--text-onlight-mute); margin-top: 20px; }
@media (max-width: 520px) {
  .promo-modal { padding: 32px 22px 26px; }
  .promo-modal-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 700;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.15);
  animation: whatsappPulse 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 10px 28px rgba(37,211,102,0.55), 0 0 0 10px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-float { animation: none; } }
@media (max-width: 600px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ============================================================
   BLOG ARTICLE PAGES
============================================================ */
.blog-back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.blog-back-link:hover { color: #fff; }

.blog-article h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 12px;
}
.blog-article h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 26px 0 8px;
}
.blog-article p {
  font-size: 16px;
  color: #2A3550;
  margin: 0 0 16px;
  line-height: 1.7;
}
.blog-article .lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-dark);
  background: #fff;
  border-left: 4px solid var(--brass);
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 32px;
}