:root {
  --navy-950: #04152c;
  --navy-900: #061d3b;
  --navy-800: #0a2b50;
  --navy-700: #123d68;
  --green-600: #078256;
  --green-500: #10a66c;
  --green-400: #68cd82;
  --green-100: #e4f5eb;
  --blue-100: #e8f1fb;
  --ink: #07152e;
  --muted: #5a6574;
  --line: #dfe5e9;
  --off-white: #f5f7f6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 29, 59, 0.13);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(6, 29, 59, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(6, 29, 59, 0.06);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy-900);
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.brand strong {
  color: var(--green-600);
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #263649;
  font-size: 14px;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 8px;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 13px 21px;
  border: 1px solid var(--navy-900);
  border-radius: 11px;
  color: white;
  background: var(--navy-900);
  box-shadow: 0 10px 25px rgba(6, 29, 59, 0.14);
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--navy-800);
  box-shadow: 0 14px 32px rgba(6, 29, 59, 0.22);
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 13px;
}

.button-light {
  border-color: white;
  color: var(--navy-900);
  background: white;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--navy-900);
  background: var(--green-100);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 0;
  background:
    linear-gradient(110deg, rgba(232, 241, 251, 0.65) 0%, rgba(255, 255, 255, 0) 44%),
    var(--off-white);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7));
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -220px;
  left: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(124, 180, 230, 0.22), transparent 67%);
}

.hero-glow-two {
  right: -250px;
  bottom: -210px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(16, 166, 108, 0.16), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  padding-bottom: 50px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #92e9aa;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  color: var(--navy-900);
  font-weight: 760;
  letter-spacing: -0.057em;
  line-height: 0.98;
}

h1 {
  max-width: 690px;
  font-size: clamp(49px, 5vw, 75px);
}

h1 em,
h2 em {
  color: var(--green-600);
  font-style: normal;
}

.hero-intro {
  max-width: 585px;
  margin: 28px 0 0;
  color: #3f4c5e;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.hero-actions > * {
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(6, 29, 59, 0.25);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  color: var(--green-600);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 34px 0 0;
  padding: 0;
  color: #49576a;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--green-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  background: var(--green-100);
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  padding: 18px 0 45px 18px;
}

.product-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 50% 60%, rgba(16, 166, 108, 0.12), transparent 34%),
    linear-gradient(145deg, #0a2c50, var(--navy-950) 72%);
  box-shadow: 0 30px 80px rgba(4, 21, 44, 0.24);
}

.product-card::before {
  position: absolute;
  top: -220px;
  right: -200px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.018), 0 0 0 110px rgba(255, 255, 255, 0.018);
  content: "";
}

.product-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card-header > div {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.product-card-header > div > span {
  color: var(--green-400);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card-header strong {
  overflow: hidden;
  font-size: 15px;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: #a9bacb;
  font-size: 9px;
  font-weight: 650;
}

.product-status i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 5px rgba(16, 166, 108, 0.12);
}

.product-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 32px 22px 34px;
}

.flow-step {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 174px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 17px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
}

.flow-step-main {
  border-color: rgba(104, 205, 130, 0.38);
  background: linear-gradient(155deg, rgba(16, 166, 108, 0.2), rgba(255, 255, 255, 0.055));
}

.flow-index {
  position: absolute;
  top: 12px;
  right: 13px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 800;
}

.flow-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(104, 205, 130, 0.36);
  border-radius: 12px;
  color: var(--green-400);
  background: rgba(4, 21, 44, 0.28);
}

.flow-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.flow-step > div {
  display: grid;
  gap: 4px;
}

.flow-step strong {
  font-size: 12px;
  line-height: 1.25;
}

.flow-step small {
  color: #8fa1b3;
  font-size: 8px;
  line-height: 1.45;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--green-400);
}

.flow-arrow svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.product-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a7b7c7;
  font-size: 9px;
  font-weight: 700;
}

.product-card-footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green-400);
}

.sovereign-note {
  position: absolute;
  z-index: 3;
  right: -25px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(6, 29, 59, 0.09);
  border-radius: 14px;
  background: white;
  box-shadow: 0 16px 40px rgba(6, 29, 59, 0.17);
}

