/* 38 Право — custom editorial interface, 2026 */
:root {
  --ink: #10191d;
  --ink-soft: #1a272c;
  --ink-muted: #445157;
  --paper: #f3f0e7;
  --paper-deep: #e5dfd2;
  --paper-light: #fffdf8;
  --line: rgba(16, 25, 29, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --accent: #d7ff45;
  --accent-dark: #a7ce17;
  --signal: #e76f51;
  --success: #2d7a55;
  --danger: #b84235;
  --shadow: 0 28px 80px rgba(16, 25, 29, 0.14);
  --shadow-soft: 0 18px 48px rgba(16, 25, 29, 0.08);
  --radius: 24px;
  --radius-small: 13px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(88px, 10vw, 152px);
  --header-height: 82px;
  --font-sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-display: "Arial Narrow", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  background: var(--ink);
}

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

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.17em;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0.55em;
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.65rem, 7.4vw, 7.4rem);
}

h2 {
  font-size: clamp(2.55rem, 5.1vw, 5.15rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p {
  text-wrap: pretty;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section);
}

.section--paper {
  background: var(--paper-deep);
}

.section--ink {
  color: var(--paper-light);
  background: var(--ink);
}

.section-head {
  margin-bottom: clamp(42px, 6vw, 78px);
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(36px, 7vw, 108px);
  align-items: end;
}

.section-head h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.section-head > p,
.section-head--split > p {
  max-width: 520px;
  margin: 0 0 0.25rem;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.section--ink .section-head > p,
.section--ink .section-head--split > p {
  color: rgba(255, 253, 248, 0.68);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: rgba(255, 253, 248, 0.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: gap 180ms ease, opacity 180ms ease;
}

.text-link:hover {
  gap: 18px;
  opacity: 0.72;
}

.text-link--light {
  color: var(--paper-light);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--accent);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

/* Buttons */
.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.button--accent {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 10px 30px rgba(215, 255, 69, 0.12);
}

.button--accent:hover {
  background: #e3ff79;
  box-shadow: 0 14px 36px rgba(215, 255, 69, 0.22);
}

.button--ink {
  color: var(--paper-light);
  background: var(--ink);
}

.button--ink:hover {
  background: var(--ink-soft);
  box-shadow: 0 12px 28px rgba(16, 25, 29, 0.18);
}

.button--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.button--ghost:hover {
  background: rgba(16, 25, 29, 0.06);
}

.button--outline-light {
  color: var(--paper-light);
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.button--outline-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.button--large {
  min-height: 62px;
  padding-inline: 29px;
  font-size: 0.9rem;
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.75rem;
}

.button--wide {
  width: 100%;
}

/* Header */
.topline {
  position: relative;
  z-index: 102;
  color: rgba(255, 253, 248, 0.76);
  background: #080f12;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.topline__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topline p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.topline a {
  text-decoration: none;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(215, 255, 69, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--paper-light);
  background: rgba(16, 25, 29, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 15, 18, 0.94);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.brand__copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand__copy strong {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.brand__copy small {
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.61rem;
  letter-spacing: 0.07em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(25px, 3.5vw, 52px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 253, 248, 0.73);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--paper-light);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: grid;
  text-align: right;
  text-decoration: none;
  line-height: 1.25;
}

.header-phone span {
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 0.8rem;
  font-weight: 760;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - var(--header-height));
  overflow: auto;
  color: var(--paper-light);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.mobile-menu__inner {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 48px;
  padding-block: 42px 52px;
}

.mobile-menu nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.mobile-menu nav a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
  text-decoration: none;
}

.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
}

.mobile-menu__contact > a {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: clamp(46px, 6vw, 82px);
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.breadcrumbs a:hover {
  color: var(--accent);
}

.legal-hero .breadcrumbs,
.legal-section .breadcrumbs {
  color: var(--ink-muted);
}

/* Forms */
.lead-form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field > span {
  color: currentColor;
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  color: var(--ink);
  border: 1px solid rgba(16, 25, 29, 0.18);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(16, 25, 29, 0.44);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 0 0 3px rgba(16, 25, 29, 0.08);
}

.field.is-error input,
.field.is-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(184, 66, 53, 0.09);
}

.field small,
.form-consent-error {
  min-height: 1em;
  color: var(--danger);
  font-size: 0.68rem;
  line-height: 1.25;
}

.check-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  font-size: 0.74rem;
  line-height: 1.45;
}

.check-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.check-field a {
  font-weight: 700;
}

.form-note {
  margin: -5px 0 0;
  color: var(--ink-muted);
  font-size: 0.7rem;
  text-align: center;
}

.form-status {
  min-height: 0;
  padding: 0;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-status:not(:empty) {
  padding: 11px 13px;
}

.form-status.is-success {
  color: #164b33;
  background: rgba(45, 122, 85, 0.13);
}

.form-status.is-error {
  color: #70241b;
  background: rgba(184, 66, 53, 0.12);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.button-loader {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(16, 25, 29, 0.28);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.button.is-loading .button-loader {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  padding-block: clamp(72px, 8vw, 118px) 34px;
  color: var(--paper-light);
  background: #080f12;
}

.site-footer__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  padding-bottom: clamp(58px, 7vw, 94px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer__lead h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5.3vw, 5.3rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.7fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  padding-block: 70px 64px;
}

.site-footer__brand p {
  max-width: 320px;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.86rem;
}

.brand--footer {
  color: var(--paper-light);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h3 {
  margin-bottom: 12px;
  color: rgba(255, 253, 248, 0.42);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.8rem;
  font-style: normal;
  text-decoration: none;
}

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

.footer-contact__phone {
  color: var(--paper-light) !important;
  font-size: 1.1rem !important;
  font-weight: 750;
}

.site-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.69rem;
}

.site-footer__bottom p {
  margin: 0 0 4px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-legal a,
.footer-legal button {
  padding: 0;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__disclaimer {
  max-width: 920px;
  margin: 25px 0 0;
  color: rgba(255, 253, 248, 0.34);
  font-size: 0.65rem;
  line-height: 1.55;
}

/* Modal, cookie, mobile CTA */
.modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 12, 0.76);
  backdrop-filter: blur(9px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(30px, 5vw, 52px);
  background: var(--paper-light);
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
}

.modal__panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.modal__panel > p {
  margin-bottom: 28px;
  color: var(--ink-muted);
}

.modal__close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.cookie-banner {
  position: fixed;
  z-index: 450;
  right: 24px;
  bottom: 24px;
  left: auto;
  display: grid;
  width: min(460px, calc(100% - 48px));
  max-width: none;
  gap: 14px;
  margin: 0;
  padding: 18px;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.86rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

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

.cookie-banner__actions .button {
  min-width: 0;
  white-space: normal;
}

.mobile-cta {
  display: none;
}

.noscript {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px;
  color: var(--ink);
  background: var(--accent);
  font-size: 0.8rem;
  text-align: center;
}

/* Reveal */
[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero--home {
  min-height: calc(100svh - 34px - var(--header-height));
  padding-block: clamp(76px, 9vw, 142px) 42px;
  color: var(--paper-light);
  background:
    radial-gradient(circle at 77% 38%, rgba(215, 255, 69, 0.10), transparent 30%),
    linear-gradient(125deg, #10191d 0%, #0c1519 60%, #152227 100%);
}

@media (min-width: 1121px) {
  .hero--home {
    padding-top: clamp(64px, 5vw, 88px);
  }
}

.hero-grid,
.service-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.hero--home::before {
  position: absolute;
  top: -18vw;
  right: -11vw;
  width: min(56vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 255, 69, 0.18);
  border-radius: 50%;
  content: "";
}

.hero--home::after {
  position: absolute;
  top: 9%;
  right: 8%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 0 18px rgba(215, 255, 69, 0.06), 0 0 0 42px rgba(215, 255, 69, 0.025);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.75fr);
  gap: clamp(46px, 8vw, 114px);
  align-items: center;
}

.hero__copy {
  max-width: 820px;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__eyebrow span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow span:first-child::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.hero__eyebrow span + span {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__copy h1 {
  max-width: 900px;
  margin-bottom: 28px;
}

.hero__copy h1 em,
.service-hero h1 em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 35px;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1.05rem, 1.65vw, 1.34rem);
  line-height: 1.55;
}

.hero__actions,
.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  align-items: center;
}

.hero__micro {
  max-width: 620px;
  margin: 25px 0 0;
  padding-left: 17px;
  color: rgba(255, 253, 248, 0.43);
  border-left: 2px solid rgba(215, 255, 69, 0.5);
  font-size: 0.72rem;
  line-height: 1.55;
}

.strategy-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 28px;
  color: var(--ink);
  background: var(--paper-light);
  border-radius: 4px 4px 46px 4px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.26);
  isolation: isolate;
  transform: rotate(1.2deg);
}

.strategy-card::before {
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: -95px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  opacity: 0.75;
  filter: blur(1px);
}

.strategy-card__top,
.service-outcome__head,
.evidence-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.live-indicator i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(45, 122, 85, 0.1);
}

.strategy-card__problem {
  display: grid;
  gap: 8px;
  margin: 34px 0 30px;
}

.strategy-card__problem small {
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strategy-card__problem strong {
  max-width: 330px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.strategy-card__steps {
  position: relative;
  z-index: 2;
  display: grid;
}

.strategy-card__steps > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.strategy-card__steps span {
  color: var(--ink-muted);
  font-size: 0.64rem;
  font-weight: 800;
}

.strategy-card__steps p {
  max-width: 280px;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1.4;
}

.strategy-card__result {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 27px;
  left: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 25, 29, 0.24);
}

.strategy-card__result span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.strategy-card__result strong {
  font-size: 0.95rem;
  text-align: right;
}

.strategy-card__orbit {
  position: absolute;
  z-index: -1;
  right: -64px;
  bottom: -72px;
  width: 345px;
  height: 345px;
  fill: none;
  stroke: rgba(16, 25, 29, 0.22);
  stroke-width: 1;
}

.hero-metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(70px, 8vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-metrics > div {
  display: grid;
  gap: 6px;
  min-height: 112px;
  align-content: center;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-metrics > div:first-child {
  padding-left: 0;
}

.hero-metrics > div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  color: var(--paper-light);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-metrics span {
  max-width: 200px;
  color: rgba(255, 253, 248, 0.49);
  font-size: 0.66rem;
  line-height: 1.35;
}

.metrics-note {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.33);
  font-size: 0.62rem;
}

/* Home services */
.problem-nav {
  overflow: hidden;
}

.problem-nav::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--line);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 365px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.38);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  isolation: isolate;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 6;
}

.service-card:nth-child(n+3) {
  grid-column: span 4;
}

.service-card::after {
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -95px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transition: transform 300ms ease, background 300ms ease;
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(16, 25, 29, 0.32);
  background: var(--paper-light);
  box-shadow: var(--shadow-soft);
  transform: translateY(-7px);
}

.service-card:hover::after {
  background: var(--accent);
  transform: scale(1.55);
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 780;
}

.service-card__top span:last-child {
  font-size: 1.25rem;
  transition: transform 220ms ease;
}

.service-card:hover .service-card__top span:last-child {
  transform: translate(4px, -4px);
}

.service-card > small {
  margin-bottom: 10px;
  color: var(--ink-muted);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 370px;
  margin-bottom: 13px;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
}

.service-card p {
  max-width: 470px;
  margin-bottom: 22px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.service-card__tags,
.service-hero__tags,
.price-points,
.contact-band__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-card__tags span,
.service-hero__tags span,
.price-points span,
.contact-band__facts span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 720;
  line-height: 1;
}

/* Differentiator */
.differentiator {
  overflow: hidden;
}

.differentiator::before {
  position: absolute;
  right: -12vw;
  bottom: -30vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(215, 255, 69, 0.11);
  border-radius: 50%;
  content: "";
}

.differentiator__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(60px, 9vw, 132px);
  align-items: center;
}

.differentiator__statement h2 {
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 4.7vw, 4.8rem);
}

.differentiator__statement p {
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 1rem;
}

.evidence-board {
  position: relative;
  min-height: 560px;
  padding: 28px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 22px 22px 0 rgba(215, 255, 69, 0.11);
}

.evidence-board__main {
  position: relative;
  height: 470px;
}

.evidence-board__main > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(16, 25, 29, 0.25);
  stroke-dasharray: 5 6;
  stroke-width: 1;
}

