﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,600&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  --bg: #f4f2ec;
  --paper: #fffdf8;
  --ink: #192126;
  --ink2: #2e3d45;
  --muted: #556068;
  --faint: #8fa0a8;
  --line: #ddd9ce;
  --line2: #ece9e0;
  --brand: #0f6d6a;
  --brand-dark: #0a4d4b;
  --brand-light: #e6f4f3;
  --brand-mid: #c3e6e4;
  --accent: #f2a65a;
  --accent-light: #fdf3e8;
  --red: #d83b3b;
  --green: #1a8a5a;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-xs: 0 2px 8px rgba(19,33,38,.07);
  --shadow: 0 8px 28px rgba(19,33,38,.10);
  --shadow-lg: 0 20px 60px rgba(19,33,38,.13);
  --font: "Space Grotesk", -apple-system, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --transition: .2s ease;
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Body gradient ───────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 10% -5%, rgba(247,223,190,.55) 0%, transparent 38%),
    radial-gradient(ellipse at 92% 0%, rgba(195,230,228,.55) 0%, transparent 36%);
  z-index: 0;
}
main, header, footer { position: relative; z-index: 1; }

/* ── Typography ──────────────────────────────────────────────────── */
h1 { font-family: var(--font-serif); font-size: clamp(2.1rem,5.5vw,3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; }
h2 { font-family: var(--font-serif); font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 700; line-height: 1.22; letter-spacing: -.01em; }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.35; }
h4 { font-size: .93rem; font-weight: 700; }
p { line-height: 1.7; }
.muted { color: var(--muted); }
.text-sm { font-size: .84rem; }
.text-xs { font-size: .75rem; }
strong { font-weight: 700; color: var(--ink); }

/* ── Layout ──────────────────────────────────────────────────────── */
.wrapper { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.section { padding: 70px 0; }
.section-sm { padding: 48px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--brand);
  margin-bottom: .6rem;
}
.section-label::before { content: ''; width: 18px; height: 2px; background: var(--brand); border-radius: 2px; }
.section-intro { max-width: 560px; }
.section-intro p { font-size: 1.06rem; color: var(--muted); margin-top: .5rem; }

/* ── Topbar / Nav ────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 200;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  background: rgba(255,253,248,.88);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(1px)) {
  .topbar { background: rgba(255,253,248,.97); }
}
.topbar.scrolled { box-shadow: 0 4px 20px rgba(19,33,38,.09); }
.nav {
  min-height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 800;
  letter-spacing: -.01em; flex-shrink: 0; transition: opacity var(--transition);
}
.brand:hover { opacity: .82; }
.brand span { color: var(--brand); }
.nav-links {
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.nav-links a {
  padding: 8px 15px; border-radius: 999px; border: 1px solid transparent;
  color: var(--muted); font-weight: 600; font-size: .9rem;
  transition: all var(--transition);
}
.nav-links a:hover { border-color: var(--line); background: var(--paper); color: var(--ink); }
.nav-links a.active { background: var(--brand-light); border-color: var(--brand-mid); color: var(--brand); }
.nav-cta { margin-left: 8px; }
.nav-links a.nav-cta.btn-primary {
  color: #fff;
}
.nav-links a.nav-cta.btn-primary:hover {
  color: #fff;
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

/* Hamburger */
.hamburger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 8px; cursor: pointer;
  flex-direction: column; gap: 5px; transition: background var(--transition);
}
.hamburger:hover { background: var(--brand-light); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border-radius: var(--radius-sm); padding: .6rem 1.25rem;
  font-family: var(--font); font-weight: 700; font-size: .9rem;
  border: 1.5px solid transparent; cursor: pointer;
  transition: all var(--transition); white-space: nowrap; text-decoration: none !important;
}
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover:not(:disabled) { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(15,109,106,.3); }
.btn-secondary { background: var(--paper); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover:not(:disabled) { background: var(--brand-light); border-color: var(--brand-mid); color: var(--brand); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--brand); border-color: var(--brand-mid); }
.btn-ghost:hover:not(:disabled) { background: var(--brand-light); }
.btn-lg { padding: .78rem 1.8rem; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: .42rem .9rem; font-size: .8rem; }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.5rem; }

