/* GPM Agency design system — compiled, no runtime CSS generation */
:root {
  --navy: #0c141c;
  --navy-2: #111c26;
  --navy-3: #16232e;
  --navy-4: #1b2c38;
  --ink: #e8eef4;
  --muted: #93a4b3;
  --faint: rgba(255, 255, 255, 0.08);
  --line: rgba(52, 211, 153, 0.14);
  --green: #10b981;
  --green-2: #34d399;
  --green-3: #6ee7b7;
  --green-deep: #059669;
  --paper: #f4f7f8;
  --paper-2: #ffffff;
  --ink-dark: #0f1720;
  --muted-dark: #4b5c6b;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --font: "Outfit", system-ui, sans-serif;
  --ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 4.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--navy);
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green-2); }
button, input, select, textarea { font-family: inherit; }
:focus-visible {
  outline: 2px solid var(--green-2);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar — static HTML */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(12, 20, 28, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar.is-scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); }
.navbar .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.22));
}
.brand-name {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-name-a { color: #fff; }
.brand-name-b { color: var(--green-2); }

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.45rem 0.65rem;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active { color: #fff; }
.nav-cta {
  margin-left: 0.5rem;
  font-size: 0.8125rem !important;
  padding: 0.55rem 0.95rem !important;
}

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 0.25rem; }
.nav-dropdown > .nav-link::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: #152028;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.45rem;
  box-shadow: var(--shadow);
  z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}
.nav-dropdown-menu a:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.nav-dropdown-menu a small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 110;
}
.mobile-menu-overlay.is-open { display: block; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: var(--navy-2);
  z-index: 120;
  padding: 5rem 1.4rem 2rem;
  overflow: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-menu .btn {
  margin-top: 1rem;
  text-align: center;
  border-bottom: 0;
}

@media (min-width: 1100px) {
  .desktop-nav { display: flex; }
  .hamburger { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  padding: 0.85rem 1.35rem;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.28);
}
.btn-primary:hover { transform: translateY(-1px); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover { border-color: var(--green-2); color: var(--green-3); }
.btn-dark {
  background: var(--ink-dark);
  color: #fff;
}
.btn-dark:hover { color: #fff; background: #1a2732; }

/* Page offset */
.page { padding-top: var(--nav-h); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3.25rem;
  background: linear-gradient(125deg, #081616 0%, #0c1c22 45%, #0a1320 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52, 211, 153, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 211, 153, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -15%;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(55% 55% at 22% 42%, rgba(52, 211, 153, 0.24), transparent 70%),
    radial-gradient(50% 50% at 78% 58%, rgba(16, 185, 129, 0.2), transparent 70%),
    radial-gradient(42% 42% at 50% 12%, rgba(110, 231, 183, 0.16), transparent 70%),
    linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.09) 50%, transparent 60%);
  background-repeat: no-repeat;
  animation: heroGlowWaves 20s ease-in-out infinite alternate, heroLightRay 12s linear infinite;
  will-change: transform, background-position;
}
@keyframes heroGlowWaves {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-4%, 3%) scale(1.08); }
}
@keyframes heroLightRay {
  0% { background-position: 0 0, 0 0, 0 0, -60% 0; }
  100% { background-position: 0 0, 0 0, 0 0, 160% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--green-3);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 0.85rem 0.35rem 0.55rem;
  margin-bottom: 1.1rem;
}
.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.h1 {
  font-size: clamp(1.85rem, 4.4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 750;
  color: #fff;
  margin: 0 0 1rem;
  max-width: 18ch;
}
.h1 em { font-style: normal; color: var(--green-2); }
.lead {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  max-width: 38rem;
  margin: 0 0 1.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.15rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 1.25rem; }
.pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-3);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 6px;
  padding: 0.22rem 0.55rem;
}

