:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #11233d;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --navy: #061b3a;
  --navy-soft: #0b284f;
  --ink: #11233d;
  --muted: #5d6f87;
  --line: #d8e4f2;
  --line-strong: #bfd1e5;
  --soft: #f4f8fc;
  --blue: #0b64df;
  --blue-dark: #084cae;
  --cyan: #0ea8d5;
  --red: #ef4439;
  --green: #12845e;
  --gold: #b78924;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(16, 42, 78, 0.1);
  --shell: 1280px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: #ffffff;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: inherit;
}

button,
input {
  font-size: inherit;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 4.5vw, 68px);
  line-height: 1.03;
  font-weight: 760;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 3.4vw, 50px);
  line-height: 1.08;
  font-weight: 760;
}

h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.22;
  font-weight: 730;
}

p {
  color: var(--muted);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 205px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.7vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 24px;
  color: #263b58;
  font-size: 15px;
  font-weight: 720;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  background: var(--cyan);
  transition: right 0.2s ease;
}

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

.language-link {
  min-width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #2c4260;
  font-size: 15px;
  font-weight: 800;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button--primary,
.button--bright {
  color: #ffffff;
  background: var(--blue);
}

.button--bright {
  background: #087bc4;
}

.button--outline-dark {
  color: #ffffff;
  background: transparent;
  border-color: rgba(91, 210, 245, 0.64);
}

.header-cta {
  min-width: 174px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero-section {
  overflow: hidden;
  background: var(--navy);
}

.hero-layout {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(580px, 1.08fr);
  align-items: center;
  gap: 18px;
  padding-block: 46px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.eyebrow svg {
  color: var(--red);
}

.eyebrow--dark {
  color: #36c3ec;
}

.hero-copy h1 {
  color: #ffffff;
  font-size: clamp(50px, 3.8vw, 56px);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #c6d5e8;
  font-size: 18px;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 820px;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.implementation-section {
  padding: 42px 0 66px;
  background: #ffffff;
}

.implementation-section h2 {
  margin-bottom: 30px;
  font-size: 38px;
}

.implementation-line {
  width: calc(100% - 16px);
  height: 1px;
  margin-left: 8px;
  background: #89b9f1;
}

.implementation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.implementation-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding-top: 30px;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.step-icon,
.row-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: #eaf4ff;
}

.implementation-step h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.implementation-step p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.result-band {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 0.75fr);
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #f8fbff;
}

.result-intro,
.result-metric {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.result-intro {
  justify-content: flex-start;
  gap: 18px;
}

.result-intro svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.result-intro strong,
.result-intro span,
.result-metric strong,
.result-metric span {
  display: block;
}

.result-intro strong {
  margin-bottom: 4px;
  font-size: 21px;
}

.result-intro span {
  color: var(--muted);
  font-size: 14px;
}

.result-metric {
  flex-direction: column;
  text-align: center;
  border-left: 1px solid var(--line-strong);
}

.result-metric strong {
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 29px;
  line-height: 1;
}

.result-metric span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.statement-section {
  background: var(--navy);
}

.statement-layout {
  min-height: 196px;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  align-items: center;
  gap: 46px;
  padding-block: 38px;
}

.statement-layout h2 {
  color: #ffffff;
  font-size: 38px;
}

.statement-layout p {
  margin-bottom: 0;
  color: #c6d5e8;
  font-size: 17px;
}

.section {
  padding: 94px 0;
}

.section--soft {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 64px;
}

.section-heading p {
  max-width: 620px;
  margin-bottom: 4px;
  font-size: 18px;
}

.section-kicker,
.situation-tag,
.roadmap-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.problem-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 0.9fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
}

.problem-row h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.problem-row p {
  margin-bottom: 0;
}

.problem-result {
  color: #304766;
  font-size: 16px;
  padding: 16px 18px;
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: #f3f8ff;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 52px;
  border-top: 1px solid var(--line-strong);
}

.situation-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
}

.situation-number {
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
}

.situation-tag {
  margin-bottom: 5px;
}

.situation-row h3 {
  font-size: 21px;
}

.situation-row p {
  margin-bottom: 12px;
  font-size: 15px;
}

.situation-row a,
.roadmap-item a,
.format-card a,
.case-copy a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 800;
}

