:root {
  --ink: #09111f;
  --ink-soft: #263347;
  --paper: #f7f5f0;
  --white: #ffffff;
  --red: #cf2f2a;
  --red-dark: #bd2723;
  --line: rgba(9, 17, 31, 0.12);
  --green: #167c3f;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(9, 17, 31, 0.12);
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: #fff;
  padding: 12px 18px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 84px;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    height 0.25s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(247, 245, 240, 0.9);
  box-shadow: 0 8px 35px rgba(9, 17, 31, 0.08);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  width: 218px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 650;
}
.desktop-nav a {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.desktop-nav a:hover {
  opacity: 1;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-wa {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 34px rgba(31, 168, 85, 0.22);
}
.button-wa:hover {
  background: #116433;
  box-shadow: 0 16px 42px rgba(22, 124, 63, 0.28);
}
.button-small {
  min-height: 42px;
  padding-inline: 17px;
}
.wa-icon {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
.button-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: 820px;
  padding: 152px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 74% 44%,
      rgba(230, 58, 51, 0.12),
      transparent 25%
    ),
    linear-gradient(135deg, #fbfaf7 0%, #f5f1ea 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 76px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-soft);
}
.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--red);
}
.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(54px, 5.7vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.057em;
  font-weight: 800;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 1.72;
  color: #526075;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}
.text-link {
  font-size: 14px;
  font-weight: 750;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.trust-row {
  display: flex;
  gap: 36px;
  margin-top: 54px;
}
.trust-row div {
  position: relative;
  padding-left: 17px;
}
.trust-row div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 32px;
  background: var(--red);
  border-radius: 4px;
}
.trust-row strong,
.trust-row span {
  display: block;
}
.trust-row strong {
  font-size: 13px;
}
.trust-row span {
  margin-top: 5px;
  color: #707a89;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}
.hero-product-card {
  position: relative;
  z-index: 2;
  width: min(460px, 88%);
  height: clamp(400px, 68vw, 560px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(9, 17, 31, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-product-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(9, 17, 31, 0.06);
  border-radius: 24px;
}
.hero-product-card img {
  width: 88%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 28px 22px rgba(9, 17, 31, 0.18));
  transform: rotate(-2deg);
}
.product-caption {
  position: absolute;
  top: 28px;
  left: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31, 168, 85, 0.13);
}
.spec-chip {
  position: absolute;
  z-index: 4;
  padding: 11px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 750;
  box-shadow: 0 10px 30px rgba(9, 17, 31, 0.18);
  transform: rotate(-2deg);
}
.spec-chip-one {
  right: -38px;
  top: 110px;
}
.spec-chip-two {
  left: -44px;
  bottom: 142px;
}
.spec-chip-three {
  right: -44px;
  bottom: 54px;
  background: var(--red);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(230, 58, 51, 0.18);
  border-radius: 50%;
}
.orbit-one {
  width: 560px;
  height: 560px;
}
.orbit-two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  animation: orbit 32s linear infinite;
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.buyer-strip {
  background: var(--ink);
  color: #fff;
}
.buyer-strip-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 46px;
}
.buyer-strip-inner > span {
  color: #8490a1;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.buyer-strip ul {
  list-style: none;
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 22px;
  padding: 0;
  margin: 0;
}
.buyer-strip li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}
.buyer-strip li::before {
  content: "+";
  color: var(--red);
}

.section {
  padding: 118px 0;
}
.section-heading {
  margin-bottom: 58px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.split-heading,
.product-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 100px;
}
.section-heading > p {
  max-width: 510px;
  margin: 0 0 6px;
  color: #667286;
  font-size: 16px;
  line-height: 1.75;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.solution-card {
  min-height: 290px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.solution-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 22px 60px rgba(9, 17, 31, 0.08);
}
.solution-card.featured {
  background: var(--red);
  color: #fff;
}
.card-number {
  font:
    600 11px/1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  opacity: 0.55;
}
.solution-card h3 {
  margin: 48px 0 12px;
  font-size: 25px;
  letter-spacing: -0.025em;
}
.solution-card p {
  max-width: 490px;
  margin: 0;
  color: #657185;
  line-height: 1.65;
}
.solution-card.featured p {
  color: #fff;
}
.solution-card a {
  margin-top: auto;
  padding-top: 25px;
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.section-dark {
  color: #fff;
  background: var(--ink);
}
.eyebrow-light {
  color: #aeb7c5;
}
.product-heading > p {
  color: #9ba6b5;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product-card {
  overflow: hidden;
  border-radius: 16px;
  background: #111d2e;
}
.product-image {
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  background: #eef0ef;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.035);
}
.product-card-copy {
  min-height: 205px;
  padding: 25px;
}
.product-card-copy > span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8793a5;
  font-weight: 800;
}
.product-card-copy h3 {
  margin: 30px 0 10px;
  font-size: 21px;
}
.product-card-copy p {
  margin: 0;
  color: #9ba6b5;
  font-size: 13px;
  line-height: 1.65;
}
.product-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.product-cta p {
  color: #a6b0be;
}

.centered-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.centered-heading .eyebrow {
  justify-content: center;
}
.centered-heading p {
  margin: 20px auto 0;
}
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  counter-reset: process;
}
.process-grid li {
  min-height: 260px;
  padding: 28px 26px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.process-grid li:first-child {
  border-left: 1px solid var(--line);
}
.process-grid li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font:
    700 11px/1 ui-monospace,
    monospace;
}
.process-grid h3 {
  margin: 52px 0 10px;
  font-size: 20px;
}
.process-grid p {
  margin: 0;
  color: #6d7889;
  font-size: 13px;
  line-height: 1.65;
}

