/* =========================================================
   ePayment Services — Stylesheet
   Editorial commercial · Navy + Yellow · Geist + Fraunces
   ========================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  --brand-navy:    #0C3265;
  --brand-yellow:  #FCCE3B;
  --brand-navy-2:  oklch(0.28 0.10 258);
  --brand-navy-3:  oklch(0.20 0.08 258);
  --brand-navy-4:  oklch(0.14 0.06 258);

  --ink:        var(--brand-navy);
  --ink-soft:   oklch(0.42 0.07 258);
  --ink-muted:  oklch(0.58 0.04 258);
  --line:       oklch(0.88 0.015 258);
  --line-soft:  oklch(0.94 0.01 258);
  --bg:         oklch(0.985 0.005 80);
  --bg-elev:    oklch(1 0 0);
  --bg-warm:    oklch(0.965 0.012 80);
  --accent:     var(--brand-yellow);
  --accent-soft:oklch(0.96 0.06 89);
  --success:    oklch(0.68 0.13 150);

  --font-sans:    "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono:    "Geist Mono", "SF Mono", ui-monospace, monospace;
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;

  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 72px;
  --s-9: 112px; --s-10: 160px;

  --r-sm: 6px;  --r-md: 10px; --r-lg: 18px; --r-xl: 28px; --r-pill: 999px;

  --container: 1240px;
  --gutter: 32px;

  --shadow-card: 0 1px 2px oklch(0.20 0.08 258 / 0.04), 0 8px 28px -12px oklch(0.20 0.08 258 / 0.10);
  --shadow-lift: 0 4px 8px oklch(0.20 0.08 258 / 0.06), 0 24px 48px -16px oklch(0.20 0.08 258 / 0.18);
}

/* ---------- 2. Reset + Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, p, ol, ul, dl { margin: 0; }

h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 6vw, 84px); line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.08; letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 1.8vw, 24px); line-height: 1.25; }
h4 { font-size: 16px; line-height: 1.4; }

p { color: var(--ink-soft); text-wrap: pretty; }

.accent-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  position: relative;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- 3. Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: var(--s-5);
}
.brand { display: inline-flex; align-items: center; gap: var(--s-3); width: max-content; }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.brand-logo--footer {
  height: 60px;
  opacity: 0.95;
  mix-blend-mode: normal;
}
.site-footer .brand { display: inline-block; }
.nav-links {
  display: flex;
  gap: var(--s-6);
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.18s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--brand-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.nav-cta:hover {
  background: var(--brand-navy-3);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px var(--brand-navy);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  padding: var(--s-4) var(--gutter) var(--s-5);
}
.mobile-nav ul { list-style: none; padding: 0; display: grid; gap: var(--s-1); }
.mobile-nav a {
  display: block;
  padding: var(--s-3) 0;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a.mobile-cta {
  margin-top: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  text-align: center;
  border-bottom: 0;
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ---------- 4. Hero ---------- */
.hero {
  padding: var(--s-9) 0 var(--s-8);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(900px 600px at 110% -10%, oklch(0.92 0.06 89 / 0.55), transparent 60%),
    radial-gradient(700px 500px at -10% 80%, oklch(0.85 0.08 258 / 0.18), transparent 60%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, oklch(0.32 0.10 258 / 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.32 0.10 258 / 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 40% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 40% 30%, black 0%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--s-8);
  align-items: center;
}
.hero-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 16px 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
  box-shadow: 0 4px 14px -6px oklch(0.20 0.08 258 / 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hero-cta-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 3px oklch(0.86 0.16 89 / 0.35);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px oklch(0.86 0.16 89 / 0.35); }
  50%      { box-shadow: 0 0 0 6px oklch(0.86 0.16 89 / 0.15); }
}
.hero-cta-badge .arrow {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--brand-navy);
  transition: transform 0.2s ease;
}
.hero-cta-badge:hover {
  transform: translateY(-1px);
  border-color: var(--brand-navy);
  box-shadow: 0 8px 22px -8px oklch(0.20 0.08 258 / 0.25);
}
.hero-cta-badge:hover .arrow { transform: translateX(3px); }