/* ── Cards ───────────────────────────────────────────────────────── */
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px;
}
.card-hover { transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); }
.card-hover:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--brand-mid); }
.card-brand { background: var(--brand); color: #fff; border-color: var(--brand); }
.card-brand h2, .card-brand h3, .card-brand p, .card-brand li { color: rgba(255,255,255,.88); }
.card-brand strong { color: #fff; }

/* ── Badge ───────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 999px; background: var(--brand-light);
  border: 1px solid var(--brand-mid);
  color: var(--brand-dark); font-weight: 700; font-size: .8rem; padding: 5px 12px;
}
.badge::before { content: '●'; font-size: .55rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }
.badge-accent { background: var(--accent-light); border-color: #f8d8b0; color: #8a5a1a; }

/* ── Trust list ──────────────────────────────────────────────────── */
.trust-list { display: flex; flex-direction: column; gap: .55rem; }
.trust-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  color: var(--muted); font-size: .94rem; line-height: 1.6;
}
.trust-list li::before {
  content: '✓'; flex-shrink: 0; width: 20px; height: 20px;
  background: var(--brand-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 900; color: var(--brand);
  margin-top: .18rem;
}
.trust-list.numbered { counter-reset: steps; }
.trust-list.numbered li::before {
  counter-increment: steps; content: counter(steps);
  background: var(--brand); color: #fff; font-size: .72rem;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero { padding: 80px 0 60px; }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 20px; align-items: start;
}
.hero-grid .card { padding: 36px; }
.hero h1 { margin-bottom: .85rem; }
.hero h1 em { font-style: italic; color: var(--brand); }
.hero-aside .card { background: var(--brand); color: #fff; border-color: var(--brand); }
.hero-aside h2 { color: #fff; margin-bottom: 1.2rem; font-size: 1.25rem; }
.hero-aside .trust-list li { color: rgba(255,255,255,.85); }
.hero-aside .trust-list li::before { background: rgba(255,255,255,.18); color: #fff; }

/* ── Stats Bar ───────────────────────────────────────────────────── */
.stats-bar {
  background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; padding: 0;
}
.stat-item {
  text-align: center; padding: 28px 20px;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 800;
  color: var(--brand); line-height: 1; margin-bottom: .35rem;
}
.stat-label { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* ── Proof section ────────────────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  margin-top: 1.8rem;
}
.proof-main {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.proof-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 1.1rem;
}
.proof-kpi {
  background: var(--brand-light);
  border: 1px solid var(--brand-mid);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.proof-kpi-value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand-dark);
}
.proof-kpi-label {
  margin-top: .25rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
}
.proof-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.proof-item h3 {
  font-size: .96rem;
  margin-bottom: .4rem;
}
.proof-item p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Trust logos (text badges) ───────────────────────────────────── */
.logo-strip {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .36rem;
  padding: .42rem .78rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink2);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(6px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.logo-pill::before {
  content: attr(data-icon);
  font-size: .75rem;
  opacity: .8;
}
.logo-pill:hover {
  transform: translateY(-1px);
  border-color: var(--brand-mid);
  background: var(--brand-light);
  box-shadow: var(--shadow-xs);
}
.reveal.visible .logo-pill {
  animation: logoPillIn .45s ease forwards;
}
.reveal.visible .logo-pill:nth-child(1) { animation-delay: .03s; }
.reveal.visible .logo-pill:nth-child(2) { animation-delay: .06s; }
.reveal.visible .logo-pill:nth-child(3) { animation-delay: .09s; }
.reveal.visible .logo-pill:nth-child(4) { animation-delay: .12s; }
.reveal.visible .logo-pill:nth-child(5) { animation-delay: .15s; }
.reveal.visible .logo-pill:nth-child(6) { animation-delay: .18s; }
.reveal.visible .logo-pill:nth-child(7) { animation-delay: .21s; }
.reveal.visible .logo-pill:nth-child(8) { animation-delay: .24s; }
.reveal.visible .logo-pill:nth-child(9) { animation-delay: .27s; }
.reveal.visible .logo-pill:nth-child(10) { animation-delay: .30s; }
.reveal.visible .logo-pill:nth-child(11) { animation-delay: .33s; }
.reveal.visible .logo-pill:nth-child(12) { animation-delay: .36s; }
@keyframes logoPillIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Services / Feature Cards ────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 2rem; }
.feature {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; position: relative; overflow: hidden;
  transition: all var(--transition);
}
.feature:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--brand-mid); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.feature h3 { margin-bottom: .5rem; }
.feature p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.feature-link { display: inline-flex; align-items: center; gap: .3rem; margin-top: .8rem; font-size: .82rem; font-weight: 700; color: var(--brand); }
.feature-link:hover { gap: .55rem; }

/* ── Process steps ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 2rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 26px; left: calc(100%/6);
  width: calc(100% - 100%/3); height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand-mid) 0, var(--brand-mid) 8px, transparent 8px, transparent 16px);
}
.step { text-align: center; padding: 0 18px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
}
.step h3 { font-size: 1rem; margin-bottom: .4rem; }
.step p { font-size: .86rem; color: var(--muted); }

/* ── Niches ──────────────────────────────────────────────────────── */
.niches-grid {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem;
}
.niche-pill {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: .4rem 1rem; font-size: .84rem; font-weight: 600; color: var(--ink2);
  transition: all var(--transition);
}
.niche-pill:hover { background: var(--brand-light); border-color: var(--brand-mid); color: var(--brand); transform: translateY(-1px); }

/* ── Why Us ──────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 2rem; }
.why-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; transition: all var(--transition);
}
.why-item:hover { border-color: var(--brand-mid); box-shadow: var(--shadow-xs); }
.why-icon { font-size: 1.6rem; margin-bottom: .75rem; }
.why-item h4 { margin-bottom: .35rem; }
.why-item p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── Verification stripe ─────────────────────────────────────────── */
.verify-stripe {
  background: var(--brand); color: #fff; padding: 40px 0;
}
.verify-stripe-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.verify-stripe h2 { color: #fff; margin-bottom: .5rem; font-size: 1.5rem; }
.verify-stripe p { color: rgba(255,255,255,.78); font-size: .95rem; max-width: 520px; }
.verify-stripe .btn-secondary { background: #fff; border-color: rgba(255,255,255,.4); }
.verify-stripe .btn-secondary:hover { background: var(--brand-light); }

/* ── CTA section ─────────────────────────────────────────────────── */
.cta-section { background: var(--brand-light); border-top: 1px solid var(--brand-mid); border-bottom: 1px solid var(--brand-mid); padding: 64px 0; text-align: center; }
.cta-section h2 { margin-bottom: .6rem; }
.cta-section p { color: var(--muted); max-width: 540px; margin: 0 auto .1rem; font-size: 1rem; }
.cta-section .cta-row { justify-content: center; margin-top: 1.6rem; }

/* ── Page Hero (inner pages) ─────────────────────────────────────── */
.page-hero { padding: 56px 0 44px; border-bottom: 1px solid var(--line); margin-bottom: 56px; }
.page-hero .badge { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.7rem); margin-bottom: .7rem; }
.page-hero p { font-size: 1.05rem; color: var(--muted); max-width: 580px; }

/* ── FAQ accordion ───────────────────────────────────────────────── */
.faq-search { position: relative; max-width: 460px; margin-bottom: 2rem; }
.faq-search input { padding-left: 40px; border-radius: 999px; }
.faq-search .search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--faint); font-size: .95rem; pointer-events: none; }
.faq-cats { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.faq-cat-btn {
  padding: .38rem .9rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); font-size: .82rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all var(--transition);
}
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--brand-light); border-color: var(--brand-mid); color: var(--brand); }
.faq-group { margin-bottom: 1.2rem; }
.faq-group-title { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: .75rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: .5rem; overflow: hidden; background: var(--paper);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover, .faq-item.open { border-color: var(--brand-mid); }
.faq-item.open { box-shadow: var(--shadow-xs); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 20px;
  font-weight: 700; font-size: .95rem; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: none; border: none; font-family: var(--font);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--brand-light); }