.roadmap-section {
  background: #ffffff;
}

.roadmap-list {
  position: relative;
}

.roadmap-list::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 24px;
  width: 1px;
  background: #9fc6f2;
}

.roadmap-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(260px, 0.9fr) minmax(260px, 0.8fr) minmax(170px, 0.45fr);
  align-items: center;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.roadmap-marker {
  position: relative;
  z-index: 2;
}

.roadmap-marker span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #8bbcf2;
  border-radius: 50%;
  color: var(--blue);
  background: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.roadmap-copy h3 {
  margin-bottom: 6px;
}

.roadmap-copy p {
  margin-bottom: 0;
  font-size: 15px;
}

.roadmap-item ul,
.format-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-item li,
.format-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 7px 0;
  color: #38506e;
  font-size: 14px;
}

.roadmap-item li svg,
.format-card li svg {
  flex: 0 0 auto;
  color: var(--cyan);
}

.roadmap-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--soft);
}

.roadmap-cta strong,
.roadmap-cta span {
  display: block;
}

.roadmap-cta strong {
  margin-bottom: 3px;
  font-size: 20px;
}

.roadmap-cta span {
  color: var(--muted);
}

.outcome-section {
  background: var(--soft);
}

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: stretch;
}

.outcome-image {
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.outcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcome-copy {
  padding: 18px 0;
}

.outcome-lead {
  max-width: 680px;
  margin: 18px 0 30px;
  font-size: 18px;
}

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

.outcome-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-strong);
}

.outcome-row > span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.outcome-row h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.outcome-row p {
  margin-bottom: 0;
  font-size: 15px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.format-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
}

.format-card.is-featured {
  border-top: 5px solid var(--blue);
  box-shadow: var(--shadow);
}

.format-top,
.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.format-card h3 {
  font-size: 28px;
}

.format-time {
  display: block;
  margin: 8px 0 16px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.1;
}

.format-card p {
  font-size: 16px;
}

.format-card ul {
  margin-bottom: 26px;
}

.format-card a {
  margin-top: auto;
}

.cases-section {
  background: var(--soft);
}

.case-list {
  display: grid;
  gap: 30px;
}

.case-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
}

.case-row--reverse .case-image {
  order: 2;
}

.case-image {
  min-height: 420px;
  overflow: hidden;
  background: #dfe8f2;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-copy {
  padding: 36px 40px;
}

.case-top {
  margin-bottom: 18px;
}

.case-top span:first-child {
  color: var(--gold);
}