.evidence-node,
.evidence-core {
  position: absolute;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.evidence-node {
  width: 150px;
  height: 95px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.evidence-node strong {
  font-size: 1.05rem;
}

.evidence-node span {
  color: var(--ink-muted);
  font-size: 0.58rem;
}

.evidence-node--law {
  top: 44px;
  left: 0;
}

.evidence-node--fact {
  top: 50px;
  right: 0;
}

.evidence-node--value {
  right: calc(50% - 75px);
  bottom: 8px;
}

.evidence-core {
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  padding: 30px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent);
  transform: translate(-50%, -48%);
}

.evidence-core span {
  margin-bottom: 8px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-core strong {
  font-size: 1.35rem;
  line-height: 1.08;
}

/* Start section */
.start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.start-card {
  position: relative;
  min-height: 310px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.start-card__number {
  display: block;
  margin-bottom: 100px;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 780;
}

.start-card h3 {
  margin-bottom: 13px;
}

.start-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.start-card--accent {
  background: var(--accent);
}

.start-card--accent::before {
  position: absolute;
  top: 31px;
  right: 31px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 25, 29, 0.28);
  border-radius: 50%;
  content: "↘";
  font-size: 1.2rem;
  line-height: 45px;
  text-align: center;
}

/* Scenarios */
.scenarios {
  background: var(--paper-light);
}

.scenarios__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 132px);
}

