:root {
  --navy-950: #071521;
  --navy-900: #0d1f2d;
  --navy-800: #123149;
  --teal-600: #0ea58a;
  --teal-500: #27bca0;
  --lime-500: #8bc34a;
  --sky-500: #2ba7e0;
  --sky-300: #9fd9f6;
  --mist-100: #eef6fb;
  --mist-200: #e5eff5;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --border-soft: rgba(18, 49, 73, 0.1);
  --shadow-soft: 0 24px 60px rgba(11, 35, 54, 0.12);
  --shadow-card: 0 18px 44px rgba(9, 31, 49, 0.1);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

body.page {
  min-width: 320px;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--navy-900);
  background:
    radial-gradient(circle at top left, rgba(43, 167, 224, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(139, 195, 74, 0.12), transparent 24%),
    linear-gradient(180deg, #f7fbfe 0%, #eef6fb 52%, #f8fcff 100%);
  line-height: 1.6;
}

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

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-shell::before {
  top: -14rem;
  right: -9rem;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(14, 165, 138, 0.18) 0%, rgba(14, 165, 138, 0.04) 56%, transparent 72%);
}

.page-shell::after {
  top: 17rem;
  left: -14rem;
  width: 33rem;
  height: 33rem;
  border: 34px solid rgba(43, 167, 224, 0.08);
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.6rem 0;
  backdrop-filter: blur(20px);
  background: rgba(247, 251, 254, 0.72);
  border-bottom: 1px solid rgba(18, 49, 73, 0.06);
  box-shadow: 0 12px 26px rgba(9, 31, 49, 0.05);
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 1;
  pointer-events: none;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: block;
  width: fit-content;
  min-width: 0;
  flex: 0 0 auto;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  line-height: 0;
}

.brand__banner {
  width: clamp(12rem, 18vw, 18rem);
  height: clamp(3.5rem, 5.2vw, 4.8rem);
  object-fit: cover;
  object-position: center center;
  display: block;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.38rem;
  list-style: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(18, 49, 73, 0.1);
  box-shadow: 0 12px 22px rgba(15, 42, 64, 0.07);
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: var(--radius-pill);
  color: rgba(13, 31, 45, 0.74);
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--navy-900);
  background: rgba(43, 167, 224, 0.12);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--sky-500) 55%, var(--teal-600) 100%);
  box-shadow: 0 20px 34px rgba(18, 49, 73, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 22px 40px rgba(18, 49, 73, 0.26);
}

.button--secondary,
.button--ghost {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 49, 73, 0.12);
  box-shadow: 0 12px 28px rgba(11, 35, 54, 0.08);
}

.button--ghost:hover,
.button--ghost:focus-visible,
.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.94);
}

.site-main {
  position: relative;
}

.hero-section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0 2.4rem;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero-section::before {
  top: 2.5rem;
  right: -7rem;
  width: 30rem;
  height: 30rem;
  border: 28px solid rgba(14, 165, 138, 0.1);
  border-radius: 50%;
}

.hero-section::after {
  left: -9rem;
  bottom: 0.5rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.14) 0%, rgba(139, 195, 74, 0.03) 58%, transparent 72%);
  border-radius: 50%;
}

.hero-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.25rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  color: var(--teal-600);
  background: rgba(14, 165, 138, 0.1);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-500), var(--sky-500));
  box-shadow: 0 0 0 0.22rem rgba(43, 167, 224, 0.14);
}

.hero-copy__title,
.section-title {
  letter-spacing: -0.03em;
}

.hero-copy__title {
  max-width: 12ch;
  margin-bottom: 1.15rem;
  color: var(--navy-950);
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 0.96;
}

.hero-copy__text,
.section-text,
.benefit-card__text,
.contact-details__value,
.site-footer__tagline,
.site-footer__copy {
  color: rgba(13, 31, 45, 0.72);
}

.hero-copy__text {
  max-width: 36rem;
  margin-bottom: 1.8rem;
  font-size: clamp(1.05rem, 1.75vw, 1.2rem);
}

.hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-media {
  position: relative;
  z-index: 1;
}

