:root {
  --navy-1000: #010813;
  --navy-950: #020d1d;
  --navy-900: #03152c;
  --navy-850: #061d3a;
  --navy-800: #08264d;
  --blue-600: #087dd7;
  --blue-500: #1aa8ff;
  --blue-300: #68cbff;
  --yellow: #ffd21a;
  --yellow-strong: #ffc400;
  --white: #ffffff;
  --text: #edf6ff;
  --muted: #9fb2c9;
  --line: rgba(87, 166, 241, 0.24);
  --card: rgba(5, 29, 59, 0.78);
  --container: 1240px;
  --shadow: 0 26px 70px rgba(0, 7, 20, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--navy-1000);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 20%, rgba(6, 73, 151, 0.13), transparent 30%),
    var(--navy-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

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

.section {
  position: relative;
  padding: 96px 0;
}

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

.skip-link {
  position: fixed;
  left: 20px;
  top: 16px;
  z-index: 1000;
  padding: 12px 16px;
  color: #06162b;
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.official-strip {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 7px max(28px, calc((100vw - var(--container)) / 2));
  color: #9bb0c8;
  background: #020b19;
  border-bottom: 1px solid rgba(59, 144, 226, 0.25);
  font-size: 12px;
}

.official-strip a {
  color: var(--yellow);
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(49, 135, 218, 0.35);
  background: rgba(2, 13, 29, 0.92);
  box-shadow: 0 10px 35px rgba(0, 6, 18, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1340px, calc(100% - 44px));
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 34px;
}

.brand-link {
  width: fit-content;
}

.brand-link img {
  width: clamp(210px, 19vw, 284px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 12px 13px;
  color: #d8e5f4;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(44, 137, 224, 0.14);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 9px;
  padding: 0 18px;
  color: #07152a;
  background: var(--yellow);
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(255, 210, 26, 0.16);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(255, 210, 26, 0.25);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(680px, 72vw, 790px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: #020b19;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(1.08) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 11, 25, 0.99) 0%, rgba(2, 11, 25, 0.89) 32%, rgba(2, 11, 25, 0.18) 61%, rgba(2, 11, 25, 0.05) 100%),
    linear-gradient(0deg, rgba(2, 13, 29, 0.72) 0%, transparent 30%),
    radial-gradient(circle at 30% 55%, rgba(11, 103, 217, 0.15), transparent 35%);
}

.hero-content {
  padding: 80px 0 100px;
}

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

.eyebrow {
  width: fit-content;
  margin: 0;
  color: var(--blue-300);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 20px 0 20px;
  color: var(--white);
  font-size: clamp(50px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

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

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

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

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

.button-primary {
  color: #07152a;
  background: linear-gradient(135deg, var(--yellow), #ffe15a);
  box-shadow: 0 13px 34px rgba(255, 210, 26, 0.17);
}

.button-primary:hover {
  box-shadow: 0 17px 40px rgba(255, 210, 26, 0.26);
}

.button-ghost {
  color: var(--white);
  background: rgba(4, 22, 46, 0.58);
  border-color: rgba(97, 184, 255, 0.45);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(14, 61, 110, 0.54);
  border-color: rgba(104, 203, 255, 0.72);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.hero-proof a,
.hero-proof p {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 10px;
  margin: 0;
}

.hero-proof .stars {
  grid-row: 1 / span 2;
  color: var(--yellow);
  letter-spacing: 1px;
}

.hero-proof strong {
  font-size: 13px;
}

.hero-proof small {
  color: #91a6bd;
  font-size: 10px;
}

.proof-divider {
  width: 1px;
  height: 34px;
  background: rgba(114, 168, 220, 0.26);
}

.trust-bar {
  position: relative;
  z-index: 4;
  border-block: 1px solid rgba(48, 137, 225, 0.36);
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 131, 255, 0.12), transparent 58%),
    rgba(3, 19, 41, 0.97);
}

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

.trust-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  border-right: 1px solid rgba(91, 161, 231, 0.18);
  transition: background 160ms ease;
}

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

.trust-item:hover {
  background: rgba(27, 103, 181, 0.12);
}

.line-icon {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-300);
  border: 1px solid rgba(104, 203, 255, 0.42);
  border-radius: 9px;
  background: rgba(31, 118, 198, 0.12);
  font-size: 9px;
  font-weight: 900;
}

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

.trust-item strong {
  color: #edf6ff;
  font-size: 12px;
}

.trust-item small {
  margin-top: 3px;
  color: #859bb3;
  font-size: 10px;
}

.performance {
  background:
    radial-gradient(circle at 82% 14%, rgba(10, 97, 207, 0.16), transparent 28%),
    linear-gradient(180deg, #03142b, #020f21);
}

.section-heading {
  max-width: 820px;
}

.section-heading.centered {
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.section-heading h2,
.included-copy h2,
.faq-panel h2 {
  margin: 15px 0 17px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.included-copy > p,
.faq-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.performance-card {
  min-height: 260px;
  padding: 30px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.performance-card:last-child {
  border-right: 0;
}

.performance-card:hover {
  background: rgba(13, 77, 145, 0.16);
  transform: translateY(-4px);
}

.feature-icon {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 2px solid var(--blue-500);
  border-radius: 22px;
  box-shadow: 0 0 30px rgba(26, 168, 255, 0.12);
  transform: rotate(45deg);
}

.feature-icon::after {
  color: var(--blue-300);
  font-size: 17px;
  font-weight: 900;
  transform: rotate(-45deg);
}

.rocket::after { content: "↗"; }
.shield::after { content: "✓"; }
.cloud::after { content: "☁"; }
.refresh::after { content: "↻"; }
.gear::after { content: "⚙"; }
.headset::after { content: "◖◗"; font-size: 11px; }

.performance-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 15px;
}

.performance-card p {
  margin: 0;
  color: #8fa4bc;
  font-size: 12px;
  line-height: 1.65;
}

.included {
  border-top: 1px solid rgba(60, 143, 225, 0.17);
  background:
    linear-gradient(rgba(3, 20, 43, 0.95), rgba(3, 20, 43, 0.95)),
    radial-gradient(circle at 20% 50%, rgba(18, 103, 210, 0.2), transparent 35%);
}

.included-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 80px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--blue-300);
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover {
  color: var(--yellow);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.included-grid > a {
  min-height: 170px;
  display: flex;
  gap: 17px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 132, 229, 0.12), transparent 42%),
    rgba(5, 30, 62, 0.76);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.included-grid > a:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 191, 255, 0.62);
  background-color: rgba(7, 39, 78, 0.92);
}

.included-grid > a > span {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-300);
  border: 1px solid rgba(104, 203, 255, 0.32);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
}

.included-grid h3 {
  margin: 2px 0 8px;
  color: var(--white);
  font-size: 17px;
}

.included-grid p {
  margin: 0;
  color: #90a5bd;
  font-size: 12px;
  line-height: 1.65;
}

.offers {
  border-top: 1px solid rgba(56, 139, 222, 0.2);
  background:
    radial-gradient(circle at 25% 18%, rgba(6, 108, 226, 0.18), transparent 31%),
    radial-gradient(circle at 76% 50%, rgba(72, 49, 179, 0.14), transparent 33%),
    #020f21;
}

.offer-grid {
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 auto;
}

.offer-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(48, 159, 255, 0.65);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 128, 240, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(6, 42, 84, 0.94), rgba(3, 23, 49, 0.96));
  box-shadow: var(--shadow);
  transition: transform 200ms ease, border-color 200ms ease;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(85, 185, 255, 0.18);
  border-radius: 50%;
}

.offer-card:hover {
  transform: translateY(-7px);
  border-color: var(--blue-300);
}

.offer-cloud {
  border-color: rgba(122, 107, 255, 0.58);
  background:
    radial-gradient(circle at 100% 0%, rgba(92, 70, 235, 0.24), transparent 38%),
    linear-gradient(145deg, rgba(23, 34, 93, 0.9), rgba(4, 23, 49, 0.96));
}

.offer-kicker {
  color: #d9eaff;
  font-size: 17px;
  font-weight: 750;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.price small,
.price span {
  color: #9eb1c8;
  font-size: 11px;
}

.price strong {
  color: var(--white);
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.052em;
}

.offer-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 24px;
  color: #b8c8da;
  font-size: 13px;
}

.offer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-300);
  font-weight: 900;
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.price-note {
  max-width: 820px;
  margin: 26px auto 0;
  color: #70869f;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.faq-reviews {
  padding-top: 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(12, 99, 205, 0.13), transparent 35%),
    #021023;
}