.scenarios__intro {
  position: sticky;
  top: 132px;
  align-self: start;
}

.scenarios__intro h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.7vw, 4.75rem);
}

.scenarios__intro p {
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--ink-muted);
}

.scenario-list {
  display: grid;
}

.scenario {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.scenario:last-child {
  border-bottom: 1px solid var(--line);
}

.scenario__index {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 780;
}

.scenario h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
}

.scenario p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.scenario > a {
  font-size: 1.3rem;
  text-decoration: none;
  transition: transform 180ms ease;
}

.scenario > a:hover {
  transform: translate(4px, -4px);
}

/* Formats */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.format-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.34);
}

.format-card > span {
  margin-bottom: auto;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 780;
}

.format-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.format-card p {
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.format-card small {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.format-card--featured {
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-18px);
  box-shadow: var(--shadow-soft);
}

.format-card--featured > span,
.format-card--featured p {
  color: rgba(255, 253, 248, 0.62);
}

.format-card--featured small {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--accent);
}

/* FAQ */
.faq-section {
  background: var(--paper-light);
}

.faq-section__grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(56px, 9vw, 128px);
  align-items: start;
}

.faq-section__intro {
  position: sticky;
  top: 132px;
}

.faq-section__intro h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.55rem);
}

.faq-section__intro p {
  max-width: 420px;
  color: var(--ink-muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__item h3 {
  margin: 0;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}

.accordion__item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 34px;
  gap: 30px;
  align-items: center;
  padding: 27px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  font-weight: 720;
  text-align: left;
}

.accordion__item button i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion__item button i::before,
.accordion__item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion__item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__panel p {
  max-width: 760px;
  margin: -4px 50px 28px 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* Contact conversion band */
.contact-band {
  overflow: hidden;
  color: var(--paper-light);
  background:
    linear-gradient(110deg, rgba(215, 255, 69, 0.05), transparent 45%),
    var(--ink-soft);
}

.contact-band::before {
  position: absolute;
  top: -190px;
  left: 4vw;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(215, 255, 69, 0.15);
  border-radius: 50%;
  content: "";
}

.contact-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.75fr);
  gap: clamp(58px, 10vw, 142px);
  align-items: center;
}

.contact-band__copy {
  position: relative;
  z-index: 1;
}

.contact-band__copy h2 {
  margin-bottom: 25px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.contact-band__copy > p {
  max-width: 600px;
  color: rgba(255, 253, 248, 0.65);
}

.contact-band__facts {
  margin-top: 30px;
}

.contact-band__facts span {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 253, 248, 0.75);
}

.contact-band__form {
  position: relative;
  z-index: 1;
  padding: clamp(27px, 4vw, 44px);
  color: var(--ink);
  background: var(--paper-light);
  border-radius: 2px 2px 34px 2px;
  box-shadow: var(--shadow);
}

/* Service hero */
.service-hero {
  position: relative;
  overflow: hidden;
  padding-block: 45px clamp(84px, 10vw, 150px);
  color: var(--paper-light);
  background:
    radial-gradient(circle at 82% 42%, rgba(215, 255, 69, 0.12), transparent 31%),
    var(--ink);
}

