:root {
  color-scheme: light;
  --ink: #11130f;
  --ink-soft: #2a2d27;
  --paper: #f4f4ee;
  --paper-strong: #ffffff;
  --line: #cccec3;
  --muted: #64685e;
  --accent: #f3c51c;
  --accent-strong: #ffd52a;
  --shell: 1160px;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(17, 19, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(244, 244, 238, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--accent);
  border: 2px solid var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 4px 4px 0 var(--ink);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 650;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-strong);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.88rem;
  box-shadow: 4px 4px 0 var(--ink);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 126px) 0 clamp(70px, 9vw, 116px);
  background-image:
    linear-gradient(rgba(17, 19, 15, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, 0.042) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(20px, calc((100vw - var(--shell)) / 2 - 42px));
  width: 8px;
  background: repeating-linear-gradient(to bottom, var(--ink) 0 1px, transparent 1px 10px);
  opacity: 0.25;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 3px;
  background: var(--accent);
}

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

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 6.4vw, 5.5rem);
  font-weight: 900;
}

h1 em {
  position: relative;
  z-index: 0;
  font-style: normal;
  white-space: nowrap;
}

h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 0.08em;
  left: -4px;
  height: 0.26em;
  background: var(--accent);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
}

h3 {
  font-size: 1.36rem;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  font-weight: 800;
  border-bottom: 2px solid var(--ink);
}

.text-link span {
  margin-left: 7px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.trust-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 9px;
  background: var(--accent);
  border: 1px solid var(--ink);
}

.work-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: white;
  box-shadow: 14px 14px 0 var(--accent);
}

.work-card-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #3a3e36;
  color: #b8bdb0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.status i {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(243, 197, 28, 0.1);
}