.french-flag {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: linear-gradient(90deg, #1a55b0 0 33%, white 33% 66%, #e63b3b 66%);
  box-shadow: inset 0 0 0 1px rgba(6, 29, 59, 0.1);
}

.sovereign-note div {
  display: grid;
}

.sovereign-note strong {
  font-size: 11px;
}

.sovereign-note small {
  color: #77828c;
  font-size: 9px;
}

.hero-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 0.9fr 1.55fr;
  align-items: center;
  margin-top: 60px;
  padding: 24px 30px;
  border: 1px solid rgba(6, 29, 59, 0.08);
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 -5px 35px rgba(6, 29, 59, 0.05);
}

.hero-stats > div {
  display: grid;
  gap: 0;
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

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

.hero-stats strong {
  color: var(--navy-900);
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.hero-stats span {
  color: #7c8790;
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.hero-stats > p {
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid var(--line);
  color: #516071;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  font-size: clamp(42px, 4.5vw, 66px);
}

.section-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.benefit-card {
  position: relative;
  min-height: 345px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.benefit-card::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--green-100);
  content: "";
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}

.benefit-card:hover {
  border-color: rgba(7, 130, 86, 0.3);
  box-shadow: 0 24px 60px rgba(6, 29, 59, 0.09);
  transform: translateY(-5px);
}

.benefit-card:hover::after {
  opacity: 0.8;
  transform: scale(1.12);
}

.card-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #c9d0d5;
  font-size: 12px;
  font-weight: 800;
}

.icon-box {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 62px;
  place-items: center;
  border-radius: 17px;
  color: var(--navy-900);
  background: var(--off-white);
}

.icon-box svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.solution {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 10% 100%, rgba(16, 166, 108, 0.2), transparent 28%),
    var(--navy-950);
}

.solution::before {
  position: absolute;
  top: -250px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.018);
  content: "";
}

.solution-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 105px;
}

.solution-intro {
  align-self: start;
}

.solution-intro h2 {
  color: white;
  font-size: clamp(42px, 4.5vw, 64px);
}

.solution-intro h2 em {
  color: var(--green-400);
}

.solution-intro > p:not(.eyebrow) {
  margin: 26px 0 30px;
  color: #b6c2d0;
  font-size: 16px;
  line-height: 1.75;
}