.hero-media__frame {
  position: relative;
  padding: 1rem;
  border-radius: calc(var(--radius-xl) + 0.5rem);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(230, 239, 245, 0.72)),
    linear-gradient(135deg, rgba(14, 165, 138, 0.1), rgba(43, 167, 224, 0.08));
  box-shadow: var(--shadow-soft);
}

.hero-media__frame::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border-radius: calc(var(--radius-xl) - 0.2rem);
  border: 1px solid rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.hero-media__image {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: -2.25rem;
  padding: 0 1.1rem;
}

.hero-stats__card {
  display: grid;
  gap: 0.3rem;
  padding: 1.15rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 49, 73, 0.09);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.hero-stats__value {
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 800;
}

.hero-stats__label {
  color: rgba(13, 31, 45, 0.66);
  font-size: 0.86rem;
}

.content-section {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.plans-section {
  padding: clamp(1.8rem, 3.6vw, 2.8rem) 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.4rem;
}

.section-heading--compact {
  margin-bottom: 1.8rem;
}

.section-title {
  margin-bottom: 0.8rem;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.section-text {
  font-size: 1.04rem;
}

.benefits-section::before,
.plans-section::before,
.coverage-section::before,
.trust-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.benefits-section::before {
  top: 2.5rem;
  right: -14rem;
  width: 28rem;
  height: 28rem;
  margin-left: auto;
  border-radius: 50%;
  border: 30px solid rgba(43, 167, 224, 0.07);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.benefit-card {
  position: relative;
  min-height: 100%;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(244, 250, 253, 0.88));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.benefit-card::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  border-radius: 1rem 1rem 1rem 0.45rem;
  background:
    radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.75), transparent 32%),
    linear-gradient(135deg, rgba(43, 167, 224, 0.95), rgba(14, 165, 138, 0.95) 62%, rgba(139, 195, 74, 0.9));
  box-shadow: 0 16px 26px rgba(43, 167, 224, 0.18);
}

.benefit-card__title {
  margin-bottom: 0.7rem;
  color: var(--navy-900);
  font-size: 1.25rem;
  line-height: 1.15;
}

.plans-section::before {
  inset: 0 auto auto 50%;
  width: min(72rem, calc(100% - 2rem));
  height: 100%;
  transform: translateX(-50%);
  border-radius: 3rem;
  background:
    linear-gradient(135deg, rgba(13, 31, 45, 0.98), rgba(18, 49, 73, 0.92) 45%, rgba(14, 165, 138, 0.92) 100%);
  box-shadow: 0 28px 60px rgba(7, 21, 33, 0.18);
}

.plans-section .container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 72rem);
  padding: clamp(1.45rem, 2.8vw, 2rem) clamp(1.2rem, 2.6vw, 2rem) clamp(1.25rem, 2.8vw, 1.8rem);
}

.plans-section .section-eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.plans-section .section-title,
.plans-section .section-text {
  color: #f3fbff;
}

.plans-section .section-heading {
  max-width: 46rem;
  margin-bottom: 1.15rem;
}

.plans-section .section-title {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.98;
}

.plans-section .section-text {
  max-width: 38rem;
  font-size: 1.08rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.plan-card {
  display: grid;
  align-content: start;
  gap: 1.25rem;
  min-height: 100%;
  padding: 1.7rem;
  border-radius: 1.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 252, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 40px rgba(7, 21, 33, 0.18);
}

.plan-card:nth-child(2) {
  transform: translateY(-0.8rem);
}

.plan-card__header {
  display: grid;
  gap: 0.45rem;
}

.plan-card__name {
  margin: 0;
  color: var(--teal-600);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card__speed {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.8rem, 3.4vw, 2.35rem);
  line-height: 0.95;
}

.plan-card__features,
.coverage-list,
.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card__features {
  display: grid;
  gap: 0.65rem;
}

.plan-card__feature {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(13, 31, 45, 0.74);
  font-size: 1rem;
  line-height: 1.45;
}

.plan-card__feature::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-500), var(--teal-600));
}

.plan-card__cta {
  width: 100%;
  margin-top: auto;
}

.solution-section::before {
  inset: auto;
}

.solution-section__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 3vw, 2.25rem);
  align-items: center;
}