.hero h1 { margin-top: 20px; }
.hero h1 .accent-serif {
  color: var(--brand-navy);
}
.hero h1 .accent-serif::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 14px;
  background: var(--brand-yellow);
  z-index: -1;
  opacity: 0.55;
  border-radius: 2px;
}
.hero-lede {
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 48ch;
  margin-top: var(--s-5);
}
.hero-actions {
  margin-top: var(--s-6);
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: transform 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--brand-navy-3); transform: translateY(-1px); box-shadow: 0 10px 24px -10px var(--brand-navy); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-warm); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-trust {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.trust-item span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
}
.hero-image {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(105%) contrast(102%);
}
.hero-image-frame {
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--r-xl) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.hero-card {
  position: absolute;
  left: -32px;
  bottom: -28px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-lift);
  display: grid;
  gap: var(--s-3);
}
.hero-card-row { display: flex; align-items: center; gap: var(--s-2); }
.hero-card-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px oklch(0.68 0.13 150 / 0.18);
}
.hero-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-card-value {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.hero-card-bar {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 44px;
}
.hero-card-bar .bar {
  flex: 1;
  background: linear-gradient(to top, var(--brand-yellow), oklch(0.86 0.18 89));
  border-radius: 3px;
  min-height: 6px;
}
.hero-card-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  padding-top: var(--s-2);
  border-top: 1px solid var(--line-soft);
}
.hero-card-foot span:last-child { color: var(--success); font-weight: 500; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero-visual { aspect-ratio: 4 / 3; max-height: 480px; }
  .hero-card { left: auto; right: 0; bottom: -20px; }
  .hero { padding: var(--s-8) 0 var(--s-9); }
}
@media (max-width: 600px) {
  .hero-trust { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .hero-trust .trust-item:last-child { grid-column: 1 / -1; }
  .hero-card { width: 230px; padding: var(--s-4); }
  .hero-card-value { font-size: 36px; }
}

/* ---------- 5. Ticker ---------- */
.ticker {
  background: var(--brand-navy);
  color: oklch(0.96 0.01 258);
  border-top: 1px solid var(--brand-navy-3);
  border-bottom: 1px solid var(--brand-navy-3);
  overflow: hidden;
  padding: var(--s-5) 0;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--brand-navy), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--brand-navy), transparent);
}
.ticker-track {
  display: flex;
  gap: var(--s-7);
  animation: ticker-slide 40s linear infinite;
  width: max-content;
}
.ticker-group {
  display: flex;
  gap: var(--s-7);
  align-items: center;
  padding-right: var(--s-7);
}
.ticker-group span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-group span:nth-child(even) { color: var(--brand-yellow); font-size: 8px; }
@keyframes ticker-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- 6. Section scaffolding ---------- */
section.block { padding: var(--s-9) 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: var(--s-8);
  align-items: end;
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--s-7);
}
.section-head h2 { margin-top: 16px; }
.section-head .lead { font-size: 18px; max-width: 56ch; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: var(--s-4); }
  section.block { padding: var(--s-8) 0; }
}

/* ---------- 7. About / Vision / Mission ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--s-8);
}
.about-text p + p { margin-top: var(--s-4); }
.about-text strong { color: var(--ink); font-weight: 500; }
.about-aside {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  background-image:
    radial-gradient(circle at 100% 0%, oklch(0.85 0.16 89 / 0.18), transparent 40%),
    var(--bg-elev);
  position: relative;
  overflow: hidden;
}
.about-aside::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid oklch(0.32 0.10 258 / 0.10);
  box-shadow:
    0 0 0 16px oklch(0.32 0.10 258 / 0.04),
    0 0 0 36px oklch(0.32 0.10 258 / 0.03);
  pointer-events: none;
}
.vm-stack { display: grid; gap: var(--s-7); }
.vm-item h3 {
  display: flex; align-items: center; gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.vm-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-navy);
  background: var(--brand-yellow);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { padding: var(--s-5); }
}

/* ---------- 8. Services ---------- */
.services {
  background: var(--brand-navy);
  color: oklch(0.96 0.01 258);
  position: relative;
  isolation: isolate;
}
.services h2, .services .eyebrow, .services p { color: inherit; }
.services .eyebrow { color: var(--brand-yellow); }
.services .eyebrow::before { background: var(--brand-yellow); }
.services .section-head { border-bottom-color: oklch(0.42 0.10 258); }
.services .lead { color: oklch(0.86 0.02 258); }
.services h2 .accent-serif { color: var(--brand-yellow); }