.hero-visual {
  display: none;
  position: relative;
  padding: 1.5rem 1.25rem 3.5rem;
  animation: heroVisualFloat 6.5s ease-in-out infinite;
}
@keyframes heroVisualFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual { animation: none; }
}
.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 68%);
  pointer-events: none;
  animation: glowBreathe 7s ease-in-out infinite;
}
@keyframes glowBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow { animation: none; }
}
.dash {
  position: relative;
  z-index: 2;
  background: linear-gradient(148deg, rgba(14, 32, 27, 0.95), rgba(5, 16, 16, 0.98));
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}
.dash-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(52, 211, 153, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.dash-note {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
}
.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.dash-metric {
  text-align: center;
  padding: 0.7rem 0.4rem;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.1);
  border-radius: 10px;
}
.dash-metric b { display: block; color: var(--green-2); font-size: 0.95rem; }
.dash-metric span { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.mini-card {
  position: absolute;
  z-index: 3;
  background: #0d1a18;
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  font-size: 0.75rem;
}
.mini-card.a { top: 0; right: 0; }
.mini-card.b { bottom: 0.5rem; left: 0; }
.mini-card strong { display: block; color: #fff; font-size: 0.95rem; margin-top: 0.2rem; }

@media (min-width: 1024px) {
  .hero { padding: 4.5rem 0 4rem; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
  .hero-visual { display: block; }
}

/* Trust stats */
.trust-stats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #101f1c, #0e1a1a);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(52, 211, 153, 0.07);
}
.trust-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 60% 80% at 15% 0%, rgba(16, 185, 129, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 100%, rgba(52, 211, 153, 0.08), transparent 60%),
    radial-gradient(1px 1px at 10% 40%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(1px 1px at 30% 75%, rgba(255, 255, 255, 0.1), transparent 60%),
    radial-gradient(1px 1px at 55% 25%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(1px 1px at 75% 65%, rgba(255, 255, 255, 0.1), transparent 60%),
    radial-gradient(1px 1px at 92% 35%, rgba(255, 255, 255, 0.12), transparent 60%);
}
.trust-stats::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.55) 50%, transparent);
  background-size: 55% 100%;
  animation: trustShimmer 7s ease-in-out infinite;
}
@keyframes trustShimmer {
  0% { background-position: -60% 0; }
  100% { background-position: 160% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .trust-stats::after { animation: none; }
}
.trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.stat {
  text-align: center;
  padding: 1.6rem 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stat:nth-child(2n) { border-right: 0; }
.stat b {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat b i { font-style: normal; color: var(--green-2); }
.stat span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 800px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; }
  .stat:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, 0.05); }
  .stat:last-child { border-right: 0; }
}

/* Sections */
.sec { padding: 4.25rem 0; }
.sec-dark { background: var(--navy); }
.sec-soft { background: var(--navy-2); }
.sec-paper { background: var(--paper); color: var(--ink-dark); }
.sec-paper .h2, .sec-paper h2, .sec-paper h3 { color: var(--ink-dark); }
.sec-paper p, .sec-paper li { color: var(--muted-dark); }
.kicker {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}
.h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.8rem;
  color: #fff;
  font-weight: 750;
}
.sub {
  max-width: 40rem;
  color: var(--muted);
  margin: 0 0 2rem;
}
.sec-paper .sub { color: var(--muted-dark); }

.grid-2, .grid-3, .grid-4, .grid-8 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-8 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--navy-3);
  border: 1px solid var(--faint);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: rgba(52, 211, 153, 0.28); }
.card h3 { margin: 0 0 0.45rem; font-size: 1.05rem; color: #fff; }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.card .more {
  display: inline-flex;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-2);
}
.card-paper {
  background: #fff;
  border: 1px solid #e4ecee;
  color: var(--ink-dark);
}
.card-paper h3 { color: var(--ink-dark); }
.card-paper p { color: var(--muted-dark); }
.ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--green-2);
  font-weight: 800;
  font-size: 0.85rem;
}