.solution-section__inner--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
}

.solution-visual {
  position: relative;
}

.solution-visual__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 24px 52px rgba(7, 21, 33, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.solution-copy .section-heading {
  margin-bottom: 1.3rem;
}

.solution-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.solution-point {
  min-height: 100%;
  padding: 1.2rem 1.15rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 49, 73, 0.08);
  box-shadow: 0 14px 28px rgba(11, 35, 54, 0.08);
}

.solution-point__title {
  margin: 0 0 0.55rem;
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.15;
}

.solution-point__text {
  margin: 0;
  color: rgba(13, 31, 45, 0.74);
  line-height: 1.55;
}

.solution-cta {
  margin-top: 1.3rem;
}

.enterprise-section::before {
  top: 1.5rem;
  right: -8rem;
  width: 21rem;
  height: 21rem;
  border-radius: 50%;
  border: 24px solid rgba(43, 167, 224, 0.08);
}

.real-estate-section::before {
  left: -10rem;
  bottom: 1.5rem;
  width: 23rem;
  height: 23rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 138, 0.1) 0%, rgba(14, 165, 138, 0.03) 60%, transparent 72%);
}

.coverage-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 2.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 251, 0.9)),
    linear-gradient(135deg, rgba(43, 167, 224, 0.08), rgba(14, 165, 138, 0.08));
  border: 1px solid rgba(18, 49, 73, 0.08);
  box-shadow: var(--shadow-soft);
}

.coverage-section__inner::after {
  content: "";
  position: absolute;
  right: 4rem;
  bottom: -2.5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  border: 22px solid rgba(14, 165, 138, 0.08);
}

.coverage-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.coverage-cta {
  min-width: min(100%, 24rem);
  padding-inline: 1.8rem;
  box-shadow: 0 18px 34px rgba(18, 49, 73, 0.18);
}

.trust-section::before {
  left: -10rem;
  bottom: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 167, 224, 0.11) 0%, rgba(43, 167, 224, 0.03) 55%, transparent 70%);
}

.trust-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.4rem;
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 0.9rem;
}

.trust-list__item {
  position: relative;
  padding: 1.2rem 1.25rem 1.2rem 3.6rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 49, 73, 0.08);
  box-shadow: 0 12px 28px rgba(11, 35, 54, 0.08);
  color: rgba(13, 31, 45, 0.78);
}

.trust-list__item::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1.15rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--lime-500), var(--teal-600));
  box-shadow: 0 10px 20px rgba(14, 165, 138, 0.18);
}

.contact-section::before {
  inset: auto 0 0 0;
  height: 72%;
  background: linear-gradient(180deg, rgba(239, 247, 251, 0), rgba(229, 239, 245, 0.76));
}

.contact-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.85fr);
  gap: 1.5rem;
  align-items: center;
}

