@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/geist-cyrillic-wght-normal.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+2116;
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/geist-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Geist";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/geist-cyrillic-wght-italic.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+2116;
}

@font-face {
  font-family: "Geist";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/geist-latin-wght-italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/geist-mono-cyrillic-wght-normal.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+2116;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/geist-mono-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+FEFF, U+FFFD;
}

:root {
  --page: #f7f9fb;
  --surface: #ffffff;
  --surface-soft: #eef4f6;
  --surface-warm: #f3f4ee;
  --ink: #11161d;
  --ink-soft: #2a3441;
  --muted: #5b6674;
  --quiet: #7d8793;
  --line: #d9e1e8;
  --line-strong: #b7c4cf;
  --accent: #0099b8;
  --accent-strong: #007a92;
  --green: #0b7f61;
  --green-soft: #dff5ec;
  --blue: #284fb5;
  --blue-soft: #e4ebff;
  --amber: #a86f00;
  --amber-soft: #fff0cb;
  --red: #bf4b39;
  --red-soft: #ffe4df;
  --dark: #111820;
  --dark-2: #17222c;
  --dark-text: #f3f7fb;
  --shadow: 0 18px 50px rgba(21, 31, 43, 0.12);
  --container: 1160px;
  --radius: 8px;
  --font-sans: "Geist", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 22, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 29, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 55%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(0, 153, 184, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--dark-text);
}

.section-surface {
  background: rgba(255, 255, 255, 0.74);
  border-block: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
}

.page-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(260px, 0.38fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head h2,
.page-title,
.hero-title {
  max-width: 920px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.05;
  font-weight: 780;
  letter-spacing: 0;
}

.section-dark .section-head h2,
.section-dark .page-title {
  color: var(--dark-text);
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.section-dark .section-head p,
.section-dark .lead {
  color: rgba(243, 247, 251, 0.72);
}

.lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(0, 153, 184, 0.28);
  text-underline-offset: 4px;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.mono {
  font-family: var(--font-mono);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(247, 249, 251, 0.9);
  border-bottom: 1px solid rgba(217, 225, 232, 0.9);
  backdrop-filter: blur(18px) saturate(160%);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-weight: 820;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand small {
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 15px;
  font-weight: 680;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn-large {
  min-height: 52px;
  padding: 15px 20px;
  font-size: 17px;
}

.hero {
  padding: 52px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.78fr);
  gap: 52px;
  align-items: center;
}

.hero-title {
  margin: 18px 0 22px;
  font-size: 58px;
  line-height: 1.02;
}

.hero-title em,
.page-title em,
.section-head h2 em {
  color: var(--accent-strong);
  font-style: italic;
}

.hero-copy {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 18px;
  color: var(--quiet);
  font-size: 14px;
}

.hero-card {
  position: relative;
}

.hero-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-caption {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.hero-caption strong {
  font-size: 21px;
  line-height: 1.18;
}

.hero-caption span {
  color: var(--muted);
}

.proof-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.proof-chip {
  min-height: 104px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.proof-chip b {
  display: block;
  font-family: var(--font-mono);
  font-size: 25px;
  line-height: 1.05;
}

.proof-chip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.metric {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric b {
  display: block;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 30px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.pain-grid,
.service-grid,
.case-grid,
.value-grid,
.process-grid,
.faq-grid,
.related-grid {
  display: grid;
  gap: 16px;
}

.pain-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pain-card,
.service-card,
.case-card,
.value-card,
.process-card,
.quote-card,
.result-card,
.price-card,
.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.pain-card {
  min-height: 206px;
  padding: 22px;
}

.pain-card svg,
.service-card svg,
.process-card svg,
.value-card svg {
  width: 26px;
  height: 26px;
  color: var(--accent-strong);
}

.pain-card h3,
.service-card h3,
.case-card h3,
.value-card h3,
.process-card h3,
.mini-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.pain-card p,
.service-card p,
.case-card p,
.value-card p,
.process-card p,
.mini-card p {
  margin-top: 10px;
  color: var(--muted);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: grid;
  min-height: 300px;
  padding: 24px;
}

.service-card .tags {
  align-self: end;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
}

.section-dark .tag {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(243, 247, 251, 0.78);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 720;
  cursor: pointer;
}

.filter-btn[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.case-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 36px rgba(21, 31, 43, 0.12);
}

.case-card-media {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.case-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-card-body {
  display: flex;
  min-height: 300px;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
}

.case-card h3 {
  margin-top: 14px;
}

.case-card .case-result {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 23px;
  font-weight: 800;
}

.case-card .case-result small {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 650;
}

.case-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent-strong);
  font-weight: 760;
}

.case-card .card-link svg {
  width: 17px;
  height: 17px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--accent-strong);
  font-weight: 760;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  min-height: 224px;
  padding: 24px;
}

.section-dark .value-card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .value-card h3 {
  color: var(--dark-text);
}

.section-dark .value-card p {
  color: rgba(243, 247, 251, 0.68);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: step;
}

.process-card {
  min-height: 238px;
  padding: 22px;
  counter-increment: step;
}

.process-card::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-mono);
  font-weight: 800;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.44fr);
  gap: 28px;
  align-items: center;
}

.quote-card {
  padding: 32px;
}

.quote-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.12;
  font-weight: 760;
}

.quote-card p {
  margin-top: 18px;
  color: var(--muted);
}

.review-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.review-shot img {
  width: 100%;
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
}

details.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-item summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-strong);
  font-family: var(--font-mono);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--dark-text);
}