.service-hero::after {
  position: absolute;
  top: 13%;
  right: -8%;
  width: min(48vw, 720px);
  height: min(48vw, 720px);
  border: 1px solid rgba(215, 255, 69, 0.16);
  border-radius: 50%;
  content: "";
}

.service-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.62fr);
  gap: clamp(55px, 9vw, 126px);
  align-items: end;
}

.service-hero__copy h1 {
  max-width: 900px;
  margin-bottom: 27px;
  font-size: clamp(3.45rem, 7vw, 7rem);
}

.service-hero__copy > p {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
}

.service-hero__tags {
  margin-top: 34px;
}

.service-hero__tags span {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 253, 248, 0.66);
}

.service-outcome {
  position: relative;
  min-height: 385px;
  padding: 28px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 16px 16px 0 rgba(215, 255, 69, 0.14);
}

.service-outcome::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  content: "↘";
  color: var(--ink);
  background: var(--accent);
  font-size: 1.5rem;
  line-height: 62px;
  text-align: center;
}

.service-outcome > strong {
  display: block;
  max-width: 320px;
  margin: 54px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.service-outcome > p {
  max-width: 320px;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.service-outcome__line {
  width: 100%;
  height: 1px;
  margin: 32px 0 13px;
  background: var(--line);
}

.service-outcome > small {
  display: block;
  max-width: 250px;
  color: var(--ink-muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

/* Service situations */
.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.situation-card {
  min-height: 280px;
  padding: 28px;
  background: var(--paper);
}

.situation-card > span {
  display: block;
  margin-bottom: 74px;
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 780;
}

.situation-card h3 {
  margin-bottom: 12px;
}

.situation-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

/* Scope */
.scope-section__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(58px, 10vw, 138px);
}

.scope-section__intro {
  position: sticky;
  top: 132px;
  align-self: start;
}

.scope-section__intro h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.6vw, 4.75rem);
}

.scope-section__intro p {
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--ink-muted);
}

.scope-list {
  border-top: 1px solid var(--line);
}

.scope-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.scope-item > span {
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 780;
}

.scope-item h3 {
  margin-bottom: 9px;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.scope-item p {
  max-width: 640px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

/* Process */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-track li {
  position: relative;
  min-height: 315px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-track li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 57px;
  right: -10px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "›";
  color: var(--ink-muted);
  background: var(--paper);
  font-size: 0.8rem;
}

.process-track__number {
  margin-bottom: 100px;
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 780;
}

.process-track h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.process-track p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.76rem;
}

/* Service value */
.value-section__grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(58px, 10vw, 136px);
  align-items: start;
}

.value-section__copy h2 {
  margin-bottom: 25px;
  font-size: clamp(2.65rem, 4.9vw, 4.9rem);
}

.value-section__copy p {
  color: rgba(255, 253, 248, 0.63);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.value-grid article {
  min-height: 265px;
  padding: 27px;
  background: var(--ink);
}

.value-grid article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 63px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.68rem;
}

.value-grid h3 {
  margin-bottom: 11px;
}

.value-grid p {
  margin: 0;
  color: rgba(255, 253, 248, 0.57);
  font-size: 0.78rem;
}

/* Editorial SEO content */
.editorial-section {
  background: var(--paper-light);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 800px);
  gap: clamp(70px, 12vw, 170px);
  justify-content: start;
}

.editorial-nav {
  position: sticky;
  top: 132px;
  align-self: start;
}

.editorial-nav nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.editorial-nav a {
  padding: 15px 0;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color 160ms ease, padding-left 160ms ease;
}

.editorial-nav a:hover,
.editorial-nav a.is-active {
  padding-left: 9px;
  color: var(--ink);
}

.editorial-nav a.is-active {
  border-left: 3px solid var(--accent-dark);
}

.editorial-content {
  display: grid;
  gap: clamp(72px, 9vw, 112px);
}

.editorial-content article {
  scroll-margin-top: 130px;
}

.editorial-content h2 {
  margin-bottom: 27px;
  font-size: clamp(2.25rem, 4vw, 3.85rem);
}

.editorial-content p,
.editorial-content li {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.editorial-content ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.editorial-content li {
  position: relative;
  padding-left: 28px;
}

.editorial-content li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 13px;
  height: 2px;
  content: "";
  background: var(--accent-dark);
}

.editorial-note {
  margin-top: 28px;
  padding: 24px 26px;
  border-left: 4px solid var(--accent-dark);
  background: var(--paper);
}

.editorial-note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editorial-note p {
  margin: 0;
  font-size: 0.85rem;
}

/* Price / Related */
.price-section {
  background: var(--paper-deep);
}

.price-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(350px, 0.72fr);
  gap: clamp(60px, 12vw, 170px);
  align-items: start;
}

.price-section h2 {
  max-width: 780px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.price-section__copy > p {
  margin-bottom: 26px;
  color: var(--ink-muted);
  font-size: 1rem;
}

.price-points {
  margin-bottom: 30px;
}

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

.related-grid a {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.3);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.related-grid a:hover {
  background: var(--paper-light);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.related-grid span {
  color: var(--ink-muted);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-grid strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

/* Inner page heroes */
.inner-hero {
  position: relative;
  overflow: hidden;
  padding-block: 45px clamp(92px, 10vw, 150px);
  color: var(--paper-light);
  background: var(--ink);
}

.inner-hero::before {
  position: absolute;
  top: -45%;
  right: -8%;
  width: min(58vw, 800px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 255, 69, 0.13);
  border-radius: 50%;
  content: "";
}

.inner-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.15;
  background-image: linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 12.5% 100%;
  mask-image: linear-gradient(to right, transparent, #000 22%, #000 80%, transparent);
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.62fr);
  gap: clamp(56px, 10vw, 142px);
  align-items: end;
}

.inner-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.45rem, 7vw, 7rem);
}