.contact-card {
  position: relative;
  padding: clamp(1.6rem, 4vw, 2rem);
  border-radius: 2rem;
  background: linear-gradient(160deg, rgba(13, 31, 45, 0.98), rgba(18, 49, 73, 0.92) 55%, rgba(14, 165, 138, 0.88));
  color: #effaff;
  box-shadow: 0 26px 52px rgba(7, 21, 33, 0.2);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.contact-card__intro {
  margin-bottom: 1.25rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card__eyebrow {
  margin-bottom: 0.4rem;
  color: rgba(215, 247, 239, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card__title {
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.contact-card__text {
  margin-bottom: 0;
  color: rgba(239, 250, 255, 0.78);
  font-size: 0.96rem;
}

.contact-details {
  display: grid;
  gap: 0.95rem;
  margin: 0;
}

.contact-details__row {
  display: grid;
  gap: 0.18rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.contact-details__label {
  color: rgba(239, 250, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details__value {
  margin: 0;
  color: #ffffff;
  font-weight: 600;
}

.contact-details__link {
  color: inherit;
  text-decoration: none;
}

.contact-details__link:hover {
  color: #d7f7ef;
}

.site-footer {
  padding: 1rem 0 2.2rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.6rem;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 49, 73, 0.08);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__logo {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
}

.site-footer__name {
  margin-bottom: 0.25rem;
  color: var(--navy-900);
  font-weight: 800;
}

.site-footer__meta {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.site-footer__link {
  color: var(--teal-700);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__link:hover {
  color: var(--navy-900);
}

.site-footer__tagline,
.site-footer__copy {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.site-header--simple {
  padding-bottom: 0.4rem;
}

.site-header__inner--simple {
  grid-template-columns: auto auto;
  align-items: center;
}

.site-header__back {
  justify-self: end;
}

.privacy-section {
  padding-top: 1.4rem;
}

.privacy-section__inner {
  display: grid;
  gap: 1.5rem;
}

.privacy-grid {
  display: grid;
  gap: 1rem;
}

.privacy-card {
  padding: 1.35rem 1.4rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 49, 73, 0.08);
  box-shadow: 0 14px 30px rgba(11, 35, 54, 0.08);
}

.privacy-card__title {
  margin-bottom: 0.5rem;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.privacy-card__text {
  margin-bottom: 0;
  color: rgba(13, 31, 45, 0.78);
}

:focus-visible {
  outline: 3px solid rgba(43, 167, 224, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .site-header__inner,
  .hero-section__inner,
  .solution-section__inner,
  .solution-section__inner--reverse,
  .coverage-section__inner,
  .trust-section__inner,
  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .brand__banner {
    width: clamp(12rem, 26vw, 18rem);
  }

  .site-nav {
    margin-left: 0;
    justify-self: center;
  }

  .site-header__inner--simple {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-header__back {
    justify-self: center;
  }

  .hero-copy__title {
    max-width: 14ch;
  }

  .hero-media {
    max-width: 46rem;
  }

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

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

  .plan-card:nth-child(2) {
    transform: none;
  }

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

@media (max-width: 840px) {
  .site-header {
    position: static;
    padding: 0.75rem 0 0.55rem;
  }

  .site-header::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  }

  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.65rem;
  }

  .brand {
    justify-self: stretch;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    background: transparent;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav__list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand__banner {
    width: min(90%, 16.5rem);
    height: auto;
    aspect-ratio: 16 / 5;
  }

  .hero-section {
    padding-top: 0.85rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: -2.4rem;
    padding: 0 0.85rem;
  }

  .hero-stats__card {
    gap: 0.2rem;
    min-height: 100%;
    padding: 0.9rem 0.85rem;
    border-radius: 1.15rem;
  }

  .hero-stats__value {
    font-size: 0.9rem;
  }

  .hero-stats__label {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__meta {
    justify-items: start;
  }

  .solution-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container-width));
  }

  .site-nav__list {
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0.35rem;
    gap: 0.2rem;
  }

  .site-nav__item {
    flex: 1 1 0;
    min-width: 0;
  }

  .site-nav__link {
    width: 100%;
    min-height: 2.1rem;
    padding: 0 0.45rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .hero-copy__title {
    max-width: none;
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .plans-section .section-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .plans-section .section-text {
    font-size: 1rem;
  }

  .hero-section {
    padding-top: 0.6rem;
  }

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

  .hero-copy__actions .button {
    justify-content: center;
  }

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

  .solution-points {
    grid-template-columns: 1fr;
  }

  .solution-point,
  .solution-visual__image {
    border-radius: 1.5rem;
  }

  .coverage-section__inner,
  .contact-card,
  .site-footer__inner,
  .hero-media__frame,
  .benefit-card,
  .plan-card {
    border-radius: 1.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: -2rem;
    padding: 0 0.55rem;
  }

  .hero-stats__card {
    padding: 0.78rem 0.72rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(11, 35, 54, 0.08);
  }

  .hero-stats__value {
    font-size: 0.8rem;
  }

  .hero-stats__label {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .hero-stats__card,
  .trust-list__item,
  .contact-details__row {
    padding-left: 1rem;
  }

  .trust-list__item::before {
    position: static;
    display: inline-block;
    margin-right: 0.6rem;
    vertical-align: middle;
  }

  .coverage-actions {
    justify-content: center;
  }

  .coverage-list__item,
  .trust-list__item {
    padding: 1rem;
  }

  .coverage-list__item {
    padding: 1rem 1rem 1rem 3rem;
  }
}