.requirement-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--red);
}
.requirement-section::after {
  content: "RFQ";
  position: absolute;
  right: -45px;
  bottom: -120px;
  color: rgba(255, 255, 255, 0.075);
  font-size: 360px;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}
.requirement-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 110px;
}
.requirement-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.requirement-copy p {
  max-width: 480px;
  margin: 25px 0 34px;
  color: #fff;
  line-height: 1.7;
}
.requirement-section .eyebrow-light {
  color: #fff;
}
.requirement-section .eyebrow-light span {
  background: #fff;
}
.button-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(117, 19, 16, 0.22);
}
.button-white:hover {
  background: #fff;
}
.checklist-card {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(117, 19, 16, 0.25);
}
.checklist-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.live-pill {
  padding: 7px 10px;
  border-radius: 100px;
  color: #177c42;
  background: #e8f7ee;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.checklist-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checklist-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.checklist-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.checklist-card li > span {
  color: var(--red);
  font:
    700 10px/1 ui-monospace,
    monospace;
}
.checklist-card strong,
.checklist-card small {
  display: block;
}
.checklist-card strong {
  font-size: 14px;
}
.checklist-card small {
  margin-top: 5px;
  color: #748094;
  font-size: 11px;
}

.compliance-note {
  padding: 34px 0;
  color: #fff;
  background: #111b2a;
}
.compliance-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: center;
}
.compliance-inner strong {
  font-size: 14px;
}
.compliance-inner p {
  margin: 0;
  color: #9da8b8;
  font-size: 13px;
  line-height: 1.65;
}
.final-cta {
  padding: 90px 0;
  background: #fff;
}
.final-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.final-cta span {
  color: #687486;
  font-size: 13px;
}
.final-cta h2 {
  margin: 9px 0 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.site-footer {
  padding: 70px 0 24px;
  color: #fff;
  background: #070d17;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 50px;
}
.brand-footer img {
  width: 218px;
  height: auto;
}
.footer-main p {
  margin: 0;
  color: #8f9aab;
  font-size: 13px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  color: #b9c1cc;
  font-size: 12px;
}
.footer-settings {
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.footer-settings:hover,
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #657184;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.floating-wa {
  position: fixed;
  z-index: 24;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  color: #fff;
  background: var(--green);
  border-radius: 100px;
  box-shadow: 0 14px 36px rgba(7, 13, 23, 0.25);
  font-size: 12px;
  font-weight: 800;
}
.floating-wa svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.consent-banner {
  position: fixed;
  z-index: 45;
  left: 50%;
  bottom: 20px;
  width: min(860px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 20px 22px;
  color: #fff;
  background: #0d1828;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(7, 13, 23, 0.38);
  transform: translateX(-50%);
}
.consent-banner[hidden] {
  display: none;
}
.consent-banner strong {
  display: block;
  font-size: 14px;
}
.consent-banner p {
  max-width: 540px;
  margin: 6px 0 0;
  color: #b8c2cf;
  font-size: 12px;
  line-height: 1.55;
}
.consent-banner p a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-actions {
  display: flex;
  gap: 9px;
}
.consent-actions button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font:
    750 11px/1 Inter,
    ui-sans-serif,
    sans-serif;
  cursor: pointer;
}
.consent-secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.consent-primary {
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
}
.consent-banner:not([hidden]) ~ .floating-wa {
  bottom: 146px;
}

.legal-page {
  min-height: 100vh;
  padding: 128px 0 90px;
  background: #fbfaf7;
}
.legal-shell {
  max-width: 820px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}
.legal-page h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.legal-updated {
  margin: 16px 0 46px;
  color: #657185;
  font-size: 12px;
}
.legal-content {
  padding-top: 2px;
  border-top: 1px solid var(--line);
}
.legal-content section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.legal-content h2 {
  margin: 0 0 12px;
  font-size: 21px;
}
.legal-content p,
.legal-content li {
  color: #596679;
  font-size: 14px;
  line-height: 1.75;
}
.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}
.legal-contact {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(207, 47, 42, 0.15),
      transparent 30%
    ),
    var(--paper);
}
.error-card {
  max-width: 760px;
  text-align: center;
}
.error-card > img {
  width: 218px;
  height: auto;
  margin: 0 auto 36px;
}
.error-code {
  color: var(--red);
  font:
    800 12px/1 ui-monospace,
    monospace;
  letter-spacing: 0.16em;
}
.error-card h1 {
  margin: 22px 0 18px;
  font-size: clamp(48px, 9vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.error-card p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: #667286;
  line-height: 1.7;
}
.error-card .hero-actions {
  justify-content: center;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    gap: 34px;
  }
  .hero h1 {
    font-size: clamp(48px, 7vw, 70px);
  }
  .hero-visual {
    min-height: 500px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .requirement-wrap {
    gap: 55px;
  }
  .buyer-strip ul {
    overflow-x: auto;
    justify-content: flex-start;
    padding-right: 20px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 32px, 620px);
  }
  .site-header,
  .site-header.scrolled {
    height: 68px;
  }
  .brand img {
    width: 174px;
  }
  .button-small {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 12px;
  }
  .button-small .wa-icon {
    display: none;
  }
  .hero {
    padding: 112px 0 65px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: clamp(46px, 13vw, 62px);
  }
  .hero-lead {
    margin-top: 23px;
    font-size: 16px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 29px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .text-link {
    align-self: flex-start;
  }
  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 42px;
  }
  .trust-row div {
    padding-left: 11px;
  }
  .trust-row strong {
    font-size: 11px;
  }
  .trust-row span {
    font-size: 9px;
  }
  .hero-visual {
    min-height: 430px;
    margin-top: 8px;
  }
  .hero-product-card {
    width: 80%;
    border-radius: 25px;
  }
  .spec-chip {
    padding: 9px 10px;
    font-size: 9px;
  }
  .spec-chip-one {
    right: -32px;
    top: 82px;
  }
  .spec-chip-two {
    left: -34px;
    bottom: 108px;
  }
  .spec-chip-three {
    right: -27px;
    bottom: 34px;
  }
  .orbit-one {
    width: 390px;
    height: 390px;
  }
  .orbit-two {
    width: 310px;
    height: 310px;
  }
  .buyer-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
  }
  .buyer-strip ul {
    width: calc(100vw - 32px);
  }
  .section {
    padding: 82px 0;
  }
  .split-heading,
  .product-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    min-height: 255px;
    padding: 28px;
  }
  .solution-card h3 {
    margin-top: 34px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .product-image {
    aspect-ratio: auto;
    min-height: 220px;
  }
  .product-card-copy {
    min-height: 220px;
    padding: 22px;
  }
  .product-card-copy h3 {
    margin-top: 35px;
    font-size: 19px;
  }
  .product-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid li:nth-child(3) {
    border-left: 1px solid var(--line);
  }
  .requirement-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .requirement-section::after {
    font-size: 220px;
  }
  .compliance-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .floating-wa {
    right: 14px;
    bottom: 14px;
    padding: 13px;
  }
  .floating-wa span {
    display: none;
  }
  .consent-banner {
    grid-template-columns: 1fr;
    gap: 16px;
    bottom: 12px;
    padding: 18px;
  }
  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .consent-actions button {
    padding-inline: 10px;
  }
  .consent-banner:not([hidden]) ~ .floating-wa {
    bottom: 218px;
  }
  .legal-page {
    padding-top: 100px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 154px;
  }
  .button-small {
    padding-inline: 11px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .trust-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .trust-row div::before {
    height: 27px;
  }
  .product-card {
    grid-template-columns: 1fr;
  }
  .product-image {
    min-height: 270px;
  }
  .product-card-copy {
    min-height: 190px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid li,
  .process-grid li:nth-child(3) {
    border-left: 1px solid var(--line);
  }
  .checklist-card {
    padding: 22px;
  }
}

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