/* Scorecard */
.scorecard {
  display: grid;
  gap: 0.55rem;
}
.score-row {
  display: grid;
  grid-template-columns: 1.4fr 2fr auto;
  gap: 0.75rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--faint);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
}
.score-row b { font-size: 0.85rem; color: #fff; }
.bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  border-radius: 99px;
}
.score-row span { font-size: 0.72rem; color: var(--muted); }
.sec-paper .score-row {
  background: #fff;
  border-color: #e4ecee;
}
.sec-paper .score-row b { color: var(--ink-dark); }
.sec-paper .bar { background: #e8eef0; }
.sec-paper .score-row span { color: var(--muted-dark); }

/* Process */
.steps {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--navy-3);
  border: 1px solid var(--faint);
  border-radius: 16px;
  padding: 1.2rem;
}
.step em {
  font-style: normal;
  color: var(--green-2);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.step h3 { margin: 0.4rem 0 0.35rem; color: #fff; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Split */
.split {
  display: grid;
  gap: 2.2rem;
  align-items: start;
}
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr 0.9fr; } }

/* FAQ */
.faq-item {
  background: var(--navy-3);
  border: 1px solid var(--faint);
  border-radius: 14px;
  margin-bottom: 0.55rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: #fff;
  font-weight: 650;
  text-align: left;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-q::after {
  content: "+";
  color: var(--green-2);
  font-size: 1.2rem;
  line-height: 1;
}
.faq-item.is-open { border-color: rgba(16, 185, 129, 0.35); }
.faq-item.is-open .faq-q::after { content: "–"; }
.faq-a {
  display: none;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.faq-item.is-open .faq-a { display: block; }

/* Forms */
.form {
  display: grid;
  gap: 0.8rem;
}
.field, select.field, textarea.field {
  width: 100%;
  background: #fff;
  border: 1px solid #d7e0e4;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--ink-dark);
}
.field:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.form label { display: grid; gap: 0.35rem; font-size: 0.8rem; font-weight: 650; color: var(--ink-dark); }
.form-grid { display: grid; gap: 0.8rem; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } }

/* Pricing */
.price-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
.price {
  background: #fff;
  border: 1px solid #e4ecee;
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  position: relative;
}
.price.is-featured {
  border-color: var(--green);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.12);
}
.badge {
  position: absolute;
  top: -10px;
  left: 1.1rem;
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 0.2rem 0.55rem;
}
.price h3 { margin: 0 0 0.35rem; }
.price .amt { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink-dark); }
.price ul { margin: 1rem 0 1.25rem; padding: 0; list-style: none; }
.price li { padding: 0.28rem 0 0.28rem 1.1rem; position: relative; color: var(--muted-dark); font-size: 0.9rem; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* Breadcrumb */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.crumbs a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
.crumbs a:hover { color: var(--green-2); }

/* Case study */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 1.5rem;
}
@media (min-width: 700px) { .stat-strip { grid-template-columns: repeat(3, 1fr); } }
.stat-box {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 14px;
  padding: 1rem 0.8rem;
  text-align: center;
}
.stat-box b { display: block; color: var(--green-2); font-size: 1.4rem; }
.stat-box span { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.prose p { margin: 0 0 1rem; color: var(--muted); }
.prose h2 { color: #fff; font-size: 1.35rem; margin: 1.8rem 0 0.7rem; }
.sec-paper .prose h2 { color: var(--ink-dark); }
.sec-paper .prose p { color: var(--muted-dark); }

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #0d2c24, #0f2a30);
  border-top: 1px solid var(--line);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--muted); margin: 0 auto 1.4rem; max-width: 36rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0b131a 0%, #080e14 100%);
  border-top: 1px solid rgba(52, 211, 153, 0.1);
  padding: 3.6rem 0 0;
}
.foot-grid {
  display: grid;
  gap: 2.4rem 2rem;
}
@media (min-width: 900px) {
  .foot-grid { grid-template-columns: 1.55fr 1fr 1fr 0.9fr; }
}
.site-footer h4 {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-2);
  font-weight: 700;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 0.55rem; }