.case-logo {
  width: 118px;
  max-height: 42px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.case-copy h3 {
  max-width: 680px;
  font-size: 30px;
}

.case-copy > p {
  font-size: 16px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-metrics > div {
  padding: 18px 0;
}

.case-metrics > div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.case-metrics strong,
.case-metrics span {
  display: block;
}

.case-metrics strong {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 30px;
}

.case-metrics span {
  color: var(--muted);
  font-size: 14px;
}

.trust-section {
  padding: 76px 0;
  background: #ffffff;
}

.trust-row {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.trust-row > * {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.trust-row > * + * {
  border-left: 1px solid var(--line-strong);
}

.trust-row img {
  width: 126px;
  max-height: 38px;
  object-fit: contain;
}

.partner-item {
  flex-direction: column;
  gap: 12px;
}

.partner-item small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.certificate-link {
  justify-content: flex-start;
  gap: 16px;
  color: var(--blue-dark);
}

.certificate-link strong,
.certificate-link small {
  display: block;
}

.certificate-link strong {
  font-size: 20px;
}

.certificate-link small {
  color: var(--muted);
}

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

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

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

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

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

.faq-list summary svg {
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  padding-right: 30px;
  font-size: 15px;
}

.request-section {
  padding: 82px 0;
  background: var(--navy);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.request-layout h2 {
  max-width: 700px;
  margin-bottom: 18px;
  color: #ffffff;
}

.request-layout > div > p {
  max-width: 700px;
  color: #c6d5e8;
  font-size: 18px;
}

.request-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}

.request-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d6e5f5;
  font-size: 14px;
  font-weight: 700;
}

.request-points svg {
  color: #35c1e9;
}

.lead-form,
.form-success {
  position: relative;
  padding: 28px;
  border: 1px solid #2f527a;
  border-radius: var(--radius);
  background: #ffffff;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: #354d6b;
  font-size: 13px;
  font-weight: 750;
}

.lead-form input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #cbd9e8;
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
}

.lead-form .button,
.lead-form small {
  grid-column: 1 / -1;
}

.lead-form small {
  color: #6d7d91;
  font-size: 12px;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-success {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-success svg {
  margin-bottom: 12px;
  color: var(--green);
}

.form-success strong {
  font-size: 24px;
}

.form-success p {
  margin: 8px 0 18px;
}

.form-success button {
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  background: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.8fr;
  gap: 64px;
  padding: 58px 0 44px;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 430px;
  margin-bottom: 0;
}

.footer-main nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-main strong {
  margin-bottom: 5px;
}

.footer-main a,
.footer-contact span {
  color: #53657b;
  font-size: 15px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: #6b7b8f;
  font-size: 13px;
}

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

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after {
    right: 0;
  }

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

  .button--primary:hover,
  .button--bright:hover {
    background: var(--blue-dark);
  }

  .button--outline-dark:hover {
    color: var(--navy);
    background: #ffffff;
    border-color: #ffffff;
  }

  .situation-row a:hover,
  .roadmap-item a:hover,
  .format-card a:hover,
  .case-copy a:hover,
  .footer-main a:hover,
  .footer-bottom a:hover {
    color: var(--cyan);
  }
}

.button:active,
.menu-button:active,
.language-link:active,
.faq-list summary:active {
  transform: scale(0.97);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 180px 1fr auto;
  }

  .brand {
    width: 175px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-cta {
    min-width: 174px;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .hero-layout {
    grid-template-columns: minmax(360px, 0.8fr) minmax(500px, 1.2fr);
  }

  .hero-visual img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
  }

  .hero-lead {
    font-size: 18px;
  }

  .result-band {
    grid-template-columns: 1.35fr repeat(4, 0.8fr);
  }

  .result-intro {
    padding: 18px;
  }

  .result-intro svg {
    display: none;
  }

  .roadmap-item {
    grid-template-columns: 50px 1fr 0.85fr;
  }

  .roadmap-item > a {
    grid-column: 2 / -1;
    margin-bottom: 6px;
  }

  .outcome-layout {
    gap: 38px;
  }
}

@media (max-width: 1024px) {
  .shell {
    width: min(100% - 40px, var(--shell));
  }

  .site-header {
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 175px;
  }

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

  .menu-button {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #243b5a;
    background: #ffffff;
    cursor: pointer;
  }

  .mobile-nav {
    display: none;
    width: min(100% - 40px, var(--shell));
    margin: 0 auto 14px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    color: #2e4563;
    font-weight: 750;
  }

  .mobile-nav .mobile-nav-cta {
    justify-content: center;
    margin-top: 8px;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    background: var(--blue);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 48px 0 38px;
  }

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

  .hero-visual img {
    width: min(100%, 820px);
    height: auto;
    object-fit: contain;
  }

  .implementation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px;
  }

  .implementation-line {
    display: none;
  }

  .implementation-step {
    padding-top: 0;
  }

  .step-number {
    position: static;
    grid-column: 1 / -1;
    margin-bottom: -6px;
  }

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

  .result-intro {
    grid-column: 1 / -1;
  }

  .result-metric {
    border-top: 1px solid var(--line-strong);
  }

  .result-metric:nth-child(2),
  .result-metric:nth-child(4) {
    border-left: 0;
  }

  .statement-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 44px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .section-heading p {
    margin-bottom: 0;
  }

  .problem-row {
    grid-template-columns: 54px 1fr;
  }

  .problem-result {
    grid-column: 2;
  }

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

  .roadmap-item {
    grid-template-columns: 50px 1fr;
  }

  .roadmap-item ul,
  .roadmap-item > a {
    grid-column: 2;
  }

  .outcome-layout {
    grid-template-columns: 1fr;
  }

  .outcome-image {
    min-height: 420px;
  }

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

  .format-card {
    min-height: 0;
  }

  .case-row,
  .case-row--reverse {
    grid-template-columns: 1fr;
  }

  .case-row--reverse .case-image {
    order: 0;
  }

  .case-image {
    min-height: 340px;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-row > * + * {
    border-left: 0;
  }

  .trust-row > *:nth-child(even) {
    border-left: 1px solid var(--line-strong);
  }

  .trust-row > *:nth-child(n + 3) {
    border-top: 1px solid var(--line-strong);
  }

  .certificate-link {
    grid-column: 1 / -1;
  }

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

  .request-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

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

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

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    width: 154px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-link,
  .menu-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .mobile-nav {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(40px, 13vw, 52px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 40px);
  }

  h3 {
    font-size: 21px;
  }

  .hero-layout {
    min-height: 0;
    padding: 36px 0 26px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-visual {
    margin-inline: 0;
  }

  .hero-visual img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
  }

  .implementation-section,
  .section,
  .request-section {
    padding: 64px 0;
  }

  .implementation-section {
    padding: 44px 0 56px;
  }

  .trust-section {
    padding: 52px 0;
  }

  .trust-section .section-heading {
    margin-bottom: 24px;
  }

  .implementation-section h2 {
    font-size: 32px;
  }

  .implementation-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 24px;
  }

  .implementation-step {
    grid-template-columns: 48px 1fr;
  }

  .step-number {
    grid-column: auto;
    grid-row: 1;
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
  }

  .result-band {
    grid-template-columns: 1fr;
  }

  .result-intro,
  .result-metric {
    min-height: 94px;
  }

  .result-metric,
  .result-metric:nth-child(2),
  .result-metric:nth-child(4) {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .statement-layout h2 {
    font-size: 32px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading--split {
    gap: 14px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .problem-row {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .row-icon {
    width: 42px;
    height: 42px;
  }

  .problem-result {
    grid-column: 1 / -1;
    margin-left: 58px;
    padding: 14px 16px;
  }

  .situation-row {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .roadmap-list::before {
    left: 19px;
  }

  .roadmap-item {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .roadmap-marker span {
    width: 40px;
    height: 40px;
  }

  .roadmap-item ul,
  .roadmap-item > a {
    grid-column: 2;
  }

  .roadmap-cta {
    align-items: stretch;
    flex-direction: column;
  }

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

  .outcome-image {
    min-height: 300px;
  }

  .outcome-row {
    grid-template-columns: 40px 1fr;
  }

  .format-card {
    padding: 24px;
  }

  .format-time {
    font-size: 30px;
  }

  .case-image {
    min-height: 250px;
  }

  .case-copy {
    padding: 26px 22px;
  }

  .case-copy h3 {
    font-size: 25px;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .case-metrics > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .trust-row > * {
    min-height: 76px;
    padding: 12px;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .trust-row > *:nth-child(odd):not(:first-child) {
    border-left: 1px solid var(--line-strong);
  }

  .trust-row > *:first-child {
    border-top: 0;
  }

  .certificate-link {
    grid-column: 1 / -1;
    min-height: 88px;
    padding: 16px 24px;
    border-left: 0;
    justify-content: flex-start;
  }

  .trust-row img {
    width: 104px;
    max-height: 28px;
  }

  .partner-item {
    gap: 8px;
  }

  .request-layout {
    gap: 36px;
  }

  .request-points {
    display: grid;
    gap: 10px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .lead-form .button,
  .lead-form small {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 18px 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