.services::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(oklch(0.85 0.16 89 / 0.10) 1.5px, transparent 1.6px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.services > .container { position: relative; z-index: 1; }
.services::after {
  content: "";
  position: absolute;
  right: -200px; bottom: -240px;
  width: 640px; height: 640px;
  border-radius: 50%;
  border: 80px solid oklch(0.85 0.16 89 / 0.06);
  border-right-color: transparent;
  border-top-color: transparent;
  transform: rotate(-30deg);
  z-index: 0;
  pointer-events: none;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: oklch(0.42 0.10 258);
  border: 1px solid oklch(0.42 0.10 258);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.svc {
  background: var(--brand-navy);
  padding: var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 260px;
  transition: background 0.2s;
  position: relative;
}
.svc:hover { background: var(--brand-navy-3); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-yellow);
  letter-spacing: 0.04em;
}
.svc h3 { color: oklch(0.98 0.005 258); font-size: 18px; line-height: 1.25; }
.svc p { font-size: 13.5px; color: oklch(0.82 0.02 258); line-height: 1.5; }
.svc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-yellow), oklch(0.82 0.18 80));
  display: grid;
  place-items: center;
  color: var(--brand-navy);
  box-shadow: 0 8px 20px -10px oklch(0.86 0.18 89 / 0.6);
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-tag {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  font-weight: 500;
}
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- 9. Why Us — Manifesto rows ---------- */
.why { background: var(--bg-warm); }
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.why-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(0, 230px);
  gap: var(--s-7);
  align-items: center;
  padding: var(--s-7) var(--s-5);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.25s ease, padding-left 0.25s ease;
}
.why-row:hover {
  background: linear-gradient(to right, var(--bg-elev), transparent 80%);
  padding-left: var(--s-7);
}
.why-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brand-yellow);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.why-row:hover::before { transform: scaleY(1); }
.why-row--accent { background: var(--brand-yellow); border-bottom-color: var(--brand-yellow); }
.why-row--accent:hover {
  background: var(--brand-yellow);
  padding-left: var(--s-5);
}
.why-row--accent::before { background: var(--brand-navy); }
.why-row--accent h3, .why-row--accent p, .why-row--accent .why-row-num,
.why-row--accent .stat-big, .why-row--accent .stat-label { color: var(--brand-navy); }
.why-row--accent .stat-label { opacity: 0.7; }

.why-row-num {
  font-family: var(--font-mono);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--ink-muted);
  line-height: 1;
}
.why-row-body { display: grid; gap: var(--s-2); }
.why-row-body h3 { font-size: clamp(22px, 1.8vw, 28px); }
.why-row-body p { font-size: 15px; max-width: 60ch; }
.why-row-stat {
  display: grid;
  gap: 4px;
  justify-self: end;
  text-align: right;
  padding-left: var(--s-6);
  border-left: 1px solid var(--line);
}
.why-row--accent .why-row-stat { border-left-color: oklch(0.32 0.10 258 / 0.25); }
.stat-big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(38px, 3.6vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--brand-navy);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .why-row {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: var(--s-5);
    padding: var(--s-5) var(--s-2);
  }
  .why-row-stat {
    grid-column: 2 / 3;
    justify-self: start;
    text-align: left;
    padding-left: 0;
    border-left: 0;
    padding-top: var(--s-3);
    border-top: 1px solid var(--line);
    width: 100%;
  }
  .why-row--accent .why-row-stat { border-top-color: oklch(0.32 0.10 258 / 0.25); }
}

