:root {
  color-scheme: dark;
  --ink-950: #05070a;
  --ink-900: #0a0f14;
  --ink-820: #101820;
  --ink-760: #17212b;
  --paper: #f4f1ea;
  --paper-strong: #fbfaf6;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(7, 15, 20, 0.12);
  --text: #f7f8f4;
  --muted: rgba(247, 248, 244, 0.68);
  --muted-strong: rgba(247, 248, 244, 0.82);
  --dark-muted: rgba(7, 15, 20, 0.68);
  --accent: #d2a85a;
  --accent-strong: #f0c46c;
  --signal: #8fd7ca;
  --blue: #7da6c8;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --container: 1120px;
  --page-gutter: clamp(20px, 4vw, 48px);
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 44px;
  --space-8: 64px;
  --space-9: 88px;
  --text-sm: 13px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --display-sm: clamp(30px, 3.2vw, 42px);
  --display-md: clamp(34px, 3.7vw, 48px);
  --display-lg: clamp(46px, 5.5vw, 72px);
  --control-h: 48px;
  --card-pad: var(--space-5);
  --body: "Avenir Next", "Inter", "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --display: "SF Pro Display", "Avenir Next", "Inter", "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(210, 168, 90, 0.12), transparent 29rem),
    radial-gradient(circle at 88% 12%, rgba(143, 215, 202, 0.08), transparent 28rem),
    var(--ink-950);
  color: var(--text);
  font-family: var(--body);
  letter-spacing: 0;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-synthesis-weight: none;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
  text-wrap: balance;
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
}

p {
  text-wrap: pretty;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 10px 14px;
  color: var(--ink-950);
  font-weight: 800;
}

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

.shell {
  width: min(var(--container), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(var(--container), calc(100% - 32px));
  min-height: 62px;
  transform: translateX(-50%);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-4);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.74);
  padding: 8px 10px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(210, 168, 90, 0.46);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #17120a, #d2a85a);
  color: #fff8de;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: var(--space-1);
}

.nav-links a,
.header-cta,
.lang-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 9px 12px;
  color: var(--muted-strong);
  font-size: var(--text-sm);
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.header-cta:hover,
.lang-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.lang-link {
  min-width: 40px;
  border: 1px solid transparent;
  color: rgba(247, 248, 244, 0.62);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.lang-link.is-active {
  border-color: rgba(210, 168, 90, 0.32);
  background: rgba(210, 168, 90, 0.1);
  color: #ffe4a4;
}

.header-cta {
  border: 1px solid rgba(210, 168, 90, 0.36);
  background: rgba(210, 168, 90, 0.12);
  color: #ffe4a4;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 132px 0 var(--space-8);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.74) contrast(1.06) brightness(0.7);
  transform: scale(1.025);
}

.hero-field {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.9) 42%, rgba(5, 7, 10, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.18), var(--ink-950) 96%);
}

.hero-layout {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(0, 1fr) 348px;
  align-items: center;
  gap: var(--space-7);
}

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

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  border: 1px solid rgba(210, 168, 90, 0.28);
  border-radius: 999px;
  background: rgba(210, 168, 90, 0.09);
  padding: 6px 10px;
  color: #efd18a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.dark {
  border-color: rgba(7, 15, 20, 0.16);
  background: rgba(7, 15, 20, 0.06);
  color: #70511c;
}

h1 {
  max-width: 820px;
  margin-top: var(--space-5);
  color: #fff;
  font-size: var(--display-lg);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.012em;
}

.hero-lead {
  max-width: 680px;
  margin-top: var(--space-5);
  color: var(--muted-strong);
  font-size: var(--text-lg);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: var(--control-h);
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #f0c46c, #b98b38);
  color: #120e06;
  box-shadow: 0 18px 48px rgba(210, 168, 90, 0.22);
}

.btn-ghost {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}