.cta-band h2 {
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: 0;
}

.cta-band p {
  margin-top: 12px;
  color: rgba(243, 247, 251, 0.72);
  font-size: 18px;
}

.cta-band .btn {
  background: var(--surface);
  color: var(--ink);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.tg-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 153, 184, 0.28);
}

.tg-float svg {
  width: 25px;
  height: 25px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--quiet);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--accent-strong);
  font-weight: 700;
}

.page-hero {
  padding: 46px 0 58px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.36fr);
  gap: 42px;
  align-items: end;
}

.page-title {
  font-size: 52px;
}

.side-note {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.side-note b {
  display: block;
  font-size: 18px;
}

.side-note p {
  margin-top: 8px;
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 42px;
  align-items: start;
}

.article-content {
  display: grid;
  gap: 34px;
}

.article-content h2 {
  color: var(--ink);
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: 0;
}

.article-content h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: 0;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 18px;
}

.article-content ul {
  display: grid;
  gap: 10px;
}

.article-content li {
  position: relative;
  padding-left: 24px;
}

.article-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.result-card {
  min-height: 142px;
  padding: 20px;
}

.result-card b {
  display: block;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 28px;
  line-height: 1.05;
}

.result-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.article-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.aside-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.aside-card h2,
.aside-card h3 {
  font-size: 20px;
  line-height: 1.2;
}

.aside-card p {
  margin-top: 10px;
  color: var(--muted);
}

.screen-grid {
  display: grid;
  gap: 14px;
}

.screen-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.screen-shot img {
  width: 100%;
}

.screen-shot figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ba-box {
  min-height: 164px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.ba-box.is-after {
  border-color: rgba(11, 127, 97, 0.35);
  background: var(--green-soft);
}

.ba-box span {
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.ba-box b {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.08;
}

.ba-box p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  padding: 24px;
}

.price-card b {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 25px;
}

.price-card p {
  margin-top: 12px;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(300px, 0.34fr);
  gap: 42px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 22px;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.58;
}

.portrait-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.portrait-card figcaption {
  padding: 16px;
  color: var(--muted);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  min-height: 188px;
  padding: 22px;
}

.service-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.service-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
}

.service-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--green);
}

.hidden {
  display: none !important;
}

@media (max-width: 1040px) {
  .hero-grid,
  .page-hero-grid,
  .article-grid,
  .about-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

  .pain-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-grid,
  .service-grid,
  .value-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-aside {
    position: static;
  }
}

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

  .mobile-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 12px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 249, 251, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
  }

  .metric-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-title,
  .page-title {
    font-size: 42px;
  }

  .section-head h2 {
    font-size: 38px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 32px 0 54px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-title,
  .page-title {
    font-size: 35px;
    line-height: 1.08;
  }

  .section-head h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .lede,
  .section-head p,
  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .cta-band {
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .proof-stack,
  .metric-band,
  .pain-grid,
  .service-grid,
  .case-grid,
  .value-grid,
  .process-grid,
  .faq-grid,
  .price-grid,
  .result-grid,
  .mini-grid,
  .before-after {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .case-card-body {
    min-height: 0;
  }

  .quote-card {
    padding: 24px;
  }

  .quote-card blockquote {
    font-size: 26px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .cta-band h2 {
    font-size: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand small {
    display: none;
  }

  .header-actions .btn-primary {
    padding-inline: 13px;
  }

  .tg-float {
    right: 14px;
    bottom: 14px;
  }
}
