:root {
  --navy-950: #020f21;
  --navy-900: #031329;
  --navy-850: #041a34;
  --navy-800: #062344;
  --blue: #178cff;
  --cyan: #39c8ff;
  --yellow: #ffd319;
  --white: #ffffff;
  --muted: #a8bad0;
  --line: rgba(73, 154, 245, 0.27);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

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

.top-line {
  height: 3px;
  background: linear-gradient(
    90deg,
    #22c9ff 0%,
    #3b82f6 38%,
    #ffd319 70%,
    #ff6657 100%
  );
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #03152c 0%, #041c38 52%, #03152c 100%);
  border-bottom: 1px solid rgba(64, 153, 255, 0.36);
  box-shadow: 0 7px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  width: min(1320px, calc(100% - 40px));
  min-height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 330px 1fr auto;
  align-items: center;
  gap: 26px;
}

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

.brand img {
  display: block;
  width: min(290px, 100%);
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.desktop-nav a {
  padding: 15px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #d9e7f6;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
  border-color: rgba(66, 153, 255, 0.42);
  background: rgba(14, 61, 109, 0.58);
  outline: none;
}

.review-pill {
  min-width: 236px;
  padding: 11px 13px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 107, 94, 0.52);
  border-radius: 12px;
  background: rgba(5, 31, 62, 0.78);
  box-shadow: inset 0 0 28px rgba(41, 121, 220, 0.09);
}

.review-shield {
  color: #3bc6ff;
  font-size: 24px;
}

.review-pill strong {
  display: block;
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 1px;
}

.review-pill small {
  display: block;
  color: #c0d1e3;
  font-size: 10px;
}

.review-pill b {
  font-size: 14px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 42px;
  height: 42px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  list-style: none;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: white;
}

.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 50px;
  width: min(280px, calc(100vw - 36px));
  padding: 10px;
  display: grid;
  border: 1px solid rgba(65, 150, 244, 0.44);
  border-radius: 10px;
  background: #062344;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
}

.mobile-menu nav a {
  padding: 13px 14px;
  border-radius: 7px;
  color: #dceafb;
  font-weight: 700;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  background: rgba(45, 137, 237, 0.18);
  outline: none;
}

.hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background: #031329;
}

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

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #031329 0%,
      rgba(3, 19, 41, 0.97) 19%,
      rgba(3, 19, 41, 0.75) 41%,
      rgba(3, 19, 41, 0.1) 68%,
      rgba(3, 19, 41, 0) 100%
    ),
    linear-gradient(0deg, rgba(3, 19, 41, 0.66) 0%, transparent 28%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 80px));
  min-height: 630px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 66px 0 72px;
}

.hero-copy {
  width: min(650px, 51%);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 20px;
  padding: 8px 13px;
  border: 1px solid rgba(61, 149, 255, 0.53);
  border-radius: 6px;
  background: rgba(8, 43, 82, 0.66);
  color: #cfe4fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.35px;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 4.65vw, 72px);
  line-height: 0.98;
  letter-spacing: -2.7px;
}