.circuit-line {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.circuit-line::before {
  content: "";
  position: absolute;
  right: 8px;
  left: 8px;
  height: 1px;
  background: #555a50;
}

.circuit-line span {
  z-index: 1;
  width: 15px;
  height: 15px;
  background: var(--ink);
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.work-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 3px 12px;
  padding: 18px 0;
  border-top: 1px solid #353930;
}

.work-list li > span {
  grid-row: span 2;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.work-list strong {
  font-size: 1.05rem;
}

.work-list small {
  color: #aeb3a6;
  font-size: 0.78rem;
}

.measure {
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, var(--accent) 0 1px, transparent 1px 8px);
  opacity: 0.8;
}

.section {
  padding: clamp(76px, 9vw, 120px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.services-preview {
  background: var(--paper-strong);
  border-block: 1px solid var(--line);
}

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

.service-grid article {
  min-height: 226px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease;
}

.service-grid article:hover {
  background: #faf5da;
}

.service-number {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
}

.service-grid p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 120px);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--accent);
  border: 1px solid var(--ink);
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.05rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.territory-strip {
  padding: 58px 0;
  background: var(--ink);
  color: white;
}

.territory-inner {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: end;
  gap: 70px;
}

.eyebrow.light {
  color: #bdc1b7;
}

.territory-inner h2 {
  margin-bottom: 0;
}

.territory-inner > p {
  margin: 0;
  color: #bdc1b7;
}

.contact-preview {
  background: var(--paper-strong);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: clamp(34px, 6vw, 66px);
  background: var(--accent);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.contact-card h2 {
  margin-bottom: 14px;
}

.contact-card p:last-child {
  max-width: 650px;
  margin-bottom: 0;
}

.button-dark {
  background: var(--ink);
  border-color: white;
  color: white;
  box-shadow: 5px 5px 0 white;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #242720;
  box-shadow: 2px 2px 0 white;
}

.site-footer {
  padding: 42px 0 92px;
  background: var(--ink);
  border-top: 1px solid #343830;
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
}

.footer-brand .brand-copy small,
.footer-inner > p {
  color: #aeb3a6;
}

.footer-inner > p {
  margin: 0;
  font-size: 0.8rem;
}

.mobile-actions {
  display: none;
}

:focus-visible {
  outline: 3px solid #1675d1;
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .header-cta,
  .main-nav {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--ink);
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav.is-open {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .section-heading,
  .process-grid,
  .territory-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 62px;
  }

  .work-card {
    max-width: 620px;
  }

  .section-heading,
  .territory-inner {
    gap: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 62px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .brand-copy small {
    font-size: 0.66rem;
  }

  .main-nav.is-open {
    top: 70px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero::before {
    display: none;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .text-link {
    width: max-content;
  }

  .trust-list {
    display: grid;
    gap: 10px;
    margin-top: 34px;
  }

  .work-card {
    padding: 20px;
    box-shadow: 8px 8px 0 var(--accent);
  }

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

  .service-grid article {
    min-height: 0;
    padding: 26px 22px;
  }

  .service-number {
    margin-bottom: 20px;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .contact-card .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner > p:last-child {
    grid-column: auto;
  }

  .mobile-actions {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 62px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: var(--paper-strong);
    border-top: 1px solid var(--ink);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    font-weight: 850;
  }

  .mobile-actions .primary {
    background: var(--accent);
    border-left: 1px solid var(--ink);
  }
}

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

/* Vidinių puslapių sistema */
.page-hero {
  padding: clamp(54px, 8vw, 96px) 0;
  background:
    linear-gradient(rgba(17, 19, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #9a9d94;
}

.breadcrumbs a {
  border-bottom: 1px solid currentColor;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: clamp(40px, 8vw, 100px);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.page-hero-copy > p:last-of-type {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.hero-side-note {
  padding: 24px;
  background: var(--ink);
  border-left: 7px solid var(--accent);
  color: white;
}

.hero-side-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-side-note p {
  margin: 0;
  color: #bdc1b7;
  font-size: 0.9rem;
}

.content-section {
  padding: clamp(64px, 8vw, 106px) 0;
  background: var(--paper-strong);
}

.content-section.alt {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(44px, 8vw, 90px);
  align-items: start;
}

.prose {
  max-width: 780px;
}

.prose > :last-child {
  margin-bottom: 0;
}

.prose h2 {
  margin-top: 58px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 17px;
  width: 10px;
  height: 6px;
  border-bottom: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  transform: rotate(-45deg);
}

.plain-list li {
  padding-left: 20px;
  border-left: 5px solid var(--accent);
}

.aside-card {
  position: sticky;
  top: 104px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 8px 8px 0 var(--accent);
}

.aside-card h2 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.aside-card p {
  color: var(--muted);
}

.aside-card .button {
  width: 100%;
  margin-top: 6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.feature-card {
  padding: 27px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ink);
}

.feature-card span {
  display: block;
  margin-bottom: 25px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
}

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

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.steps li {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps li:first-child {
  border-left: 1px solid var(--line);
}

.steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.steps strong {
  display: block;
  margin-bottom: 9px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  padding: 56px 0;
  background: var(--accent);
  border-block: 2px solid var(--ink);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.cta-band p {
  max-width: 680px;
  margin: 0;
}

.cta-band .button {
  min-width: max-content;
  background: var(--ink);
  border-color: white;
  color: white;
  box-shadow: 5px 5px 0 white;
}

.price-table {
  width: 100%;
  margin-top: 30px;
  border-collapse: collapse;
  border-top: 2px solid var(--ink);
}

.price-table th,
.price-table td {
  padding: 17px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  white-space: nowrap;
}

.notice {
  margin-top: 28px;
  padding: 22px;
  background: #faf5da;
  border-left: 6px solid var(--accent);
}

.notice strong {
  display: block;
  margin-bottom: 6px;
}

.notice p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-list details {
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.faq-list summary {
  padding: 20px 56px 20px 20px;
  position: relative;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.7rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

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

.link-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.link-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ink);
  transition: background 150ms ease, transform 150ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  background: #faf5da;
  transform: translateY(-3px);
}

.link-card h2,
.link-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.link-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.link-card strong {
  margin-top: auto;
  font-size: 0.9rem;
}

.empty-proof {
  padding: clamp(34px, 6vw, 62px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 8px solid var(--accent);
}

.empty-proof h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 86px);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-methods div {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-methods small,
.contact-methods strong {
  display: block;
}

.contact-methods small {
  margin-bottom: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 5vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-field label {
  font-size: 0.88rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  background: white;
  border: 1px solid #aeb2a7;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
}

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

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

[data-form-status].is-success {
  color: #176b38;
  font-weight: 700;
}

[data-form-status].is-error {
  color: #9f2f24;
  font-weight: 700;
}

.legal-copy {
  max-width: 800px;
}

.legal-copy h2 {
  margin-top: 46px;
  font-size: 1.8rem;
}

.legal-copy h3 {
  margin-top: 32px;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

@media (max-width: 920px) {
  .page-hero-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .aside-card {
    position: static;
    max-width: 620px;
  }

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

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

@media (max-width: 620px) {
  .page-hero {
    padding-top: 44px;
  }

  .page-hero-grid,
  .cta-band-inner {
    align-items: stretch;
  }

  .feature-grid,
  .steps,
  .link-cards,
  .form-row {
    grid-template-columns: 1fr;
  }

  .steps li:first-child {
    border-left: 0;
  }

  .steps li {
    border-left: 1px solid var(--line);
  }

  .cta-band-inner {
    flex-direction: column;
  }

  .cta-band .button {
    width: 100%;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .price-table td {
    padding: 4px 0;
    border: 0;
  }

  .price-table td:last-child {
    margin-top: 8px;
    text-align: left;
    font-weight: 850;
  }
}