.solution-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.solution-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 31px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.solution-step > span {
  color: var(--green-400);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.solution-step h3 {
  margin: 0 0 7px;
  color: white;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.solution-step p {
  max-width: 460px;
  margin: 0;
  color: #aab8c7;
  font-size: 14px;
  line-height: 1.7;
}

.hosting {
  background: var(--off-white);
}

.section-heading.compact {
  display: block;
  max-width: 680px;
}

.section-heading.compact h2 {
  margin-bottom: 20px;
}

.section-heading.compact > p:last-child {
  max-width: 590px;
}

.hosting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hosting-card {
  padding: 34px;
  border: 1px solid rgba(6, 29, 59, 0.07);
  border-radius: var(--radius);
}

.hosting-card-green {
  background: linear-gradient(145deg, #e6f3eb, #f7fbf8 70%);
}

.hosting-card-blue {
  background: linear-gradient(145deg, #e3edf8, #f7fafe 70%);
}

.hosting-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hosting-card-blue .hosting-topline {
  color: var(--navy-700);
}

.hosting-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.hosting-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hosting-card h3 {
  margin: 34px 0 9px;
  color: var(--navy-900);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.hosting-card > p {
  margin: 0;
  color: #536171;
  font-size: 14px;
}

.hosting-card ul {
  display: grid;
  gap: 11px;
  margin: 29px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(6, 29, 59, 0.11);
  list-style: none;
}

.hosting-card li {
  position: relative;
  padding-left: 27px;
  color: #28394e;
  font-size: 13px;
  font-weight: 650;
}

.hosting-card li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-600);
  background: rgba(255, 255, 255, 0.75);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  padding: 28px 10px;
  border-top: 1px solid #d9dfe1;
  border-bottom: 1px solid #d9dfe1;
}

.trust-row div {
  display: grid;
  gap: 2px;
  padding: 0 28px;
  border-left: 1px solid #d9dfe1;
}

.trust-row div:first-child {
  border-left: 0;
}

.trust-row strong {
  color: var(--navy-900);
  font-size: 14px;
}

.trust-row span {
  color: #74808b;
  font-size: 12px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: white;
  background: var(--navy-900);
}

.contact-section::after {
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 166, 108, 0.27), transparent 66%);
  content: "";
}

.contact-orbit {
  position: absolute;
  top: -190px;
  right: 4%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.contact-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-inner .eyebrow {
  justify-content: center;
}

.contact-inner h2 {
  color: white;
  font-size: clamp(45px, 5.7vw, 76px);
}

.contact-inner > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #b5c2d0;
  font-size: 17px;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 35px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 14px;
  font-weight: 750;
}

.phone-link svg {
  width: 20px;
  fill: none;
  stroke: var(--green-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer {
  color: #aebac7;
  background: var(--navy-950);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  align-items: center;
  gap: 30px;
  min-height: 110px;
}

.brand-footer {
  color: white;
}

.footer-inner p {
  margin: 0;
  font-size: 11px;
}

.footer-inner p:last-child {
  color: #6f7f90;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

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

*:focus-visible {
  outline: 3px solid rgba(16, 166, 108, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  html { scroll-behavior: auto; }

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

  .header-inner { min-height: 72px; }
  .brand { font-size: 20px; }

  .main-nav {
    display: none;
  }

  .site-header {
    position: absolute;
    border-bottom-color: rgba(6, 29, 59, 0.06);
    background: white;
    backdrop-filter: none;
  }

  .hero { padding-top: 112px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy { max-width: 700px; padding-bottom: 0; }
  .hero-intro { max-width: 650px; }
  h1 { font-size: clamp(40px, 8vw, 64px); }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 28px;
  }

  .hero-actions .button { width: min(100%, 420px); }
  .hero-proof { margin-top: 27px; }

  .hero-visual { min-height: 0; padding: 20px 0 54px; }
  .product-card { width: min(100%, 650px); margin-inline: auto; border-radius: 22px; }
  .product-card-header {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
  }
  .product-card-header strong { white-space: normal; }
  .product-flow {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px;
  }
  .flow-step {
    min-height: 84px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 16px;
  }
  .flow-icon { width: 40px; height: 40px; flex: 0 0 auto; }
  .flow-arrow { height: 18px; transform: rotate(90deg); }
  .flow-arrow svg { width: 19px; }
  .product-card-footer { min-height: 54px; flex-wrap: wrap; gap: 8px; padding: 12px; }

  .sovereign-note {
    right: 50%;
    bottom: 0;
    width: max-content;
    max-width: calc(100% - 20px);
    transform: translateX(50%);
  }

  .hero-stats {
    width: min(calc(100% - 32px), 650px);
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding: 10px 22px;
    border-radius: 20px 20px 0 0;
  }

  .hero-stats > div,
  .hero-stats > div:nth-child(3) {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-stats > div:first-child {
    border-top: 0;
  }

  .hero-stats > p {
    grid-column: 1 / -1;
    margin: 0;
    padding: 17px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .section { padding: 76px 0; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .section-heading .eyebrow { grid-column: auto; }
  .section-heading h2 { font-size: clamp(36px, 8vw, 52px); }
  .section-heading > p:last-child { font-size: 15px; }
  .benefit-grid { grid-template-columns: 1fr; }

  .benefit-card {
    display: block;
    min-height: 0;
    padding: 24px;
  }

  .benefit-card .icon-box { margin-bottom: 24px; }

  .solution-grid { grid-template-columns: 1fr; gap: 48px; }
  .solution-intro { max-width: 690px; }

  .solution-step {
    grid-template-columns: 45px 1fr;
    gap: 12px;
    padding: 25px 0;
  }

  .hosting-grid { grid-template-columns: 1fr; }
  .hosting-card { padding: 27px 23px; }
  .hosting-card h3 { font-size: 25px; }

  .trust-row { grid-template-columns: 1fr; padding: 0; }
  .trust-row div {
    padding: 17px 5px;
    border-top: 1px solid #d9dfe1;
    border-left: 0;
  }
  .trust-row div:first-child { border-top: 0; }

  .contact-section { padding: 72px 0; }
  .contact-inner h2 { font-size: clamp(37px, 8vw, 54px); }
  .contact-actions { flex-direction: column; gap: 20px; }
  .contact-actions .button { width: min(100%, 420px); }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 31px;
  }
}

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