.hero h1 span {
  display: block;
  margin-top: 15px;
  color: var(--yellow);
  font-size: 0.72em;
  line-height: 1.08;
  letter-spacing: -1.7px;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #b9c9dc;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: linear-gradient(180deg, #ffdd29, #ffc800);
  color: #07172b;
  box-shadow: 0 8px 25px rgba(255, 207, 20, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 12px 32px rgba(255, 207, 20, 0.32);
}

.button-ghost {
  border-color: rgba(255, 213, 25, 0.55);
  background: rgba(4, 24, 50, 0.5);
  color: #e9f3fd;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(10, 52, 99, 0.72);
}

.nl-availability {
  width: fit-content;
  max-width: 570px;
  margin-top: 26px;
  padding: 10px 14px 10px 11px;
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(58, 164, 255, 0.48);
  border-radius: 8px;
  background: rgba(4, 31, 63, 0.78);
  color: #afc6dc;
  font-size: 12px;
  line-height: 1.35;
}

.nl-availability b {
  display: block;
  color: #fff;
  font-size: 13px;
}

.flag-nl,
.flag-large {
  overflow: hidden;
  display: grid;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.flag-nl {
  height: 30px;
}

.flag-nl i:nth-child(1),
.flag-large i:nth-child(1) {
  background: #ae1c28;
}

.flag-nl i:nth-child(2),
.flag-large i:nth-child(2) {
  background: #fff;
}

.flag-nl i:nth-child(3),
.flag-large i:nth-child(3) {
  background: #21468b;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: 0 24px 34px;
  background: linear-gradient(180deg, #031329 0%, #041a34 100%);
}

.trust-grid {
  width: min(1320px, 100%);
  min-height: 100px;
  margin: 0 auto;
  padding: 18px 8px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  border: 1px solid rgba(57, 144, 238, 0.36);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(9, 43, 86, 0.95),
    rgba(4, 27, 58, 0.96)
  );
  box-shadow:
    inset 0 0 38px rgba(43, 130, 230, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.16);
}

.trust-item {
  min-height: 52px;
  padding: 4px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(79, 142, 211, 0.23);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  min-width: 36px;
  color: #60b7ff;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.trust-nl .trust-icon {
  color: #fff;
  text-shadow:
    -2px -2px 0 #ae1c28,
    2px 2px 0 #21468b;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  color: #f1f7ff;
  font-size: 13px;
}

.trust-item small {
  margin-top: 2px;
  color: #a6bad0;
  font-size: 10px;
}

.section-shell {
  padding: 92px max(30px, calc((100% - 1240px) / 2));
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.nl-focus h2,
.reviews h2,
.final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

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

.nl-focus {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 80px;
  background:
    radial-gradient(circle at 77% 50%, rgba(0, 133, 255, 0.2), transparent 27%),
    linear-gradient(180deg, #041a34 0%, #031329 100%);
}

.nl-focus::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -260px;
  top: -240px;
  border: 1px solid rgba(63, 159, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(63, 159, 255, 0.025),
    0 0 0 180px rgba(63, 159, 255, 0.02);
}

.nl-focus-copy {
  position: relative;
  z-index: 2;
}

.nl-focus .lead {
  margin: 24px 0 0;
  color: #b3c5d8;
  font-size: 18px;
  line-height: 1.7;
}

.check-list {
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: #d8e5f2;
  font-size: 15px;
  line-height: 1.45;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(68, 211, 151, 0.14);
  color: #55db9a;
  font-size: 12px;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
  outline: none;
}

.nl-visual {
  position: relative;
  z-index: 2;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.nl-visual::before {
  content: "";
  position: absolute;
  inset: 35px;
  border: 1px solid rgba(59, 153, 255, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(20, 117, 231, 0.2), transparent 56%),
    repeating-radial-gradient(
      circle at center,
      rgba(70, 155, 255, 0.1) 0 1px,
      transparent 1px 40px
    );
}

.location-card {
  position: relative;
  z-index: 2;
  width: 245px;
  padding: 24px;
  border: 1px solid rgba(69, 169, 255, 0.58);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(10, 57, 108, 0.96), rgba(3, 26, 56, 0.98));
  box-shadow:
    0 22px 70px rgba(0, 83, 184, 0.35),
    inset 0 0 36px rgba(41, 135, 245, 0.12);
  transform: rotate(-2deg);
}

.flag-large {
  width: 76px;
  height: 48px;
  margin-bottom: 25px;
}

.location-card > p {
  margin: 0 0 6px;
  color: #79c5ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.location-card h3 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  letter-spacing: -1px;
}

.location-card > span {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bfead4;
  font-size: 13px;
  font-weight: 700;
}

.location-card > span i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #51d994;
  box-shadow: 0 0 12px #51d994;
}

.location-stat {
  position: absolute;
  z-index: 3;
  width: 160px;
  padding: 15px 17px;
  border: 1px solid rgba(78, 153, 235, 0.37);
  border-radius: 11px;
  background: rgba(5, 32, 65, 0.92);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.location-stat strong,
.location-stat small {
  display: block;
}

.location-stat strong {
  color: var(--yellow);
  font-size: 23px;
}

.location-stat small {
  margin-top: 4px;
  color: #9fb6cd;
  font-size: 11px;
}

.location-stat-top {
  top: 62px;
  right: 4px;
}

.location-stat-bottom {
  left: 0;
  bottom: 53px;
}

.network-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.network-lines i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39b9ff;
  box-shadow: 0 0 19px #168cff;
}

.network-lines i:nth-child(1) {
  left: 14%;
  top: 19%;
}

.network-lines i:nth-child(2) {
  right: 12%;
  top: 33%;
}

.network-lines i:nth-child(3) {
  left: 17%;
  bottom: 22%;
}

.network-lines i:nth-child(4) {
  right: 18%;
  bottom: 17%;
}

.offers {
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 112, 214, 0.15), transparent 35%),
    linear-gradient(180deg, #031329 0%, #04182f 100%);
}

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

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(67, 149, 239, 0.3);
  border-radius: 14px;
  background: linear-gradient(
    160deg,
    rgba(10, 50, 95, 0.95),
    rgba(5, 29, 59, 0.98)
  );
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(55, 171, 255, 0.65);
}

.offer-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: -100px;
  right: -80px;
  border-radius: 50%;
  background: rgba(27, 131, 255, 0.12);
  filter: blur(2px);
}