/* ---------- 10. Process ---------- */
.process { background: var(--bg); }
.process-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  counter-reset: step;
}
.step {
  display: grid;
  gap: var(--s-3);
  position: relative;
}
.step-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-2);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-navy);
  background: var(--brand-yellow);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.step-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--line), transparent);
}
.step h3 { font-size: 19px; }
.step p { font-size: 14px; }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}
@media (max-width: 540px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ---------- 11. Projects (NEW CARD STYLE) ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--ink-muted);
}
.project-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--brand-navy);
}
.project-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-media img { transform: scale(1.04); }
.project-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0.20 0.08 258 / 0.55), transparent 50%);
  pointer-events: none;
}
.project-sector {
  position: absolute;
  top: var(--s-4); left: var(--s-4);
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  box-shadow: 0 6px 18px -8px oklch(0.20 0.08 258 / 0.4);
}
.project-sector::before {
  content: "SECTOR";
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--brand-navy);
  opacity: 0.6;
  padding-right: var(--s-2);
  border-right: 1px solid oklch(0.32 0.10 258 / 0.3);
}
.project-body {
  padding: var(--s-6) var(--s-5);
  display: grid;
  gap: var(--s-3);
}
.project-body h3 { font-size: 22px; }
.project-body p { font-size: 14px; }
.project-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.status-active { background: oklch(0.94 0.06 150 / 0.5); color: oklch(0.40 0.12 150); }
.status-done   { background: oklch(0.94 0.02 258); color: var(--ink-muted); }
.project-type { color: var(--ink-muted); }

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* ---------- 12. CTA Band ---------- */
.cta-band {
  background: var(--brand-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: var(--s-8) 0;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 350px at 90% 0%, oklch(0.85 0.16 89 / 0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, oklch(0.42 0.10 258 / 0.6), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid oklch(0.85 0.16 89 / 0.18);
  box-shadow:
    0 0 0 30px oklch(0.85 0.16 89 / 0.04),
    0 0 0 60px oklch(0.85 0.16 89 / 0.02);
  z-index: -1;
  pointer-events: none;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: center;
}
.cta-band-text .eyebrow { color: var(--brand-yellow); }
.cta-band-text .eyebrow::before { background: var(--brand-yellow); }
.cta-band-text h2 { color: #fff; margin-top: var(--s-4); }
.cta-band-text h2 .accent-serif { color: var(--brand-yellow); }
.cta-band-text p {
  color: oklch(0.86 0.02 258);
  font-size: 17px;
  margin-top: var(--s-4);
  max-width: 50ch;
}
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: flex-start;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 18px 28px;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid var(--brand-yellow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px var(--brand-yellow);
}
.btn-cta-primary .arrow { transition: transform 0.2s; }
.btn-cta-primary:hover .arrow { transform: translateX(4px); }
.btn-link {
  font-size: 14px;
  color: oklch(0.86 0.02 258);
  border-bottom: 1px solid oklch(0.42 0.10 258);
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}
.btn-link:hover { color: var(--brand-yellow); border-color: var(--brand-yellow); }
@media (max-width: 900px) {
  .cta-band-inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .cta-band { padding: var(--s-7) 0; }
}

/* ---------- 13. Contact ---------- */
.contact {
  background: var(--brand-navy);
  color: oklch(0.96 0.01 258);
  position: relative;
  isolation: isolate;
}
.contact h2, .contact p, .contact .eyebrow { color: inherit; }
.contact .eyebrow { color: var(--brand-yellow); }
.contact .eyebrow::before { background: var(--brand-yellow); }
.contact .section-head { border-bottom-color: oklch(0.42 0.10 258); }
.contact .lead { color: oklch(0.86 0.02 258); }
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 90% 10%, oklch(0.85 0.16 89 / 0.12), transparent 70%),
    radial-gradient(500px 400px at 0% 100%, oklch(0.42 0.10 258 / 0.5), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.contact > .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--s-8);
  align-items: start;
}
.contact-card {
  border: 1px solid oklch(0.42 0.10 258);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  background: var(--brand-navy-3);
}
.contact-card .row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-top: 1px solid oklch(0.42 0.10 258);
}
.contact-card .row:first-of-type { border-top: 0; padding-top: 0; }
.contact-card dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}
.contact-card dd { margin: 0; font-size: 15px; }
.contact-card dd a:hover { color: var(--brand-yellow); }

.cta-form {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.cta-form > div { display: grid; gap: 8px; }
.cta-form label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}
.cta-form input, .cta-form textarea {
  width: 100%;
  background: var(--brand-navy-3);
  border: 1px solid oklch(0.42 0.10 258);
  color: inherit;
  font: inherit;
  padding: 14px 16px;
  border-radius: var(--r-md);
  outline: none;
  transition: border-color 0.18s;
}
.cta-form input:focus, .cta-form textarea:focus { border-color: var(--brand-yellow); }
.cta-form textarea { min-height: 120px; resize: vertical; }
.cta-form button {
  background: var(--brand-yellow);
  color: var(--brand-navy);
  border: 0;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  letter-spacing: -0.01em;
  justify-self: start;
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s;
}
.cta-form button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -10px var(--brand-yellow);
}
.cta-form button:disabled { opacity: 0.7; cursor: default; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: var(--s-5); }
  .contact-card .row { grid-template-columns: 1fr; gap: var(--s-1); }
}

/* ---------- 14. Footer ---------- */
.site-footer {
  border-top: 1px solid oklch(0.42 0.10 258);
  background: var(--brand-navy-4);
  color: oklch(0.78 0.03 258);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding: var(--s-8) 0 var(--s-6);
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: var(--s-4);
  font-weight: 400;
}
.footer-grid ul {
  list-style: none; padding: 0;
  display: grid; gap: var(--s-2);
}
.footer-grid a:hover { color: var(--brand-yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-5) 0;
  border-top: 1px solid oklch(0.42 0.10 258);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-brand {
  color: oklch(0.92 0.01 260);
  font-family: var(--font-sans);
  text-transform: none;
  font-size: 14px;
  letter-spacing: -0.01em;
  max-width: 32ch;
  margin-top: var(--s-3);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--s-2); align-items: flex-start; }
}

/* ---------- 15. Empresa top wash ---------- */
#empresa { position: relative; }
#empresa::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-yellow), transparent);
  opacity: 0.5;
}
