:root {
  --ink: #142033;
  --navy: #1c314d;
  --navy-mid: #2a4668;
  --navy-soft: #3d5a7a;
  --cream: #f5f0e6;
  --paper: #fffcf7;
  --sand: #ebe3d4;
  --line: #d6ccba;
  --muted: #5b6574;
  --terracotta: #c45c26;
  --terracotta-dark: #9a4418;
  --terracotta-soft: #f3d9c8;
  --forest: #2d6a4f;
  --stop: #8f2d3a;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(20, 32, 51, 0.08);
  --radius: 16px;
  --max: 1120px;
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 1.0625rem;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy-mid); }
a:hover { color: var(--terracotta); }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  background: var(--paper);
  padding: 8px 12px;
  z-index: 100;
  border-radius: 8px;
}
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex: none;
}
.brand-name { font-size: 1.02rem; line-height: 1.15; }
.brand-name span { display: block; font-weight: 600; font-size: 0.78rem; color: var(--muted); letter-spacing: 0; }
.nav {
  display: none;
  gap: 1.15rem;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}
.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
}
.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--muted);
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--navy);
  color: var(--paper);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--terracotta); color: white; }
.btn-primary:hover { background: var(--terracotta-dark); color: white; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--sand); color: var(--navy); }
.btn-light { background: var(--paper); color: var(--navy); }
.btn-light:hover { background: white; color: var(--navy); }
.menu-btn {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0 1rem 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { text-decoration: none; color: var(--navy); font-weight: 650; }

/* Hero */
.hero {
  padding: 2.4rem 0 2.8rem;
}
.hero-grid {
  display: grid;
  gap: 2rem;
}
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 0.7rem;
}
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.35rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); margin: 0 0 0.7rem; }
h3 { font-size: 1.15rem; margin: 0 0 0.4rem; }
.lead {
  font-size: 1.2rem;
  max-width: 42rem;
  margin: 0 0 1rem;
}
.sub {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 1.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.25rem; }
.honest {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  padding: 0.85rem 1rem;
  border-radius: 0 12px 12px 0;
  max-width: 40rem;
  font-size: 0.98rem;
}
.hero-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.hero-card h2 {
  color: var(--paper);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0;
}
.rule-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.rule-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.98rem;
}
.rule-list svg { margin-top: 0.15rem; }
.muted { color: var(--muted); }
.tiny { font-size: 0.9rem; color: #c9d4e3; margin: 1rem 0 0; }

section { padding: 2.6rem 0; }
.section-head { max-width: 40rem; margin-bottom: 1.5rem; }

/* Diagram */
.diagram-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  overflow-x: auto;
}
.flow { width: 100%; min-width: 640px; height: auto; }

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
}
.step .n {
  display: inline-flex;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

/* Audience */
.split { display: grid; gap: 1rem; }
.card-grid { display: grid; gap: 0.8rem; }
.pill-card, .no-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.pill-card strong { display: block; margin-bottom: 0.2rem; }
.no-panel {
  background: #f8ece9;
  border: 1px solid #e4c7c1;
  border-radius: 20px;
  padding: 1.2rem;
}
.no-panel h2 { color: var(--stop); }
.no-card { background: #fff8f6; border-color: #e8cfc9; }
.no-card strong { color: var(--stop); display: block; margin-bottom: 0.25rem; }

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1rem;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.3rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.price-card.featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.price-card .label { font-weight: 700; font-size: 0.95rem; }
.price {
  font-size: 2.35rem;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price small { font-size: 0.95rem; font-weight: 600; letter-spacing: 0; }
.price-card ul {
  margin: 0.3rem 0 0.6rem;
  padding-left: 1.15rem;
}
.price-card li { margin: 0.25rem 0; }
.price-note {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 46rem;
}

/* FAQ */
.faq { display: grid; gap: 0.6rem; }
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
}
summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--navy-soft);
  font-weight: 700;
}
details[open] summary::after { content: "–"; }
details p { margin: 0.7rem 0 0.2rem; color: var(--muted); }

/* Contact */
.contact-panel {
  background: var(--navy);
  color: var(--cream);
  border-radius: 24px;
  padding: 1.4rem 1.2rem 1.6rem;
}
.contact-panel h2, .contact-panel a { color: var(--paper); }
.contact-panel .sub, .form-note { color: #c9d4e3; }
.form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
label { font-weight: 700; font-size: 0.92rem; display: grid; gap: 0.35rem; }
input, textarea, select {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #3d5a7a;
  background: #102038;
  color: var(--paper);
}
input::placeholder, textarea::placeholder { color: #8ea0b8; }
.perm {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.55rem;
  align-items: start;
  font-weight: 500;
  font-size: 0.95rem;
}
.perm input { width: 1.05rem; height: 1.05rem; margin-top: 0.2rem; accent-color: var(--terracotta); }
.form-ok {
  display: none;
  background: #1e4a36;
  border: 1px solid #3d7a5d;
  color: #e6f4ec;
  padding: 0.8rem 1rem;
  border-radius: 12px;
}
.mailto-alt { margin-top: 0.8rem; font-size: 0.95rem; color: #c9d4e3; }

/* Footer / legal pages */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 0.6rem; }
.site-footer a { color: var(--navy); text-decoration: none; font-weight: 650; }
.legal {
  padding: 2rem 0 3rem;
}
.legal .prose { max-width: 42rem; }
.prose p, .prose li { color: var(--muted); }
.prose h1 { margin-bottom: 0.5rem; }
.crumb { font-size: 0.92rem; margin-bottom: 1rem; }

@media (min-width: 720px) {
  .menu-btn, .mobile-nav { display: none !important; }
  .nav { display: flex; }
  .hero-grid { grid-template-columns: 1.35fr 0.9fr; align-items: center; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; align-items: start; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-panel { padding: 2rem 2.1rem; }
  .form { grid-template-columns: 1fr 1fr; }
  .form .full { grid-column: 1 / -1; }
  .diagram-wrap { padding: 1.4rem; }
}

@media (max-width: 960px) {
  .header-actions > .btn { display: none; }
}

.diagram-wrap img.flow {
  width: 100%;
  min-width: 640px;
  height: auto;
}