.inner-hero__grid > div:last-child > p {
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 1.04rem;
}

/* Services catalog */
.catalog-intro {
  display: flex;
  max-width: 900px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.catalog-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-muted);
}

.catalog-grid {
  border-top: 1px solid var(--line);
}

.catalog-card {
  display: grid;
  grid-template-columns: 75px 1fr 50px;
  gap: clamp(25px, 4vw, 60px);
  align-items: center;
  min-height: 275px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 220ms ease, background 220ms ease;
}

.catalog-card:hover {
  padding-inline: 25px;
  background: var(--paper-light);
}

.catalog-card__number {
  align-self: start;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.catalog-card__body small {
  display: block;
  margin-bottom: 9px;
  color: var(--ink-muted);
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalog-card__body h2 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.catalog-card__body p {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.catalog-card__body > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-card__body > div span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 710;
}

.catalog-card__arrow {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 180ms ease, transform 180ms ease;
}

.catalog-card:hover .catalog-card__arrow {
  background: var(--accent);
  transform: translate(4px, -4px);
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  min-height: 515px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.38);
}

.audience-card--business {
  color: var(--paper-light);
  background: var(--ink);
}

.audience-card > span {
  display: block;
  margin-bottom: 92px;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-card--business > span {
  color: rgba(255, 253, 248, 0.5);
}

.audience-card h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.7vw, 3.65rem);
}

.audience-card ul {
  display: grid;
  gap: 10px;
  margin: 30px 0 38px;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-muted);
  font-size: 0.83rem;
}

.audience-card li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--accent-dark);
}

.audience-card--business li {
  color: rgba(255, 253, 248, 0.62);
}

/* Capabilities and model */
.capability-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.88fr);
  gap: clamp(60px, 11vw, 155px);
  align-items: center;
}

.capability-section__copy h2 {
  margin-bottom: 27px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.capability-section__copy p {
  max-width: 600px;
  color: var(--ink-muted);
}

.capability-stack {
  position: relative;
  display: grid;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: 18px 18px 0 var(--paper-deep);
}

.capability-stack > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.capability-stack > div:last-child {
  border-bottom: 0;
}

.capability-stack span {
  color: var(--ink-muted);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.capability-stack strong {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  letter-spacing: -.035em;
}

.model-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.model-track li {
  min-height: 300px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.model-track li > span {
  display: block;
  margin-bottom: 95px;
  color: var(--accent);
  font-size: .7rem;
  font-weight: 780;
}

.model-track h3 {
  margin-bottom: 12px;
}

.model-track p {
  margin: 0;
  color: rgba(255, 253, 248, .56);
  font-size: .76rem;
}

/* About */
.about-hero__grid,
.contacts-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, .72fr);
  gap: clamp(58px, 10vw, 145px);
  align-items: end;
}

.about-hero__grid h1,
.contacts-hero__grid h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.55rem, 7vw, 7rem);
}

.about-hero__quote {
  padding: 27px;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.about-hero__quote p {
  margin-bottom: 20px;
  color: rgba(255,253,248,.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-style: italic;
  line-height: 1.5;
}

.about-hero__quote span {
  color: rgba(255,253,248,.42);
  font-size: .67rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 780px);
  gap: clamp(68px, 12vw, 170px);
}

.about-story__aside {
  align-self: start;
}

.about-story__mark {
  display: grid;
  width: 168px;
  height: 168px;
  place-items: center;
  margin: 20px 0 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -.08em;
}

.about-story__aside p {
  color: var(--ink-muted);
  font-size: .78rem;
}

.about-story__content h2 {
  margin-bottom: 30px;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
}

.about-story__content p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.role-grid,
.principles-grid,
.preparation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.role-grid article,
.preparation-grid article {
  min-height: 315px;
  padding: 27px;
  background: var(--paper-deep);
}

.role-grid article > span,
.preparation-grid article > span,
.principles-grid article > span {
  display: block;
  margin-bottom: 90px;
  color: var(--ink-muted);
  font-size: .68rem;
  font-weight: 780;
}

.role-grid p,
.preparation-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: .78rem;
}

.numbers-section {
  background: var(--paper-light);
}

.numbers-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(480px, 1fr);
  gap: clamp(62px, 11vw, 154px);
  align-items: center;
}

.numbers-section__grid > div:first-child h2 {
  margin-bottom: 25px;
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
}

.numbers-section__grid > div:first-child p {
  color: var(--ink-muted);
}

.numbers-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.numbers-board > div {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.numbers-board strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.numbers-board span {
  display: block;
  max-width: 180px;
  color: var(--ink-muted);
  font-size: .72rem;
  line-height: 1.45;
}

.principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.14);
}

.principles-grid article {
  min-height: 295px;
  padding: 27px;
  background: var(--ink);
}

.principles-grid article > span {
  color: var(--accent);
}

.principles-grid p {
  margin: 0;
  color: rgba(255,253,248,.56);
  font-size: .78rem;
}

.requisites-section__grid {
  display: grid;
  grid-template-columns: minmax(280px, .64fr) minmax(0, 1.2fr);
  gap: clamp(58px, 11vw, 154px);
}

.requisites-section__grid > div h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
}

.requisites-section__grid > div p {
  color: var(--ink-muted);
}

.requisites {
  margin: 0;
  border-top: 1px solid var(--line);
}