.command-panel {
  display: grid;
  gap: var(--space-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(8, 12, 17, 0.72);
  padding: var(--space-4);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.panel-topline strong {
  border-radius: 999px;
  background: rgba(143, 215, 202, 0.14);
  padding: 6px 9px;
  color: #b9f2e8;
  font-size: 11px;
  text-transform: uppercase;
}

.metric-large {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: var(--space-5);
}

.metric-large span,
.metric-large small {
  color: #fff;
  font-size: clamp(42px, 4vw, 52px);
  font-weight: 880;
  line-height: 0.95;
}

.metric-large small {
  color: rgba(255, 255, 255, 0.58);
}

.metric-large p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.panel-grid div {
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: var(--space-3);
}

.panel-grid strong,
.panel-grid span {
  display: block;
}

.panel-grid strong {
  color: #fff;
  font-size: var(--text-lg);
}

.panel-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.section {
  position: relative;
  padding: var(--space-9) 0;
}

.intro-section,
.method-section,
.comparison-section {
  background: var(--paper);
  color: var(--ink-950);
}

.intro-grid,
.proof-layout,
.systems-layout,
.comparison-grid,
.faq-layout,
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.section h2 {
  margin-top: 18px;
  font-size: var(--display-md);
  font-weight: 850;
  line-height: 1.03;
}

.section-heading {
  max-width: 780px;
}

.section-heading > p:last-child,
.intro-copy p,
.proof-copy p,
.contact-copy p {
  margin-top: var(--space-4);
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.62;
}

.intro-copy p,
.contact-copy p,
.section-heading.dark > p:last-child {
  color: var(--dark-muted);
}

.intro-copy {
  display: grid;
  gap: var(--space-4);
  padding-top: var(--space-7);
}

.services-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--ink-950);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-7);
}

.service-card {
  min-height: 270px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032)),
    var(--ink-820);
  padding: var(--card-pad);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(210, 168, 90, 0.36);
  background:
    linear-gradient(180deg, rgba(210, 168, 90, 0.11), rgba(255, 255, 255, 0.035)),
    var(--ink-820);
}

.primary-card {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(210, 168, 90, 0.16), rgba(143, 215, 202, 0.045)),
    var(--ink-820);
}

.card-index {
  display: inline-flex;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.method-timeline h3 {
  margin-top: var(--space-6);
  color: #fff;
  font-size: clamp(21px, 1.7vw, 24px);
  line-height: 1.14;
}

.service-card p,
.method-timeline p {
  margin-top: var(--space-3);
  color: var(--muted);
  line-height: 1.62;
}

.service-card ul {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-5) 0 0;
  padding: 0;
  color: var(--muted-strong);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.42;
}

.service-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.proof-section {
  background: var(--ink-900);
}

.proof-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.proof-matrix div {
  min-height: 172px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: var(--card-pad);
}

.proof-matrix strong,
.proof-matrix span {
  display: block;
}

.proof-matrix strong {
  color: #fff;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1;
}

.proof-matrix span {
  margin-top: var(--space-4);
  color: var(--muted);
  line-height: 1.42;
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-7);
}

.method-timeline article {
  min-height: 260px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--ink-950);
  padding: var(--card-pad);
  box-shadow: 0 24px 70px rgba(7, 15, 20, 0.14);
}

.method-timeline article:nth-child(2) {
  background: #151811;
}

.method-timeline article:nth-child(3) {
  background: #101921;
}

.method-timeline article:nth-child(4) {
  background: #17120a;
}

.method-timeline span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.systems-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(143, 215, 202, 0.045), rgba(210, 168, 90, 0.04)),
    var(--ink-950);
}

.system-board {
  display: grid;
  gap: var(--space-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: var(--space-3);
}

.system-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: var(--space-4);
  align-items: center;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.42);
  padding: var(--space-4);
}

.system-row span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.system-row strong {
  color: var(--muted-strong);
  font-size: var(--text-lg);
  line-height: 1.36;
}

.comparison-table {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 80px rgba(7, 15, 20, 0.12);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.table-row + .table-row {
  border-top: 1px solid var(--line-light);
}

.table-row span {
  min-height: 66px;
  padding: var(--space-4);
  color: var(--dark-muted);
  line-height: 1.45;
}

.table-row span + span {
  border-left: 1px solid var(--line-light);
  color: rgba(7, 15, 20, 0.86);
  font-weight: 800;
}

.table-head span {
  min-height: 48px;
  background: rgba(7, 15, 20, 0.055);
  color: var(--ink-950);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-section {
  background: var(--ink-900);
}

.faq-list {
  display: grid;
  gap: var(--space-2);
}

details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: var(--space-4) var(--space-5);
}

summary {
  cursor: pointer;
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
}

details p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.contact-section {
  background: var(--paper);
  color: var(--ink-950);
  padding-top: var(--space-9);
}

.contact-panel {
  border: 1px solid rgba(7, 15, 20, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(210, 168, 90, 0.14), rgba(143, 215, 202, 0.08)),
    var(--paper-strong);
  padding: var(--space-6);
  box-shadow: 0 34px 100px rgba(7, 15, 20, 0.16);
}

.contact-signals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.contact-signals span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(7, 15, 20, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(7, 15, 20, 0.74);
  font-size: 13px;
  font-weight: 850;
}

form {
  display: grid;
  gap: var(--space-3);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(7, 15, 20, 0.72);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 15, 20, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  min-height: var(--control-h);
  padding: 13px 15px;
  color: var(--ink-950);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(7, 15, 20, 0.7) 50%),
    linear-gradient(135deg, rgba(7, 15, 20, 0.7) 50%, transparent 50%);
  background-position: calc(100% - 18px) 54%, calc(100% - 13px) 54%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(184, 139, 56, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(210, 168, 90, 0.18);
}

.footer {
  border-top: 1px solid var(--line-dark);
  background: var(--ink-950);
  padding: var(--space-6) 0;
  color: var(--muted);
}

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

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: #fff;
  letter-spacing: 0.08em;
}

