:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
  --bg-dark: #0d1b2a;
  --bg-darker: #07111c;
  --ink: #0d1b2a;
  --ink-2: #2a3340;
  --ink-3: #5a6573;
  --ink-mute: #8c95a3;
  --rule: #e6e6e2;
  --rule-strong: #d4d4cf;
  --accent: #c8553d;
  --max: 1240px;
  --gutter: 32px;
  --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink-2);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'cv11', 'ss01';
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; }

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn span {
  transition: transform 0.18s;
  display: inline-block;
}
.btn:hover span { transform: translateX(3px); }

.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover { background: #1a2a3d; border-color: #1a2a3d; }

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-light:hover { background: var(--bg-alt); border-color: var(--bg-alt); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 18px 30px; font-size: 16px; }

/* ─── NAV (sits over hero, transparent) ───────── */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.nav-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1); /* white logo over video */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.mob-tog {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.mob-tog span {
  display: block;
  height: 1.5px;
  background: #fff;
  transition: all 0.25s;
}

/* ─── HERO (video bg) ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-darker);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 17, 28, 0.55) 0%, rgba(7, 17, 28, 0.35) 35%, rgba(7, 17, 28, 0.7) 75%, rgba(7, 17, 28, 0.92) 100%);
}
.hero-in {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
}
.hero .kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.04);
}
.hero h1 {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 28px;
  max-width: 16ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 40px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Trust strip — sits at bottom of hero, semi-transparent */
.hero-trust {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  background: rgba(7, 17, 28, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trust-in {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.trust-list {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.flag {
  width: 24px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ─── STATS (now 4 columns, dark bg with red plus accent) ── */
.stats {
  background: var(--bg-dark);
  color: #fff;
  padding: 88px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  padding-left: 24px;
}
.stat:first-child { border-left: 2px solid var(--accent); }
.stat-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}
.stat-num-sm {
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  color: var(--accent);
  padding-top: 0.5em;
}
.stat-plus {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--accent);
  margin-left: 4px;
  margin-top: 0.15em;
}
.stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── SECTION HEAD ─────────────────────── */
.sec-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}
.sec-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 600px;
}

/* ─── TESTIMONIALS ────────────────────────── */
.testimonials {
  background: var(--bg-alt);
  padding: 112px 0;
  border-bottom: 1px solid var(--rule);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.quote {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.15s, transform 0.15s;
}
.quote:hover {
  border-color: var(--rule-strong);
  transform: translateY(-2px);
}
.quote::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-size: 64px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
  font-family: Georgia, serif;
}
.quote blockquote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 24px 0 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.quote figcaption strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.quote figcaption span {
  font-size: 13px;
  color: var(--ink-3);
}

/* ─── SERVICES ────────────────────────────── */
.services {
  background: var(--bg-alt);
  padding: 112px 0;
  border-bottom: 1px solid var(--rule);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.15s;
}
.svc-card:hover { background: var(--bg-alt); }
.svc-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 24px;
}
.svc-card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
}

/* ─── APPROACH ────────────────────────────── */
.approach {
  background: var(--bg);
  padding: 112px 0;
  border-bottom: 1px solid var(--rule);
}
.ap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}
.ap-item {
  padding-top: 20px;
  border-top: 2px solid var(--ink);
  max-width: 480px;
}
.ap-item h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.ap-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
}

/* ─── MARKETS ─────────────────────────────── */
.markets {
  background: var(--bg);
  padding: 112px 0;
  border-bottom: 1px solid var(--rule);
}
.mkt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mkt {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.15s;
}
.mkt:hover { border-color: var(--rule-strong); }
.mkt-flag {
  width: 48px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
  margin-bottom: 24px;
}
.mkt-flag svg { width: 100%; height: 100%; }
.mkt-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.mkt h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.mkt p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 460px;
}