.requisites > div {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.requisites dt {
  color: var(--ink-muted);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.requisites dd {
  margin: 0;
  font-size: .86rem;
  font-weight: 650;
}

/* Contacts */
.contacts-hero__grid > div:first-child > p {
  max-width: 820px;
  margin-top: 27px;
  margin-bottom: 0;
  color: rgba(255,253,248,.67);
  font-size: 1.08rem;
}

.contacts-quick {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.18);
}

.contacts-quick a {
  display: grid;
  gap: 5px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
}

.contacts-quick small {
  color: rgba(255,253,248,.42);
  font-size: .65rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contacts-quick strong {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.contacts-quick span {
  color: var(--accent);
  font-size: .7rem;
  font-weight: 750;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .75fr);
  gap: 20px;
  align-items: stretch;
}

.office-card {
  display: grid;
  min-height: 635px;
  grid-template-rows: 1.1fr .9fr;
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.office-card__visual {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background:
    linear-gradient(rgba(16,25,29,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,25,29,.08) 1px, transparent 1px),
    var(--paper-deep);
  background-size: 40px 40px;
}

.office-card__roads i {
  position: absolute;
  display: block;
  height: 18px;
  border-top: 2px solid rgba(16,25,29,.26);
  border-bottom: 2px solid rgba(16,25,29,.26);
  transform-origin: center;
}

.office-card__roads i:nth-child(1) {
  top: 49%;
  left: -10%;
  width: 125%;
  transform: rotate(-13deg);
}

.office-card__roads i:nth-child(2) {
  top: 25%;
  left: 25%;
  width: 95%;
  transform: rotate(63deg);
}

.office-card__roads i:nth-child(3) {
  bottom: 10%;
  left: -3%;
  width: 80%;
  transform: rotate(31deg);
}

.office-card__pin {
  position: absolute;
  z-index: 3;
  top: 44%;
  left: 52%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border: 7px solid rgba(255,253,248,.75);
  border-radius: 50% 50% 50% 8px;
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  transform: rotate(-45deg);
}

.office-card__pin::before {
  content: "38";
  transform: rotate(45deg);
}

.office-card__visual > .office-card__pin {
  font-size: 0;
}

.office-card__visual > p {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 20px;
  margin: 0;
  padding: 9px 12px;
  color: var(--paper-light);
  background: var(--ink);
  font-size: .7rem;
  font-weight: 750;
}

.office-card__body {
  padding: clamp(28px, 4vw, 45px);
}

.office-card__body h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.office-card__body p {
  max-width: 560px;
  margin-bottom: 25px;
  color: var(--ink-muted);
}

.contact-form-card {
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.contact-form-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
}

.contact-form-card > p {
  margin-bottom: 26px;
  color: var(--ink-muted);
}

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

.contact-channels__grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(450px, 1fr);
  gap: clamp(60px, 11vw, 150px);
}

.contact-channels__grid > div:first-child h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.contact-channels__grid > div:first-child p {
  color: var(--ink-muted);
}

.channel-list {
  border-top: 1px solid var(--line);
}

.channel-list > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 28px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.channel-list span {
  grid-row: span 2;
  color: var(--ink-muted);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.channel-list strong {
  font-size: 1.2rem;
}

.channel-list p {
  margin: 0;
  color: var(--ink-muted);
  font-size: .8rem;
}

/* Legal */
.legal-hero {
  padding-block: 45px 95px;
  background: var(--paper-deep);
}

.legal-hero .breadcrumbs {
  margin-bottom: 60px;
}

.legal-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.legal-hero > .container > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: .76rem;
}

.legal-section {
  background: var(--paper-light);
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 800px);
  gap: clamp(70px, 12vw, 170px);
}

.legal-layout > aside {
  position: sticky;
  top: 132px;
  align-self: start;
}

.legal-layout > aside nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-layout > aside a {
  padding: 14px 0;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  font-size: .71rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.legal-content {
  display: grid;
  gap: 60px;
}

.legal-content section h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.legal-content p,
.legal-content li {
  color: var(--ink-muted);
  font-size: .92rem;
  line-height: 1.78;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-notice {
  padding: 24px;
  border-left: 4px solid var(--signal);
  background: var(--paper-deep);
}

.legal-notice strong {
  display: block;
  margin-bottom: 6px;
  font-size: .74rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.legal-notice p {
  margin: 0;
  font-size: .82rem;
}

/* Error page */
.error-page {
  min-height: 76vh;
  display: grid;
  align-items: center;
  padding-block: 80px;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
}

.error-page__inner {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.error-page__code {
  color: var(--accent);
  font-size: clamp(8rem, 21vw, 18rem);
  font-weight: 850;
  line-height: .75;
  letter-spacing: -.11em;
}

.error-page h1 {
  max-width: 650px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.error-page p {
  max-width: 580px;
  color: rgba(255,253,248,.62);
}

.error-page__inner > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Grid and flex shrink guards */
.hero__inner > *,
.service-hero__grid > *,
.inner-hero__grid > *,
.about-hero__grid > *,
.contacts-hero__grid > *,
.section-head--split > *,
.differentiator__grid > *,
.scenarios__grid > *,
.faq-section__grid > *,
.contact-band__grid > *,
.scope-section__grid > *,
.value-section__grid > *,
.price-section__grid > *,
.capability-section__grid > *,
.about-story__grid > *,
.numbers-section__grid > *,
.requisites-section__grid > *,
.contact-details__grid > *,
.contact-channels__grid > *,
.legal-layout > *,
.editorial-layout > *,
.error-page__inner > *,
.catalog-card > *,
.audience-grid > *,
.role-grid > *,
.principles-grid > *,
.preparation-grid > *,
.value-grid > *,
.service-grid > *,
.related-grid > *,
.form-grid > *,
.site-footer__grid > *,
.site-footer__lead > * {
  min-width: 0;
}

.catalog-card__body,
.audience-card,
.service-outcome,
.value-grid,
.office-card,
.contact-form-card,
.contacts-quick,
.legal-content {
  min-width: 0;
  max-width: 100%;
}

.eyebrow,
.text-link {
  max-width: 100%;
  flex-wrap: wrap;
}

.eyebrow::before {
  flex: 0 0 28px;
}

p,
li,
dd,
a,
strong,
small,
span {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 74px;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-header__actions {
    grid-column: 3;
  }

  .menu-toggle {
    display: block;
  }

  .hero__inner,
  .service-hero__grid,
  .inner-hero__grid,
  .about-hero__grid,
  .contacts-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .64fr);
    gap: 54px;
  }

  .hero__copy h1,
  .service-hero__copy h1,
  .inner-hero h1,
  .about-hero__grid h1,
  .contacts-hero__grid h1 {
    font-size: clamp(3.2rem, 7vw, 5.8rem);
  }

  .strategy-card {
    min-height: 490px;
  }

  .differentiator__grid {
    grid-template-columns: minmax(0, .8fr) minmax(420px, 1.1fr);
    gap: 55px;
  }

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

  .process-track li:nth-child(3)::after {
    display: none;
  }

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

  .contact-details__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
  }
}

@media (max-width: 900px) {
  :root {
    --section: 90px;
  }

  .section-head--split,
  .hero__inner,
  .service-hero__grid,
  .inner-hero__grid,
  .differentiator__grid,
  .scenarios__grid,
  .faq-section__grid,
  .contact-band__grid,
  .scope-section__grid,
  .value-section__grid,
  .price-section__grid,
  .capability-section__grid,
  .about-hero__grid,
  .about-story__grid,
  .numbers-section__grid,
  .requisites-section__grid,
  .contacts-hero__grid,
  .contact-details__grid,
  .contact-channels__grid,
  .legal-layout,
  .editorial-layout,
  .error-page__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero--home {
    min-height: auto;
  }

  .hero__copy {
    max-width: 760px;
  }

  .strategy-card {
    width: min(100%, 560px);
    min-height: 510px;
    justify-self: end;
  }

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

  .hero-metrics > div:nth-child(2) {
    border-right: 0;
  }

  .hero-metrics > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .hero-metrics > div:nth-child(3) {
    padding-left: 0;
  }

  .service-card:nth-child(n) {
    grid-column: span 6;
  }

  .evidence-board {
    width: min(100%, 620px);
    justify-self: end;
  }

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

  .scenarios__intro,
  .faq-section__intro,
  .scope-section__intro,
  .editorial-nav,
  .legal-layout > aside {
    position: static;
  }

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

  .format-card {
    min-height: 260px;
  }

  .format-card--featured {
    transform: none;
  }

  .contact-band__form {
    width: min(100%, 620px);
  }

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

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

  .process-track li:nth-child(2n)::after {
    display: none;
  }

  .editorial-layout,
  .legal-layout {
    max-width: 820px;
  }

  .editorial-nav nav,
  .legal-layout > aside nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .editorial-nav a,
  .legal-layout > aside a {
    padding-right: 16px;
  }

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

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

  .audience-card {
    min-height: 450px;
  }

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

  .office-card {
    min-height: auto;
  }

  .contact-form-card {
    width: min(100%, 620px);
  }

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

  .site-footer__lead {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__lead .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
    --section: 76px;
    --header-height: 66px;
  }

  body {
    padding-bottom: 62px;
    font-size: 16px;
  }

  html {
    scroll-padding-top: 85px;
  }

  h1 {
    font-size: clamp(1.9rem, 9.6vw, 3.9rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9.6vw, 3.1rem);
  }

  h1,
  h2,
  h3 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .topline {
    display: none;
  }

  .site-header__inner {
    min-height: var(--header-height);
  }

  .brand__mark {
    width: 39px;
    height: 39px;
  }

  .brand__copy small {
    display: none;
  }

  .site-header__actions > .button {
    display: none;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  .mobile-menu__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 25px 35px;
  }

  .mobile-menu nav {
    grid-template-columns: 1fr;
  }

  .mobile-menu nav a {
    padding: 10px 0;
    font-size: .94rem;
  }

  .mobile-menu__contact {
    align-items: stretch;
  }

  .hero--home,
  .service-hero,
  .inner-hero {
    padding-block: 48px 76px;
  }

  .service-hero,
  .inner-hero {
    padding-top: 28px;
  }

  .breadcrumbs {
    margin-bottom: 42px;
    font-size: .61rem;
  }

  .hero__inner,
  .service-hero__grid,
  .inner-hero__grid,
  .about-hero__grid,
  .contacts-hero__grid {
    gap: 42px;
  }

  .hero__eyebrow {
    margin-bottom: 22px;
    font-size: .6rem;
  }

  .hero__eyebrow span + span {
    padding-left: 0;
    border-left: 0;
  }

  .hero__copy h1 {
    font-size: clamp(3rem, 15vw, 4.45rem);
  }

  .service-hero__copy h1,
  .inner-hero h1,
  .about-hero__grid h1,
  .contacts-hero__grid h1 {
    font-size: clamp(1.9rem, 9.6vw, 3.9rem);
  }

  .hero__lead,
  .service-hero__copy > p {
    font-size: 1rem;
  }

  .hero__actions,
  .service-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .service-hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link,
  .service-hero__actions .text-link {
    align-self: flex-start;
  }

  .strategy-card {
    width: 100%;
    min-height: 460px;
    padding: 22px;
    border-radius: 3px 3px 34px 3px;
    transform: none;
  }

  .strategy-card__problem {
    margin-block: 27px 20px;
  }

  .strategy-card__problem strong {
    font-size: 1.55rem;
  }

  .strategy-card__result {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .hero-metrics {
    margin-top: 60px;
  }

  .hero-metrics > div {
    min-height: 102px;
    padding: 16px;
  }

  .hero-metrics > div:first-child,
  .hero-metrics > div:nth-child(3) {
    padding-left: 0;
  }

  .hero-metrics strong {
    font-size: 1.35rem;
  }

  .section-head--split {
    gap: 24px;
  }

  .section-head {
    margin-bottom: 38px;
  }

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

  .service-card:nth-child(n) {
    grid-column: auto;
  }

  .service-card {
    min-height: 340px;
  }

  .differentiator__grid {
    gap: 48px;
  }

  .evidence-board {
    min-height: 445px;
    padding: 18px;
    box-shadow: 10px 10px 0 rgba(215,255,69,.1);
  }

  .evidence-board__main {
    height: 385px;
  }

  .evidence-node {
    width: 104px;
    height: 80px;
    padding: 8px;
  }

  .evidence-node strong {
    font-size: .85rem;
  }

  .evidence-node span {
    font-size: .49rem;
  }

  .evidence-core {
    width: 155px;
    height: 155px;
    padding: 20px;
  }

  .evidence-core strong {
    font-size: 1rem;
  }

  .evidence-node--value {
    right: calc(50% - 52px);
  }

  .start-grid,
  .situation-grid,
  .value-grid,
  .process-track,
  .model-track,
  .role-grid,
  .preparation-grid,
  .principles-grid,
  .numbers-board,
  .audience-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .start-card,
  .situation-card,
  .process-track li,
  .model-track li,
  .role-grid article,
  .preparation-grid article,
  .principles-grid article,
  .value-grid article {
    min-height: 240px;
  }

  .start-card__number,
  .situation-card > span,
  .process-track__number,
  .model-track li > span,
  .role-grid article > span,
  .preparation-grid article > span,
  .principles-grid article > span,
  .value-grid article > span {
    margin-bottom: 52px;
  }

  .process-track li::after {
    display: none !important;
  }

  .scenario {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }

  .scenario > a {
    display: none;
  }

  .format-card {
    min-height: 255px;
  }

  .faq-section__grid,
  .contact-band__grid,
  .scope-section__grid,
  .value-section__grid {
    gap: 42px;
  }

  .accordion__item button {
    grid-template-columns: 1fr 30px;
    gap: 16px;
    padding: 22px 0;
  }

  .accordion__panel p {
    margin-right: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-band__form,
  .contact-form-card {
    padding: 23px;
  }

  .service-outcome {
    min-height: 340px;
    padding: 23px;
  }

  .service-outcome > strong {
    margin-top: 42px;
  }

  .scope-item {
    grid-template-columns: 35px 1fr;
    gap: 13px;
  }

  .editorial-nav nav,
  .legal-layout > aside nav {
    grid-template-columns: 1fr;
  }

  .editorial-content p,
  .editorial-content li,
  .legal-content p,
  .legal-content li {
    font-size: .9rem;
  }

  .catalog-intro {
    display: grid;
    gap: 14px;
  }

  .catalog-card {
    grid-template-columns: 35px 1fr;
    gap: 15px;
    min-height: 260px;
    padding-block: 28px;
  }

  .catalog-card:hover {
    padding-inline: 0;
    background: transparent;
  }

  .catalog-card__arrow {
    display: none;
  }

  .audience-card {
    min-height: 470px;
    padding: 25px;
  }

  .audience-card > span {
    margin-bottom: 62px;
  }

  .capability-section__grid,
  .numbers-section__grid,
  .contact-channels__grid {
    gap: 42px;
  }

  .capability-stack {
    padding: 17px;
    box-shadow: 9px 9px 0 var(--paper-deep);
  }

  .capability-stack > div {
    display: grid;
    gap: 5px;
    padding: 17px 0;
  }

  .about-story__mark {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }

  .about-hero__quote {
    padding-inline: 0;
  }

  .requisites > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contacts-quick strong {
    overflow-wrap: anywhere;
  }

  .office-card {
    grid-template-rows: auto auto;
  }

  .office-card__visual {
    min-height: 260px;
  }

  .channel-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .channel-list span {
    grid-row: auto;
    margin-bottom: 8px;
  }

  .legal-hero {
    padding-block: 30px 72px;
  }

  .legal-hero h1 {
    font-size: clamp(1.9rem, 9.6vw, 3.9rem);
  }

  .error-page__inner {
    gap: 42px;
  }

  .error-page__code {
    font-size: 9rem;
  }

  .site-footer {
    padding-bottom: 35px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 55px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100svh - 24px);
    gap: 12px;
    padding: 14px;
    overflow-y: auto;
  }

  .cookie-banner p {
    font-size: .68rem;
    line-height: 1.35;
  }

  .cookie-banner__actions .button {
    min-height: 48px;
    padding: 8px 10px;
    font-size: .7rem;
  }

  .modal {
    padding: 0;
    align-items: end;
  }

  .modal__panel {
    width: 100%;
    max-height: calc(100svh - 18px);
    padding: 28px 20px 30px;
    border-radius: 22px 22px 0 0;
  }

  .mobile-cta {
    position: fixed;
    z-index: 300;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: .76fr 1.24fr;
    min-height: 62px;
    color: var(--paper-light);
    background: #080f12;
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .mobile-cta a,
  .mobile-cta button {
    display: grid;
    place-items: center;
    padding: 10px;
    border: 0;
    font-size: .73rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-cta button {
    color: var(--ink);
    background: var(--accent);
  }

  body.has-cookie-banner .mobile-cta {
    display: none;
  }
}

@media (max-width: 420px) {
  .cookie-banner {
    bottom: 4px;
    gap: 8px;
    padding: 12px;
  }

  .cookie-banner p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