.site-footer a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.foot-brand .brand { margin-bottom: 1.15rem; }
.foot-brand .brand img { width: 26px; height: 26px; }
.foot-brand .brand .brand-name { font-size: 0.8rem; }
.foot-brand p { color: var(--muted); font-size: 0.9rem; max-width: 28rem; margin: 0 0 1.15rem; }
.foot-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 22rem;
  margin: 0 0 1.15rem;
  color: var(--muted) !important;
  transition: color var(--ease);
}
.foot-contact:hover {
  color: #fff !important;
}
.foot-contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-2);
}
.foot-contact-icon svg { width: 15px; height: 15px; display: block; }
.foot-contact-text { display: flex; flex-direction: column; min-width: 0; gap: 0.2rem; }
.foot-contact-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--green-3);
}
.foot-contact-value {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
  word-break: break-all;
}
.foot-meta { color: var(--muted); font-size: 0.85rem; margin: 0.35rem 0; }
.foot-connect { display: flex; flex-direction: column; gap: 0.55rem; margin: 0.9rem 0 0.75rem; }
.foot-connect-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--ease);
}
.foot-connect-item:hover { color: #fff; }
.foot-connect-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-2);
}
.foot-connect-icon svg { width: 15px; height: 15px; display: block; }
.foot-address {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 0 1rem;
  max-width: 22rem;
}
.foot-address-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-2);
}
.foot-address-icon svg { width: 16px; height: 16px; display: block; }
.foot-address-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}
.foot-address-label { color: #fff; font-weight: 700; font-size: 0.9rem; }
.foot-social { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.foot-social-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.foot-social-icons { display: flex; gap: 0.6rem; }
.foot-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.foot-social-btn svg { width: 16px; height: 16px; }
.foot-social-btn:hover {
  color: #fff;
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(16, 185, 129, 0.1);
}
.foot-bottom {
  margin-top: 2.4rem;
  padding: 1.05rem 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-float svg { width: 24px; height: 24px; }

.anon {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-3);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 99px;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.6rem;
}

.split-manage {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) { .split-manage { grid-template-columns: 1fr 1fr; } }
.manage-col {
  border-radius: 16px;
  padding: 1.4rem;
}
.manage-col.you { background: #fff; border: 1px solid #e4ecee; }
.manage-col.gpm {
  background: #10241f;
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.manage-col h3 { margin-top: 0; }
.manage-col.gpm h3, .manage-col.gpm li { color: #fff; }
.manage-col ul { margin: 0; padding-left: 1.1rem; }

@media (max-width: 699px) {
  .hero-actions .btn { width: 100%; }
  .score-row { grid-template-columns: 1fr; }
}

/* Legacy case-study markup preserved from original pages */
.cs-hero {
  background: linear-gradient(135deg, #0c1c1a 0%, #0e2022 55%, #101828 100%);
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid rgba(52, 211, 153, 0.1);
}
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 10px;
  font-weight: 700;
  color: #6ee7b7;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.cs-h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 1.25rem;
}
.cs-lead {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 2rem;
}
.cs-section { padding: 3.5rem 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.cs-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #34d399;
  margin-bottom: 10px;
}
.cs-h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.cs-body { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.58); line-height: 1.8; }
.cs-body p + p { margin-top: 1rem; }
.cs-card {
  background: #19242e;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 14px;
  padding: 22px;
}
.cs-card-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(52, 211, 153, 0.1);
}
.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 8px;
}
.result-label { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); }
.result-val { font-size: 1rem; font-weight: 800; color: #34d399; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.timeline-month {
  font-size: 10.5px;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 6px;
  padding: 4px 8px;
  text-align: center;
}
.timeline-text { font-size: 0.875rem; color: rgba(255, 255, 255, 0.58); line-height: 1.65; }
.cta-band h2, .cta-band p { }
.btn-green { }
.two-col { display: grid; gap: 32px; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 320px; } }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.45); text-decoration: none; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.related-card {
  background: #19242e;
  border: 1px solid rgba(52, 211, 153, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  display: block;
}
.related-card h4 { font-size: 13px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.sec-paper .faq-item { background: #fff; border-color: #e4ecee; }
.sec-paper .faq-q { color: var(--ink-dark); }
.sec-paper .faq-a { color: var(--muted-dark); }

/* ---------------------------------------------------------------
   Legal page layout (Privacy / Terms only) — additive, scoped to
   .legal-page so nothing else on the site is affected.
--------------------------------------------------------------- */
.legal-updated {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin: 0 0 1.75rem;
}
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  background: var(--paper-2);
  border: 1px solid #e4ecee;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2.5rem;
}
.legal-toc a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.legal-toc a:hover { color: var(--green-2); border-color: var(--green-2); }
.legal-page h2 {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid #e4ecee;
  scroll-margin-top: 6.5rem;
}
.legal-page h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-page ul { margin: 0 0 1rem; padding-left: 1.2rem; color: var(--muted-dark); }
.legal-page ul li { margin-bottom: 0.4rem; }
@media (max-width: 640px) {
  .legal-toc { gap: 0.4rem 0.9rem; padding: 1rem 1.15rem; }
}

/* Blog article comparison tables (used within .prose on select blog posts) */
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.92rem; }
.prose th, .prose td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid #e4ecee; vertical-align: top; }
.prose th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted-dark); font-weight: 700; border-bottom: 2px solid #dbe4e6; }
.prose td { color: var(--ink-dark); }
@media (max-width: 640px) { .prose table { font-size: 0.85rem; } .prose th, .prose td { padding: 0.55rem 0.6rem; } }