.faq-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  padding: 38px;
  border: 1px solid rgba(56, 151, 238, 0.45);
  border-radius: 14px;
  background: rgba(3, 22, 47, 0.74);
}

.faq-panel h2 {
  margin-bottom: 28px;
  font-size: 32px;
}

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

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

.faq-list summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #dce9f7;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 650;
}

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

.faq-list summary span {
  color: var(--blue-300);
  font-size: 20px;
  transition: transform 160ms ease;
}

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

.faq-list details p {
  margin: -2px 34px 18px 0;
  color: #8fa5bd;
  font-size: 12px;
  line-height: 1.7;
}

.reviews-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 410px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(51, 133, 235, 0.22), transparent 40%),
    rgba(3, 22, 47, 0.82);
  transition: transform 180ms ease, border-color 180ms ease;
}

.reviews-panel:hover {
  transform: translateY(-5px);
  border-color: var(--blue-300);
}

.review-rating {
  margin: 24px 0 18px;
}

.review-rating span,
.review-rating strong {
  display: block;
}

.review-rating span {
  color: var(--yellow);
  font-size: 27px;
  letter-spacing: 4px;
}

.review-rating strong {
  margin-top: 10px;
  color: var(--white);
  font-size: 34px;
}

.reviews-panel > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: #a9bbcf;
  line-height: 1.7;
}

.review-cta {
  margin-top: 26px;
  color: var(--blue-300);
  font-size: 13px;
  font-weight: 800;
}