/* ─── CLOSER ──────────────────────────────── */
.closer {
  background: var(--bg);
  padding: 112px 0 96px;
  text-align: center;
}
.closer .eyebrow { margin-bottom: 20px; }
.closer-title {
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}
.closer-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 560px;
  margin: 0 auto 36px;
}
.closer-meta {
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ─── FOOTER ──────────────────────────────── */
.ftr {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 28px;
}
.ftr-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ftr-brand img {
  height: 22px;
  margin-bottom: 20px;
}
.ftr-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 360px;
}
.ftr-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.ftr-cols h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.ftr-cols ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ftr-cols a, .ftr-cols li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.ftr-cols a:hover { color: #fff; }
.ftr-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
}
.ftr-btm p { color: rgba(255, 255, 255, 0.4); }
.ftr-legal { display: flex; gap: 24px; }
.ftr-legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}
.ftr-legal a:hover { color: #fff; }

/* ─── MOBILE MENU ─────────────────────────── */
.mob-menu {
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 49;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter);
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.mob-menu a {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: -0.015em;
}
body.menu-open .mob-menu {
  opacity: 1;
  pointer-events: all;
}
body.menu-open { overflow: hidden; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  :root { --gutter: 20px; }
  .nav-links { display: none; }
  .nav .btn { display: none; }
  .mob-tog { display: flex; }
  .hero-in { padding: 120px 0 60px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .quote-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .ap-grid { grid-template-columns: 1fr; gap: 24px; }
  .mkt-grid { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr; gap: 48px; }
  .ftr-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ftr-btm { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonials, .services, .approach, .markets, .closer { padding: 80px 0; }
  .stats { padding: 64px 0; }
  .trust-list { gap: 14px 20px; }
  .trust-list li { font-size: 13px; }
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
  .ftr-cols { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; max-width: 100%; }
}

/* ─── REDUCED MOTION & MOBILE: hide video, show poster ── */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero { background: var(--bg-darker) url('../video/hero-poster.jpg') center/cover; }
}
@media (max-width: 720px) {
  .hero-video { display: none; }
  .hero {
    background: var(--bg-darker) url('../video/hero-poster-mobile.jpg') center/cover;
    min-height: auto;
  }
}

/* ─── CONTACT FORM ──────────────────────── */
.closer { text-align: left; padding-top: 96px; padding-bottom: 96px; }
.closer-head { text-align: center; margin: 0 auto 56px; }
.closer-head .closer-title { margin-bottom: 16px; }
.closer-head .sec-lede { margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form .hp { position: absolute; left: -9999px; top: -9999px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.06);
}
.field textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { align-self: flex-start; }

.form-success {
  padding: 56px 32px;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.form-success h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-success p { color: var(--ink-3); font-size: 15px; }

.contact-meta-col {}
.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.contact-card h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}
.contact-list a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.contact-list a:hover { border-bottom-color: var(--ink); }
.contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ─── PRICING ────────────────────────────── */
.pricing {
  background: var(--bg-alt);
  padding: 112px 0;
  border-bottom: 1px solid var(--rule);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: var(--rule-strong);
  transform: translateY(-2px);
}
.price-card-feat {
  border-color: var(--ink);
  border-width: 2px;
  padding: 35px 31px;
  position: relative;
}
.price-card-feat::before {
  content: 'Most common';
  position: absolute;
  top: -10px;
  left: 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
}
.price-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.price-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.price-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
}

/* ─── PUBLISHERS PANEL ───────────────────── */
.publishers {
  background: var(--bg);
  padding: 80px 0;
}
.pub-panel {
  background: var(--bg-alt);
  color: var(--ink);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.pub-text .eyebrow {
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.pub-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.pub-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.pub-cta-line {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-top: 20px;
  margin-bottom: 0 !important;
}
.pub-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.pub-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pub-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}
.pub-point div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pub-point strong {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}
.pub-point span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ─── FORM SELECT (matches input styling) ── */
.field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a6573' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.06);
}

/* ─── RESPONSIVE: pricing + publisher panel ─ */
@media (max-width: 960px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-card-feat { order: -1; }
  .pub-panel {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 32px;
  }
  .pub-points { gap: 20px 16px; }
  .pricing, .publishers { padding: 64px 0; }
}
@media (max-width: 560px) {
  .pub-points { grid-template-columns: 1fr; }
  .pub-panel { padding: 40px 24px; }
}

/* ─── PUBLISHER PANEL — SLIM VARIANT ─────── */
.pub-panel.pub-panel-slim {
  grid-template-columns: 1fr;
  display: block;
  text-align: center;
  padding: 56px 48px;
  max-width: 720px;
  margin: 0 auto;
}
.pub-panel.pub-panel-slim::before {
  width: 100%;
  height: 4px;
  bottom: auto;
}
.pub-panel.pub-panel-slim .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ink-mute);
}
.pub-panel.pub-panel-slim h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 14px;
  color: var(--ink);
}
.pub-panel.pub-panel-slim p {
  font-size: 16px;
  color: var(--ink-3);
  margin-bottom: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 560px) {
  .pub-panel.pub-panel-slim { padding: 44px 28px; }
}

/* ─── PAGE HERO (sub-pages) ──────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.page-hero .container { max-width: 880px; }
.page-hero .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}
.page-hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 640px;
}
@media (max-width: 720px) {
  .page-hero { padding: 100px 0 60px; }
}

/* ─── NUMBERED PROCESS CARDS ─────────────── */
.ap-grid-numbered .ap-item { position: relative; padding-top: 40px; }
.ap-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ─── WHO-LIST (inside contact-card) ─────── */
.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.who-list li {
  font-size: 14px;
  color: var(--ink-3);
  padding-left: 22px;
  position: relative;
}
.who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ─── FORM ERROR / SUCCESS BLOCKS ─────────── */
.form-error {
  background: #fef0ed;
  border: 1px solid rgba(200, 85, 61, 0.25);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #9c3a23;
}
.form-success {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-left: 3px solid #2d8b56;
  border-radius: var(--radius);
  padding: 32px 32px;
  text-align: left;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 15px;
  color: var(--ink-3);
}