/* ---------------------------------------------------------------
   Blog hub — premium editorial system (scoped to .blog-hub only)
--------------------------------------------------------------- */
.blog-hub .lead a { color: var(--green-2); text-decoration: underline; }

/* Search bar (sits in the dark hero) */
.blog-search-wrap {
  position: relative;
  max-width: 34rem;
  margin: 1.5rem 0 0.25rem;
}
.blog-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}
.blog-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.95rem 1rem 0.95rem 2.8rem;
  font-size: 0.95rem;
  color: #fff;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.blog-search-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.blog-search-input:focus {
  outline: none;
  border-color: rgba(52, 211, 153, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

/* Category filter pills */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.blog-filter-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted-dark);
  background: #fff;
  border: 1px solid #dbe4e6;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.blog-filter-btn:hover { border-color: var(--green-2); color: var(--ink-dark); }
.blog-filter-btn.is-active {
  background: var(--ink-dark);
  border-color: var(--ink-dark);
  color: #fff;
}
.blog-filter-count {
  font-size: 0.7rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.55;
}

/* Featured article */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--ink-dark);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 45px rgba(10, 20, 25, 0.12);
}
@media (min-width: 760px) {
  .blog-featured { grid-template-columns: 1.1fr 1fr; }
}
.blog-featured-media { background: #0a1a20; }
.blog-featured-media img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; }
.blog-featured-body { padding: 2rem 2.1rem; display: flex; flex-direction: column; color: #fff; }
.blog-featured-body h2 { font-family: var(--font, inherit); font-size: 1.5rem; line-height: 1.25; margin: 0.85rem 0 0.7rem; color: #fff; }
.blog-featured-body p { color: rgba(255, 255, 255, 0.68); font-size: 0.95rem; line-height: 1.65; margin: 0 0 1.25rem; }
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-2);
  margin-top: auto;
}
.blog-read-link svg { width: 15px; height: 15px; transition: transform 0.18s ease; }
.blog-featured:hover .blog-read-link svg { transform: translateX(3px); }