.offer-top {
  position: relative;
  z-index: 1;
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 19px;
}

.offer-top img {
  width: 92px;
  height: 92px;
}

.offer-top p {
  margin: 0 0 8px;
  color: #53b7ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.offer-top h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.price {
  margin: 22px 0;
  padding: 19px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 10px;
  border-top: 1px solid rgba(71, 147, 229, 0.22);
  border-bottom: 1px solid rgba(71, 147, 229, 0.22);
}

.price span {
  grid-row: 1;
  color: #9fb4ca;
  font-size: 12px;
}

.price strong {
  grid-row: 1 / 3;
  justify-self: end;
  color: var(--yellow);
  font-size: 36px;
  letter-spacing: -1.5px;
}

.price small {
  color: #9fb4ca;
  font-size: 11px;
}

.offer-card ul {
  min-height: 132px;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 25px;
  color: #c3d2e2;
  font-size: 14px;
  line-height: 1.45;
}

.offer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #57d497;
  font-weight: 900;
}

.offer-link {
  margin-top: 25px;
  min-height: 49px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 211, 25, 0.45);
  border-radius: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.offer-link:hover,
.offer-link:focus-visible {
  background: var(--yellow);
  color: #06162b;
  outline: none;
}

.why {
  background:
    radial-gradient(circle at 8% 90%, rgba(29, 119, 226, 0.12), transparent 30%),
    linear-gradient(180deg, #04182f 0%, #031329 100%);
}

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

.why-grid article {
  min-height: 198px;
  padding: 26px;
  border: 1px solid rgba(72, 142, 217, 0.22);
  border-radius: 12px;
  background: rgba(7, 37, 72, 0.62);
}

.why-grid article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(67, 161, 255, 0.34);
  border-radius: 11px;
  background: rgba(26, 110, 204, 0.12);
  color: #6dc0ff;
  font-size: 14px;
  font-weight: 900;
}

.why-grid h3 {
  margin: 20px 0 10px;
  color: #fff;
  font-size: 18px;
}

.why-grid p {
  margin: 0;
  color: #aabed2;
  font-size: 14px;
  line-height: 1.6;
}

.reviews {
  padding: 55px max(30px, calc((100% - 1240px) / 2));
  border-top: 1px solid rgba(73, 153, 239, 0.22);
  border-bottom: 1px solid rgba(73, 153, 239, 0.22);
  background:
    radial-gradient(circle at 78% 20%, rgba(42, 138, 255, 0.15), transparent 26%),
    linear-gradient(100deg, #062243 0%, #071b36 100%);
}

.reviews-inner {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  align-items: center;
  gap: 48px;
}

.reviews h2 {
  font-size: clamp(30px, 2.8vw, 43px);
}

.reviews p:not(.section-kicker) {
  max-width: 640px;
  margin: 15px 0 0;
  color: #acc0d5;
  line-height: 1.65;
}

.rating-card {
  padding: 21px 26px;
  border: 1px solid rgba(255, 119, 101, 0.42);
  border-radius: 13px;
  background: rgba(5, 27, 55, 0.62);
  text-align: center;
}

.rating-card strong {
  display: block;
  color: #fff;
  font-size: 31px;
}

.rating-card strong span {
  color: #8fa9c1;
  font-size: 16px;
}

.rating-card div {
  margin: 5px 0;
  color: var(--yellow);
  letter-spacing: 2px;
}

.rating-card small {
  color: #9eb4ca;
  font-size: 10px;
}

.final-cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(31, 128, 237, 0.16), transparent 28%),
    #031329;
}

.final-cta-inner {
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  border: 1px solid rgba(66, 155, 248, 0.35);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(10, 54, 102, 0.94), rgba(4, 27, 56, 0.98));
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.23);
}