/* ─── SERVICES DETAIL (large per-service blocks) ─── */
.services-detail {
  padding: 96px 0;
  background: var(--bg);
}
.svc-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.svc-detail:last-child { border-bottom: 1px solid var(--rule); }
.svc-detail-head {
  position: sticky;
  top: 100px;
}
.svc-detail-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.svc-detail h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.svc-detail-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.svc-detail-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-detail-body li {
  font-size: 15px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
}
.svc-detail-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

@media (max-width: 880px) {
  .svc-detail {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .svc-detail-head { position: static; }
  .services-detail { padding: 64px 0; }
}

/* ─── AP-LIST (bullets inside ap-item cards on /who-we-help/) ─── */
.ap-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ap-list li {
  font-size: 13px;
  color: var(--ink-3);
  padding-left: 18px;
  position: relative;
}
.ap-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ─── CAREERS card ────────────────────────── */
.careers-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
}
.careers-card h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.careers-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.careers-card .btn { margin-top: 12px; }

/* ─── LEGAL pages (privacy / legal-notice) ─── */
.legal-section {
  padding: 64px 0 96px;
  background: var(--bg);
}
.legal-body {
  max-width: 740px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
}
.legal-body h2 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 40px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  margin-bottom: 14px;
}
.legal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-body li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  color: var(--ink-2);
}
.legal-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.legal-body strong {
  color: var(--ink);
  font-weight: 600;
}

/* ─── SECTION CTA (centered button below grids) ── */
.sec-cta {
  margin-top: 56px;
  text-align: center;
}
.sec-cta .btn { display: inline-flex; }
@media (max-width: 720px) {
  .sec-cta { margin-top: 36px; }
}

/* ─── TEAM SECTION (about page) ───────────── */
.team-section {
  padding: 96px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.team-section .sec-head {
  margin-bottom: 40px;
}
.team-panel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 48px 44px;
}
.team-panel p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.team-panel p:last-child {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--ink-3);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 720px) {
  .team-section { padding: 64px 0; }
  .team-panel { padding: 36px 28px; }
}

/* ─── NAV: non-home pages (dark text on white bg) ─── */
body:not(.home) .nav {
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
body:not(.home) .nav-links a {
  color: var(--ink-2);
}
body:not(.home) .nav-links a:hover,
body:not(.home) .nav-links a.on {
  color: var(--ink);
}
body:not(.home) .nav-links a.on {
  font-weight: 600;
}
body:not(.home) .mob-tog span {
  background: var(--ink);
}
body:not(.home) .nav .btn-light {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
body:not(.home) .nav .btn-light:hover {
  background: #1a2a3d;
  border-color: #1a2a3d;
}

/* Logo — invert on non-home so the dark logo shows on white nav */
body:not(.home) .nav a.logo img {
  /* Logo is already a dark PNG; no filter needed. Just ensure it's visible. */
  filter: none;
}

/* Mobile menu (overlay panel) on non-home pages: white bg, dark text */
body:not(.home) .mob-menu {
  background: #fff;
}
body:not(.home) .mob-menu a {
  color: var(--ink);
}

/* Page-hero on non-home pages — push content below the now-solid nav */
body:not(.home) .page-hero {
  padding-top: 160px;
}
@media (max-width: 720px) {
  body:not(.home) .page-hero { padding-top: 120px; }
}

/* ─── SERVICES DETAIL — sub-headings + stats list ─── */
.svc-detail-body .svc-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 24px;
  margin-bottom: 10px;
}
.svc-detail-body .svc-sub:first-of-type {
  margin-top: 16px;
}
.svc-detail-body strong {
  color: var(--ink);
  font-weight: 600;
}
.svc-stats-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-stats-list li {
  font-size: 15px;
  color: var(--ink-2);
  padding-left: 0;
  position: static;
}
.svc-stats-list li::before {
  display: none;
}
.svc-stats-list li strong {
  color: var(--accent);
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
  min-width: 64px;
}

/* ─── SVC-DETAIL — tighten internal rhythm ─── */
.svc-detail-body ul {
  margin-bottom: 0;
}
.svc-detail-body p + ul {
  margin-top: 0;
}
.svc-detail-body ul + .svc-sub {
  margin-top: 28px;
}
/* First subhead after the lede paragraph: smaller gap */
.svc-detail-body p + .svc-sub {
  margin-top: 18px;
}

/* ─── PRICING — list styling ─── */
.price-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-list li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.price-list li strong {
  color: var(--ink);
  font-weight: 600;
}
/* tighten label-to-heading spacing */
.price-card .price-label {
  margin-bottom: 8px;
}
/* extra top space on featured card so the auto-badge doesn't overlap label */
.price-card-feat .price-label {
  margin-top: 4px;
}