/* Badge */
.blog-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-2);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 6px;
  padding: 0.28rem 0.6rem;
  width: fit-content;
}
.blog-featured-body .blog-badge { color: var(--green-3); background: rgba(16, 185, 129, 0.14); border-color: rgba(52, 211, 153, 0.3); }

/* Grid + cards */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e4ecee;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(10, 30, 25, 0.1); border-color: rgba(52, 211, 153, 0.35); }
.blog-card-media { aspect-ratio: 5 / 3; overflow: hidden; background: #0a1a20; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.045); }
.blog-card-body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-body h3 { font-size: 1.06rem; line-height: 1.35; color: var(--ink-dark); margin: 0.75rem 0 0.55rem; }
.blog-card-body p {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--muted-dark);
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #8a9aa1;
  margin-top: auto;
}
.blog-card-arrow { margin-left: auto; display: flex; color: var(--green-2); }
.blog-card-arrow svg { width: 16px; height: 16px; transition: transform 0.18s ease; }
.blog-card:hover .blog-card-arrow svg { transform: translateX(3px); }

/* Empty state + load more */
.blog-empty {
  text-align: center;
  color: var(--muted-dark);
  font-size: 0.95rem;
  padding: 3rem 1rem;
}
.blog-reset-btn {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-2);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}
.blog-loadmore-wrap { text-align: center; margin-top: 2.5rem; }

@media (max-width: 480px) {
  .blog-featured-body { padding: 1.5rem 1.35rem; }
  .blog-featured-body h2 { font-size: 1.25rem; }
}

/* ---------------------------------------------------------------
   About + Contact premium upgrade (shared components, scoped to
   new classes only — .card, .hero, .split etc. are untouched so
   no other page using them is affected)
--------------------------------------------------------------- */

/* Hero credibility chip row (About + Contact) */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.75rem 0 0.25rem; }
.chip-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  min-width: 6.5rem;
}
.chip-stat b { font-family: var(--font-display, inherit); font-size: 1.3rem; font-weight: 800; color: #fff; line-height: 1.1; }
.chip-stat span { font-size: 0.7rem; font-weight: 600; color: rgba(255, 255, 255, 0.55); text-transform: uppercase; letter-spacing: 0.03em; }

/* Section top-edge glow — softens the hard cut between the dark
   hero and the first content section that follows it */
.sec-bridge { position: relative; }
.sec-bridge::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(16, 185, 129, 0.07), transparent 75%);
  pointer-events: none;
}