.final-cta h2 {
  max-width: 720px;
}

.final-cta p:not(.section-kicker) {
  max-width: 690px;
  margin: 18px 0 0;
  color: #abc0d5;
  font-size: 16px;
  line-height: 1.65;
}

.final-actions {
  display: grid;
  gap: 13px;
}

.site-footer {
  background: #020e1e;
  border-top: 1px solid rgba(67, 143, 224, 0.22);
}

.footer-main {
  padding: 64px max(30px, calc((100% - 1240px) / 2));
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr;
  gap: 52px;
}

.footer-brand img {
  width: min(280px, 100%);
  height: auto;
}

.footer-brand p {
  max-width: 370px;
  margin: 22px 0;
  color: #8fa6bd;
  font-size: 13px;
  line-height: 1.7;
}

.footer-rating {
  display: inline-flex;
  gap: 9px;
  color: #b8cbdf;
  font-size: 12px;
}

.footer-rating span {
  color: var(--yellow);
}

.footer-column h2,
.footer-identity h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 15px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column a {
  color: #91a9c0;
  font-size: 13px;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--yellow);
  outline: none;
}

.footer-identity > strong {
  color: #dce9f6;
  font-size: 14px;
}

.footer-identity dl {
  margin: 18px 0 0;
}

.footer-identity dl div {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
}

.footer-identity dt {
  color: #7891aa;
  font-size: 11px;
}

.footer-identity dd {
  margin: 0;
  color: #b8cada;
  font-size: 11px;
}

.footer-bottom {
  padding: 21px max(30px, calc((100% - 1240px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(65, 131, 203, 0.17);
  color: #71889e;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #9fb6cc;
}

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

  .desktop-nav a {
    padding-inline: 10px;
  }

  .review-pill {
    min-width: 210px;
  }

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

  .trust-item:nth-child(4) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(79, 142, 211, 0.2);
  }

  .reviews-inner {
    grid-template-columns: 1fr 200px;
  }

  .reviews-inner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .footer-identity {
    grid-column: 1 / -1;
    padding-top: 26px;
    border-top: 1px solid rgba(66, 137, 214, 0.18);
  }

  .footer-identity dl {
    max-width: 500px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 88px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 250px;
  }

  .desktop-nav,
  .review-pill {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero,
  .hero-inner {
    min-height: 660px;
  }

  .hero-art {
    left: 10%;
  }

  .hero-art img {
    opacity: 0.63;
    object-position: 58% top;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 19, 41, 0.98), rgba(3, 19, 41, 0.68)),
      linear-gradient(0deg, #031329 0%, transparent 46%);
  }

  .hero-copy {
    width: min(680px, 100%);
  }

  .nl-focus {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .nl-visual {
    min-height: 410px;
  }

  .offer-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .offer-card ul {
    min-height: auto;
  }

  .why-grid article {
    min-height: auto;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-actions {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .reviews-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rating-card {
    width: 220px;
  }

  .reviews-inner .button {
    grid-column: auto;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .header-inner {
    width: min(100% - 28px, 1320px);
  }

  .brand img {
    width: 212px;
  }

  .hero-inner {
    width: min(100% - 40px, 1320px);
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -1.8px;
  }

  .hero h1 span {
    font-size: 0.74em;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .nl-availability {
    grid-template-columns: 38px 1fr;
  }

  .nl-availability > span:last-child {
    display: none;
  }

  .trust-strip {
    padding-inline: 14px;
  }

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

  .trust-item {
    border-right: 1px solid rgba(79, 142, 211, 0.23) !important;
    border-bottom: 1px solid rgba(79, 142, 211, 0.2);
  }

  .trust-item:nth-child(even) {
    border-right: 0 !important;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-shell {
    padding: 72px 18px;
  }

  .offer-card {
    padding: 23px;
  }

  .nl-visual::before {
    inset: 36px 0;
  }

  .location-stat {
    width: 135px;
    padding: 12px;
  }

  .location-stat-top {
    right: -4px;
  }

  .location-stat-bottom {
    left: -4px;
  }

  .reviews {
    padding: 62px 18px;
  }

  .final-cta-inner {
    padding: 34px 23px;
  }

  .final-actions {
    display: grid;
  }

  .footer-main {
    padding: 56px 24px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .footer-identity {
    padding-top: 24px;
  }

  .footer-bottom {
    padding: 22px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