.footer span {
  margin-top: 4px;
  font-size: 14px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer a {
  color: #efd18a;
  font-weight: 750;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1), transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 980px) {
  :root {
    --page-gutter: 40px;
    --space-9: 80px;
    --display-lg: clamp(44px, 6.6vw, 58px);
    --display-md: clamp(32px, 4.8vw, 44px);
  }

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

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: var(--space-8);
  }

  .hero-layout {
    min-height: 0;
    gap: var(--space-6);
  }

  .hero-layout,
  .intro-grid,
  .proof-layout,
  .systems-layout,
  .comparison-grid,
  .faq-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .command-panel {
    max-width: 520px;
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .primary-card {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 28px;
    --space-8: 56px;
    --space-9: 64px;
    --card-pad: 20px;
    --control-h: 48px;
    --display-md: clamp(29px, 8.7vw, 36px);
  }

  .shell {
    width: min(100% - var(--page-gutter), var(--container));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: var(--space-2);
    min-height: 96px;
  }

  .brand-copy small,
  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

  .lang-link {
    min-width: 38px;
    min-height: 36px;
    padding: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 8px 9px;
    font-size: 13px;
  }

  .hero {
    padding: 126px 0 var(--space-8);
  }

  .hero-field {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.88), rgba(5, 7, 10, 0.94) 54%, var(--ink-950) 100%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.95), rgba(5, 7, 10, 0.5));
  }

  h1 {
    overflow-wrap: normal;
    margin-top: var(--space-4);
    font-size: clamp(36px, 10.4vw, 42px);
    line-height: 1.03;
  }

  html[lang="uk"] h1 {
    font-size: clamp(32px, 8.8vw, 37px);
    line-height: 1.05;
  }

  .hero-lead {
    margin-top: var(--space-4);
    line-height: 1.56;
  }

  .hero-actions {
    margin-top: var(--space-5);
  }

  .hero-lead,
  .section-heading > p:last-child,
  .intro-copy p,
  .proof-copy p,
  .contact-copy p {
    font-size: 16px;
  }

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

  .section {
    padding: var(--space-9) 0;
  }

  .section h2 {
    font-size: var(--display-md);
    line-height: 1.06;
  }

  .service-grid,
  .method-timeline,
  .proof-matrix {
    grid-template-columns: 1fr;
  }

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

  .command-panel {
    padding: var(--space-3);
  }

  .metric-large {
    padding: var(--space-4);
  }

  .metric-large span,
  .metric-large small {
    font-size: 40px;
  }

  .panel-grid div {
    min-height: 88px;
  }

  .primary-card {
    grid-column: auto;
  }

  .service-card,
  .method-timeline article {
    min-height: auto;
  }

  .system-row {
    grid-template-columns: 1fr;
  }

  .system-row {
    gap: 8px;
  }

  .comparison-table {
    display: grid;
    gap: var(--space-3);
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .table-head {
    display: none;
  }

  .comparison-table .table-row:not(.table-head) {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 42px rgba(7, 15, 20, 0.08);
  }

  .comparison-table .table-row + .table-row {
    border-top: 1px solid var(--line-light);
  }

  .comparison-table .table-row span {
    display: grid;
    gap: var(--space-2);
    min-height: auto;
    padding: var(--space-4);
    font-size: 15px;
    line-height: 1.5;
  }

  .comparison-table .table-row span::before {
    color: rgba(7, 15, 20, 0.48);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  html[lang="uk"] .comparison-table .table-row:not(.table-head) span:first-child::before {
    content: "Слабкий підхід";
  }

  html[lang="uk"] .comparison-table .table-row:not(.table-head) span:last-child::before {
    content: "Підхід MAQITRA";
  }

  html[lang="en"] .comparison-table .table-row:not(.table-head) span:first-child::before {
    content: "Weak approach";
  }

  html[lang="en"] .comparison-table .table-row:not(.table-head) span:last-child::before {
    content: "MAQITRA approach";
  }

  .comparison-table .table-row span + span {
    border-top: 1px solid var(--line-light);
    border-left: 0;
    background: rgba(255, 255, 255, 0.48);
  }

  .contact-panel {
    padding: var(--card-pad);
  }

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

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