/* Our Story split layout with a founding-facts card */
.story-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 860px) { .story-grid { grid-template-columns: 1.25fr 0.85fr; } }
.fact-card {
  background: #fff;
  border: 1px solid #e4ecee;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(10, 30, 25, 0.06);
}
.fact-card h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-2); margin: 0 0 1.1rem; }
.fact-row { display: flex; align-items: baseline; justify-content: space-between; padding: 0.65rem 0; border-bottom: 1px solid #eef3f4; }
.fact-row:last-child { border-bottom: none; padding-bottom: 0; }
.fact-row span:first-child { font-size: 0.85rem; color: var(--muted-dark); }
.fact-row span:last-child { font-size: 0.92rem; font-weight: 700; color: var(--ink-dark); text-align: right; }

/* How We Work — premium numbered rows (replaces plain card grid) */
.work-list { display: grid; gap: 0; max-width: 62rem; margin: 0 auto; }
@media (min-width: 760px) { .work-list { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; } }
.work-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.work-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-2);
}
.work-icon svg { width: 19px; height: 19px; }
.work-item h3 { color: #fff; font-size: 1rem; margin: 0 0 0.35rem; }
.work-item p { color: rgba(255, 255, 255, 0.58); font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* Founder card */
.founder-card {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e4ecee;
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 18px 40px rgba(10, 30, 25, 0.06);
}
@media (min-width: 700px) { .founder-card { grid-template-columns: auto 1fr; } }
.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(155deg, #0f3d2e, #0d2b22);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, inherit);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green-3);
  flex-shrink: 0;
  margin: 0 auto;
}
@media (min-width: 700px) { .founder-avatar { margin: 0; } }
.founder-body h3 { font-size: 1.2rem; color: var(--ink-dark); margin: 0 0 0.15rem; }
.founder-role { font-size: 0.82rem; font-weight: 700; color: var(--green-2); text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 0.85rem; }
.founder-body p { color: var(--muted-dark); font-size: 0.92rem; line-height: 1.65; margin: 0 0 1.1rem; }
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-dark);
  background: #f4f7f8;
  border: 1px solid #dbe4e6;
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.founder-linkedin:hover { border-color: var(--green-2); background: #eef8f3; }
.founder-linkedin svg { width: 16px; height: 16px; }

/* Office cards (About "Where We Operate" + Contact office info) */
.office-grid { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .office-grid { grid-template-columns: 1fr 1fr; } }
.office-card {
  background: #fff;
  border: 1px solid #e4ecee;
  border-radius: 16px;
  padding: 1.5rem 1.65rem;
  display: flex;
  gap: 1rem;
}
.office-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.09);
  color: var(--green-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.office-card-icon svg { width: 19px; height: 19px; }
.office-card h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green-2); margin: 0 0 0.3rem; }
.office-card h3 { font-size: 1.05rem; color: var(--ink-dark); margin: 0 0 0.3rem; }
.office-card p { font-size: 0.87rem; color: var(--muted-dark); line-height: 1.55; margin: 0; }

/* Contact page — info card list (elevated from plain text links) */
.contact-info-list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.75rem; }
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e4ecee;
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.contact-info-card:hover { border-color: rgba(52, 211, 153, 0.4); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(10, 30, 25, 0.08); }
.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.09);
  color: var(--green-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-text { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.contact-info-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #8a9aa1; }
.contact-info-value { font-size: 0.96rem; font-weight: 700; color: var(--ink-dark); word-break: break-word; }
.contact-info-arrow { margin-left: auto; flex-shrink: 0; color: var(--green-2); }
.contact-info-arrow svg { width: 16px; height: 16px; transition: transform 0.18s ease; }
.contact-info-card:hover .contact-info-arrow svg { transform: translateX(3px); }

/* Contact grid: form card visually "docks" upward into the hero
   to bridge the hard hero -> section cut */
.contact-grid { display: grid; gap: 2.5rem; align-items: start; margin-top: -4.5rem; position: relative; z-index: 2; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.05fr; } }
.contact-form-card {
  background: #fff;
  border: 1px solid #e4ecee;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 24px 55px rgba(10, 30, 25, 0.14);
}
.contact-form-card h2 { font-size: 1.2rem; color: var(--ink-dark); margin: 0 0 0.35rem; }
.contact-form-card .form-sub { font-size: 0.87rem; color: var(--muted-dark); margin: 0 0 1.4rem; }
.contact-side-card {
  background: #fff;
  border: 1px solid #e4ecee;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 24px 55px rgba(10, 30, 25, 0.1);
}
.contact-side-card > h2 { font-size: 1.2rem; color: var(--ink-dark); margin: 0 0 1.25rem; }

@media (max-width: 640px) {
  .chip-row { gap: 0.6rem; }
  .chip-stat { min-width: 5.5rem; padding: 0.6rem 0.9rem; }
  .founder-card { padding: 1.6rem; text-align: center; }
  .founder-role, .founder-body p { text-align: left; }
  .contact-grid { margin-top: -2.5rem; }
  .contact-form-card, .contact-side-card { padding: 1.5rem; }
  .about-page .hero-actions { padding-right: 4.5rem; }
}