.cta-band {
  padding: 38px 0;
  border-block: 1px solid rgba(56, 146, 234, 0.35);
  background:
    radial-gradient(circle at 30% 50%, rgba(15, 107, 230, 0.18), transparent 34%),
    linear-gradient(90deg, #041631, #061f41, #041631);
}

.cta-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.cta-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  border: 1px solid rgba(255, 210, 26, 0.55);
  border-radius: 50%;
  font-weight: 900;
}

.cta-layout h2 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 24px;
}

.cta-layout p {
  margin: 0;
  color: #9eb1c8;
  font-size: 13px;
}

.site-footer {
  color: #9fb0c4;
  background: #010a17;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 54px;
  padding-top: 60px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 245px;
  height: auto;
}

.footer-brand p {
  max-width: 300px;
  margin: 22px 0;
  color: #899db5;
  font-size: 12px;
  line-height: 1.7;
}

.social-row {
  display: flex;
  gap: 9px;
}

.social-row a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #b6c6d8;
  border: 1px solid rgba(101, 155, 208, 0.25);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease;
}

.social-row a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

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

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 14px;
}

.footer-column a,
.footer-column span {
  color: #879bb2;
  font-size: 11px;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--yellow);
}

.legal-column strong {
  color: #d9e6f3;
  font-size: 12px;
}

.footer-bottom {
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: #697f98;
  border-top: 1px solid rgba(86, 143, 199, 0.17);
  font-size: 10px;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-bottom a:hover {
  color: #c2d2e2;
}

.yoor-link {
  justify-self: end;
  opacity: 0.38;
  letter-spacing: 0.04em;
}

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

  .header-cta {
    display: none;
  }

  .performance-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .performance-card:nth-child(3) {
    border-right: 0;
  }

  .performance-card:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .trust-item:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(91, 161, 231, 0.18);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 78px 0;
  }

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

  .menu-button {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    justify-self: end;
    padding: 0;
    color: var(--white);
    border: 1px solid rgba(84, 160, 231, 0.34);
    border-radius: 8px;
    background: rgba(11, 48, 88, 0.45);
    cursor: pointer;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-lines::before,
  .menu-lines::after {
    content: "";
    position: absolute;
  }

  .menu-lines::before { transform: translateY(-6px); }
  .menu-lines::after { transform: translateY(6px); }

  .menu-button[aria-expanded="true"] .menu-lines {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] .menu-lines::before {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-lines::after {
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 116px 18px auto;
    max-height: calc(100vh - 136px);
    display: grid;
    gap: 4px;
    padding: 16px;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(79, 162, 239, 0.38);
    border-radius: 13px;
    background: rgba(2, 14, 31, 0.98);
    box-shadow: 0 30px 80px rgba(0, 5, 15, 0.55);
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 730px;
    align-items: flex-end;
  }

  .hero-media img {
    width: 135%;
    max-width: none;
    margin-left: -18%;
    opacity: 0.83;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(2, 11, 25, 0.99) 4%, rgba(2, 11, 25, 0.75) 62%, rgba(2, 11, 25, 0.18) 100%),
      linear-gradient(90deg, rgba(2, 11, 25, 0.85), rgba(2, 11, 25, 0.1));
  }

  .hero-content {
    padding: 210px 0 72px;
  }

  .hero-copy {
    width: min(720px, 92%);
  }

  .included-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .legal-column {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .official-strip {
    min-height: 48px;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 7px 15px;
    text-align: center;
    font-size: 10px;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    width: calc(100% - 30px);
  }

  .brand-link img {
    width: 204px;
  }

  .main-nav {
    inset: 86px 15px auto;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    width: 182%;
    height: 100%;
    margin-left: -60%;
    object-position: 60% center;
  }

  .hero-content {
    padding: 220px 0 60px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

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

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .proof-divider {
    width: 100%;
    height: 1px;
  }

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

  .trust-item {
    min-height: 90px;
    padding: 15px;
  }

  .trust-item:nth-child(3) {
    border-right: 1px solid rgba(91, 161, 231, 0.18);
  }

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

  .trust-item:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(91, 161, 231, 0.18);
  }

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

  .performance-card {
    min-height: 235px;
    padding: 27px 16px;
  }

  .performance-card:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .performance-card:nth-child(2n) {
    border-right: 0;
  }

  .performance-card:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .included-grid,
  .offer-grid,
  .faq-reviews-grid {
    grid-template-columns: 1fr;
  }

  .included-grid > a {
    min-height: 145px;
    padding: 24px 20px;
  }

  .offer-card {
    min-height: 500px;
    padding: 30px 22px;
  }

  .panel {
    padding: 28px 22px;
  }

  .reviews-panel {
    min-height: 350px;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-icon {
    margin-inline: auto;
  }

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

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

  .legal-column {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 22px 0;
    text-align: center;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    justify-content: center;
  }

  .yoor-link {
    justify-self: center;
  }
}

@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;
  }
}

@media print {
  .official-strip,
  .site-header,
  .hero-media,
  .cta-band,
  .site-footer {
    display: none;
  }

  body,
  .performance,
  .included,
  .offers,
  .faq-reviews {
    color: #111;
    background: #fff;
  }
}