.faq-q .chevron { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--line2); display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--muted); transition: all var(--transition); }
.faq-item.open .faq-q .chevron { background: var(--brand); color: #fff; transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease, padding .2s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 20px 18px; }
.faq-a p { color: var(--muted); font-size: .93rem; line-height: 1.7; }

/* ── Contact page ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 20px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px;
}
.info-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); margin-bottom: .2rem; }
.info-value { font-size: .92rem; font-weight: 600; color: var(--ink); }
.info-value a { color: var(--brand); }
.response-badge { background: var(--brand); color: #fff; border-radius: var(--radius-sm); padding: 14px 18px; display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; }
.response-badge .ri { font-size: 1.1rem; }

/* Form ─ */
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 700; font-size: .83rem; margin-bottom: 6px; color: var(--ink2); }
.field .hint { font-size: .75rem; color: var(--faint); margin-top: 4px; }
.field.error input, .field.error textarea, .field.error select {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(216,59,59,.12);
}
.field-error {
  min-height: 16px;
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--red);
}
input, textarea, select {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; padding: .6rem .85rem; background: var(--paper); color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(15,109,106,.12);
}
textarea { min-height: 130px; resize: vertical; }
.form-status { display: none; padding: .75rem 1rem; border-radius: var(--radius-xs); font-size: .9rem; margin-bottom: 1rem; }
.form-status.ok  { display: flex; background: #e6f4ef; color: var(--green); border: 1px solid #b8e2d0; }
.form-status.err { display: flex; background: #fdf0f0; color: var(--red);   border: 1px solid #f5c6c6; }
.char-count { font-size: .73rem; color: var(--faint); text-align: right; margin-top: 3px; }

/* ── About page ──────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 1.8rem; }
.value-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: center; transition: all var(--transition);
}
.value-card:hover { border-color: var(--brand-mid); box-shadow: var(--shadow-xs); transform: translateY(-2px); }
.value-icon { font-size: 2rem; margin-bottom: .8rem; }
.value-card h3 { margin-bottom: .4rem; font-size: 1rem; }
.value-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; }
.timeline-item { display: flex; gap: 20px; position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: 19px; top: 42px; bottom: 0; width: 2px; background: var(--line); }
.timeline-item:last-child::before { display: none; }
.timeline-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff;
  font-weight: 800; font-size: .9rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-content h3 { font-size: .98rem; margin-bottom: .3rem; }
.timeline-content p { font-size: .88rem; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 1.8rem; }
.team-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: center;
}
.team-avatar {
  width: 62px; height: 62px; border-radius: 50%; background: var(--brand-light);
  margin: 0 auto .9rem; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border: 3px solid var(--brand-mid);
}
.team-card h3 { font-size: .96rem; margin-bottom: .2rem; }
.team-card .role { font-size: .78rem; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }
.team-card p { font-size: .83rem; color: var(--muted); }

/* ── Publisher Policy ────────────────────────────────────────────── */
.policy-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.policy-toc {
  position: sticky; top: 88px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.policy-toc-title { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: .9rem; }
.toc-list { display: flex; flex-direction: column; gap: .2rem; }
.toc-list a {
  display: block; padding: .35rem .6rem; border-radius: var(--radius-xs);
  font-size: .82rem; font-weight: 600; color: var(--muted);
  transition: all var(--transition); border-left: 2px solid transparent;
}
.toc-list a:hover, .toc-list a.active { background: var(--brand-light); color: var(--brand); border-left-color: var(--brand); }
.policy-section { border-top: 1px solid var(--line); padding: 30px 0 8px; }
.policy-section:first-child { border-top: none; padding-top: 0; }
.policy-section h2 { margin-bottom: .9rem; font-size: 1.3rem; }
.policy-section p, .policy-section li { color: var(--muted); line-height: 1.7; }
.policy-section ul, .policy-section ol { list-style: none; padding: 0; margin: .8rem 0 0; display: flex; flex-direction: column; gap: .55rem; }
.policy-section li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; }
.policy-section ul li::before { content: '→'; color: var(--brand); font-weight: 700; flex-shrink: 0; }
.policy-section ol { counter-reset: pol; }
.policy-section ol li { counter-increment: pol; }
.policy-section ol li::before { content: counter(pol)'.'; min-width: 22px; font-weight: 700; color: var(--brand); flex-shrink: 0; }
.highlight-box {
  background: var(--brand-light); border: 1px solid var(--brand-mid);
  border-radius: var(--radius-sm); padding: 14px 18px;
  margin-top: 14px; color: var(--brand-dark); font-weight: 600; font-size: .92rem;
  display: flex; align-items: flex-start; gap: .6rem;
}
.highlight-box::before { content: '⚑'; flex-shrink: 0; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer-main {
  background: var(--ink); color: rgba(255,255,255,.65);
  padding: 56px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: .6rem; }
.footer-brand span { color: var(--brand-mid); }
.footer-desc { font-size: .88rem; line-height: 1.65; max-width: 240px; }
.footer-col h4 { color: rgba(255,255,255,.9); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.38);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--brand-mid); }
.domain-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: 4px 12px; font-size: .78rem; color: rgba(255,255,255,.55);
}
.domain-chip::before { content: '🔒'; font-size: .7rem; }

/* ── Scroll-reveal ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-aside { order: -1; }
  .hero-aside .card { padding: 22px; }
  .hero-aside h2 { font-size: 1.1rem; }
  .features, .steps, .why-grid, .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-kpis { grid-template-columns: 1fr 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 68px 0 0; background: var(--paper); padding: 20px; gap: 4px; overflow-y: auto; border-top: 1px solid var(--line); z-index: 199; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 1rem; }
  .hamburger { display: flex; }
  .features, .steps, .why-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .proof-kpis { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .verify-stripe-inner { flex-direction: column; }
  .section { padding: 44px 0; }
  .hero { padding: 48px 0 36px; }
}
@media (max-width: 400px) {
  .stats-bar-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── Utility ──────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mt-2 { margin-top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Reduced Motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .topbar { transition: none; }
  .logo-pill { opacity: 1; transform: none; }
}
