:root {
  --navy-950: #050d16;
  --navy-900: #071421;
  --navy-850: #0b1c2b;
  --navy-800: #10283b;
  --blue-500: #19a7e0;
  --blue-400: #44c7f4;
  --blue-100: #d9f5ff;
  --amber-500: #f3a928;
  --amber-400: #ffc14d;
  --white: #f7fbfe;
  --ink: #122232;
  --muted: #667a8c;
  --line: #dbe5ec;
  --surface: #fff;
  --surface-soft: #f4f8fb;
  --success: #17a672;
  --danger: #d95361;
  --shadow: 0 20px 55px rgba(5, 20, 33, .12);
  --radius: 20px;
  --shell: 1180px;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
.shell { width: min(var(--shell), calc(100% - 40px)); margin-inline: auto; }
.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; z-index: 200; left: 16px; top: -80px;
  padding: 10px 16px; background: var(--white); color: var(--navy-950);
  border-radius: 10px; transition: top .2s;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid rgba(25,167,224,.45); outline-offset: 3px; }

.utility { background: var(--navy-950); color: #a9bfd0; font-size: 13px; }
.utility__inner {
  min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.utility__inner div { display: flex; gap: 20px; }
.utility a:hover { color: var(--white); }
.header {
  position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(219,229,236,.85); backdrop-filter: blur(16px);
}
.header__inner { min-height: 76px; display: flex; align-items: center; gap: 34px; }
.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo__img {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(48vw, 190px);
  object-fit: contain;
}
.logo__img--footer {
  height: 48px;
  max-width: 210px;
}
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; font-weight: 600; color: #415567; }
.main-nav a { padding-block: 26px; position: relative; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px;
  background: var(--blue-500); transition: right .2s;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.locale {
  display: inline-flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-soft);
}
.locale button {
  border: 0; background: transparent; color: var(--muted); border-radius: 999px;
  padding: 5px 8px; font-size: 11px; font-weight: 700;
}
.locale button.is-active { background: var(--navy-900); color: var(--white); }
.menu-toggle { display: none; margin-left: auto; padding: 8px; background: transparent; border: 0; }
.menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 4px; background: var(--ink); }

.button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border: 1px solid transparent; border-radius: 12px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: #2b1c02; font-weight: 700; box-shadow: 0 10px 24px rgba(243,169,40,.22);
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(243,169,40,.32); }
.button--small { min-height: 40px; padding: 8px 14px; border-radius: 10px; font-size: 14px; }
.button--dark { background: var(--navy-900); color: var(--white); box-shadow: none; }
.button--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); box-shadow: none; }
.button--outline { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.button[disabled] { cursor: wait; opacity: .65; transform: none; }

.hero {
  position: relative; isolation: isolate; overflow: hidden; color: var(--white);
  background:
    radial-gradient(circle at 76% 20%, rgba(68,199,244,.22), transparent 28%),
    linear-gradient(125deg, var(--navy-950), #0b263a 58%, #0d3850);
}
.hero::before {
  content: ""; position: absolute; z-index: -1; width: 900px; height: 1px; right: -120px; top: 36%;
  background: linear-gradient(90deg, transparent, rgba(217,245,255,.5), transparent); transform: rotate(-9deg);
}
.hero::after {
  content: "A"; position: absolute; z-index: -1; right: 2%; top: -27%;
  font: 800 min(54vw, 650px)/1 var(--display); color: rgba(255,255,255,.025);
}
.hero__inner {
  min-height: 600px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; padding-block: 70px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  color: var(--blue-400); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.hero h1, .product-hero h1 {
  max-width: 760px; margin: 0 0 20px; font: 800 clamp(42px, 5.5vw, 72px)/1.02 var(--display); letter-spacing: -.055em;
}
.hero h1 em { color: var(--blue-400); font-style: normal; }
.hero__lead { max-width: 650px; margin: 0 0 30px; color: #bed0de; font-size: clamp(18px, 2vw, 21px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: #9eb5c6; font-size: 14px; }
.hero__trust span { display: flex; align-items: center; gap: 8px; }
.hero__trust i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(23,166,114,.14); }
.flight-panel {
  position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035)); box-shadow: 0 35px 90px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
}
.flight-panel__top { display: flex; justify-content: space-between; color: #a8c1d2; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.flight-route { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 32px 0; }
.flight-route b { font: 800 28px var(--display); }
.flight-route span { display: block; color: #a9bfce; font-size: 12px; font-weight: 500; }
.flight-route__line { position: relative; height: 1px; background: linear-gradient(90deg, var(--blue-400), rgba(255,255,255,.15)); }
.flight-route__line::after { content: "✈"; position: absolute; right: 38%; top: -14px; color: var(--blue-400); font-size: 22px; transform: rotate(5deg); }
.flight-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.flight-stats div { padding: 14px; border-radius: 14px; background: rgba(4,14,23,.42); }
.flight-stats b { display: block; font: 700 17px var(--display); }
.flight-stats span { color: #91aabb; font-size: 11px; }

.hero-side { display: flex; flex-direction: column; gap: 16px; align-self: stretch; }
.domain-panel__lead { margin: 14px 0 16px; color: #abc2d2; font-size: 14px; line-height: 1.45; }
.domain-panel__tlds { color: var(--blue-400); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: none; }
.domain-form--hero { grid-template-columns: 1fr; gap: 10px; }
.domain-form--hero input { min-height: 50px; }
.domain-form--hero .button { width: 100%; min-height: 46px; }
.domain-results--hero { margin-top: 14px; max-height: 240px; overflow: auto; padding-right: 4px; }
.domain-results--hero:empty { display: none; }
.domain-results--hero .domain-result { grid-template-columns: 1fr auto; gap: 10px; padding: 11px 12px; }
.domain-results--hero .domain-result .button { grid-column: 1 / -1; justify-self: stretch; }

.section { padding: 88px 0; }
.section--soft { background: var(--surface-soft); }
.section--dark { color: var(--white); background: var(--navy-900); }
.section-head { max-width: 740px; margin: 0 auto 42px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head h2 { margin: 0 0 12px; font: 800 clamp(30px, 4vw, 46px)/1.1 var(--display); letter-spacing: -.04em; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.section--dark .section-head p { color: #a8bfce; }
.kicker { color: var(--blue-500); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.fleet-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.fleet-card {
  min-height: 235px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--surface); transition: transform .2s, border-color .2s, box-shadow .2s;
}
.fleet-card:hover { transform: translateY(-5px); border-color: rgba(25,167,224,.45); box-shadow: var(--shadow); }
.fleet-card__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 28px;
  border-radius: 14px; color: var(--blue-500); background: #e9f8fe; font: 800 20px var(--display);
}
.fleet-card h3 { margin: 0 0 8px; font: 750 19px var(--display); }
.fleet-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.fleet-card strong { margin-top: auto; color: var(--blue-500); font-size: 14px; }

.plan-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 24px; flex-wrap: wrap;
}
.plan-toolbar__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-left: auto; }
.view-toggle {
  display: inline-flex; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface);
}
.view-toggle__btn {
  padding: 8px 14px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font-weight: 700; cursor: pointer;
}
.view-toggle__btn.is-active { background: var(--navy-900); color: var(--white); }
.compare-wrap { margin-top: 8px; }
.compare-scroll { overflow: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14px; }
.compare-table th, .compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
.compare-table thead th { background: #f4f8fb; position: sticky; top: 0; z-index: 1; }
.compare-table tbody th { width: 180px; color: var(--muted); font-weight: 700; background: #fafcfd; }
.compare-plan__type { display: block; color: var(--blue-500); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.compare-plan__name { display: block; margin: 6px 0; font: 750 18px var(--display); }
.compare-plan__price { display: block; margin-bottom: 12px; color: var(--muted); }
.plan-card__billing { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 600; }
.compare-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; max-width: 70ch; }
.tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.tab {
  padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-weight: 700;
}
.tab.is-active { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.period-toggle { color: var(--muted); font-size: 14px; }
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.plan-card {
  position: relative; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--surface); box-shadow: 0 8px 25px rgba(5,20,33,.04);
}
.plan-card.is-featured { border: 2px solid var(--blue-500); transform: translateY(-8px); box-shadow: var(--shadow); }
.plan-card__badge {
  position: absolute; top: -14px; right: 20px; padding: 5px 10px; border-radius: 999px;
  background: var(--blue-500); color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase;
}
.plan-card__type { color: var(--blue-500); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.plan-card h3 { margin: 8px 0 6px; font: 750 24px var(--display); }
.plan-card__summary { min-height: 45px; margin: 0 0 18px; color: var(--muted); }
.price { margin-bottom: 20px; }
.price strong { font: 800 38px var(--display); letter-spacing: -.04em; }
.price span { color: var(--muted); }
.feature-list { display: grid; gap: 10px; padding: 20px 0; margin: 0 0 20px; border-top: 1px solid var(--line); list-style: none; }
.feature-list li { display: flex; gap: 9px; color: #42576a; font-size: 14px; }
.feature-list li::before { content: "✓"; color: var(--success); font-weight: 800; }
.plan-card .button { margin-top: auto; }
.loading, .notice { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); color: var(--muted); }
.notice--error { border-color: rgba(217,83,97,.35); color: var(--danger); background: #fff8f8; }
.checkout-error { white-space: pre-wrap; }

.domain-box {
  padding: 36px; border-radius: 28px; color: var(--white);
  background: linear-gradient(125deg, #0b2031, #0d3d57); box-shadow: var(--shadow);
}
.domain-box__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; }
.domain-box h2 { margin: 0 0 8px; font: 800 clamp(28px,4vw,44px)/1.1 var(--display); letter-spacing: -.04em; }
.domain-box p { margin: 0; color: #abc2d2; }
.domain-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.domain-form input {
  min-height: 58px; width: 100%; padding: 0 20px; border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px; color: var(--white); background: rgba(0,0,0,.22);
}
.domain-form input::placeholder { color: #91a9ba; }
.domain-results { display: grid; gap: 8px; margin-top: 18px; }
.domain-result {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 20px; padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.055);
}
.domain-result small { color: #9db4c4; }
.domain-result.is-taken { opacity: .55; }

.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefit {
  padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface);
}
.benefit__number { color: var(--blue-500); font: 800 13px var(--display); }
.benefit h3 { margin: 16px 0 8px; font: 750 21px var(--display); }
.benefit p { margin: 0; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 44px; counter-reset: steps; }
.step { position: relative; counter-increment: steps; }
.step::before {
  content: counter(steps); width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 18px;
  border: 1px solid rgba(68,199,244,.45); border-radius: 50%; color: var(--blue-400); font-weight: 800;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 20px; left: 58px; width: calc(100% - 30px); height: 1px;
  background: linear-gradient(90deg, rgba(68,199,244,.5), transparent);
}
.step h3 { margin: 0 0 8px; font: 700 20px var(--display); }
.step p { margin: 0; color: #a6bac9; }

.regions { display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; align-items: center; }
.region-map {
  position: relative; min-height: 360px; overflow: hidden; border-radius: 24px;
  background:
    radial-gradient(circle at 28% 40%, rgba(68,199,244,.24) 0 4px, transparent 5px),
    radial-gradient(circle at 53% 34%, rgba(68,199,244,.24) 0 4px, transparent 5px),
    radial-gradient(circle at 81% 65%, rgba(68,199,244,.24) 0 4px, transparent 5px),
    linear-gradient(145deg, #e9f4f9, #f8fbfd);
}
.region-map::before {
  content: ""; position: absolute; inset: 16%; opacity: .35;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M55 105l100-60 90 25 30 60-50 80-70 20-45-45zm285-50l110-35 115 55 25 65-50 30-20 145-90 35-50-115-60-55zm300 120l90-20 45 50-30 55-80-10z' fill='%2319a7e0'/%3E%3C/svg%3E") center/contain no-repeat;
}
.region-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 24px; }
.region-list div { padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.region-list b { display: block; }
.region-list span { color: var(--muted); font-size: 13px; }

.faq { max-width: 860px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; gap: 20px; padding: 21px 0;
  cursor: pointer; list-style: none; font: 700 18px var(--display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue-500); font-size: 24px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: -4px 0 22px; color: var(--muted); }

.product-hero { padding: 80px 0 70px; color: var(--white); background: linear-gradient(125deg,var(--navy-950),#0b3046); }
.product-hero__inner { display: grid; grid-template-columns: 1fr .75fr; align-items: center; gap: 50px; }
.product-hero p { max-width: 650px; color: #b2c8d7; font-size: 19px; }
.product-hero__facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.product-hero__facts div { padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.05); }
.product-hero__facts b { display: block; color: var(--blue-400); font: 750 20px var(--display); }
.product-hero__facts span { color: #a5bdcd; font-size: 13px; }
.use-cases { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.use-case { padding: 25px; border-radius: var(--radius); background: var(--navy-900); color: var(--white); }
.use-case h3 { font: 700 20px var(--display); }
.use-case p { color: #a8becd; }

.checkout-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 30px; align-items: start; }
.checkout-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.field { display: grid; gap: 6px; color: #42576a; font-size: 14px; font-weight: 600; }
.field--full { grid-column: 1/-1; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid var(--line);
  border-radius: 10px; color: var(--ink); background: #fff;
}
.order-summary { position: sticky; top: 100px; padding: 26px; border-radius: var(--radius); color: var(--white); background: var(--navy-900); }
.order-summary h2 { font: 700 22px var(--display); }
.order-summary__row { display: flex; justify-content: space-between; gap: 15px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.order-summary p { color: #a9becc; font-size: 13px; }

.legal { max-width: 840px; }
.legal h1 { font: 800 clamp(34px,5vw,52px) var(--display); letter-spacing: -.04em; }
.legal h2 { margin-top: 38px; font: 700 24px var(--display); }
.legal p, .legal li { color: #516679; }
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.support-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); }

.footer { padding-top: 70px; color: #a9bdcb; background: var(--navy-950); }
.footer .logo { color: var(--white); }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 50px; padding-bottom: 50px; }
.footer__brand p { max-width: 300px; }
.footer h2 { margin: 0 0 17px; color: var(--white); font: 700 14px var(--display); text-transform: uppercase; letter-spacing: .08em; }
.footer a:not(.logo) { display: block; padding: 5px 0; font-size: 14px; }
.footer a:hover { color: var(--white); }
.status-pill { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.status-pill span:first-child { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 20px; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1); font-size: 13px;
}

@media (max-width: 1000px) {
  .main-nav { gap: 16px; }
  .fleet-grid { grid-template-columns: repeat(3,1fr); }
  .plans { grid-template-columns: repeat(2,1fr); }
  .benefit-grid, .use-cases { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 820px) {
  .utility { display: none; }
  .header__inner { min-height: 66px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 66px 0 auto; display: none; padding: 20px;
    flex-direction: column; align-items: stretch; gap: 0; background: #fff; box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .header__actions .button { display: none; }
  .hero__inner, .product-hero__inner, .regions, .checkout-layout { grid-template-columns: 1fr; }
  .hero-side { max-width: 580px; width: 100%; margin-inline: auto; }
  .hero__inner { min-height: auto; padding-block: 75px; }
  .flight-panel { max-width: 580px; }
  .product-hero { padding: 65px 0; }
  .order-summary { position: static; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .section { padding: 64px 0; }
  .hero h1, .product-hero h1 { font-size: 42px; }
  .flight-panel { padding: 20px; }
  .flight-stats { grid-template-columns: 1fr; }
  .plan-toolbar { flex-direction: column; align-items: stretch; }
  .plan-toolbar__actions { margin-left: 0; justify-content: space-between; }
  .compare-table tbody td::before {
    content: attr(data-label) ": "; font-weight: 700; color: var(--muted);
  }
  .compare-table { min-width: 0; }
  .compare-table thead { display: none; }
  .compare-table tr { display: block; margin-bottom: 16px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
  .compare-table th, .compare-table td { display: block; border: 0; }
  .fleet-grid, .plans, .benefit-grid, .steps, .use-cases, .support-grid { grid-template-columns: 1fr; }
  .plan-card.is-featured { transform: none; }
  .step:not(:last-child)::after { display: none; }
  .domain-box { padding: 24px 18px; }
  .domain-box__head { display: block; }
  .domain-form { grid-template-columns: 1fr; }
  .domain-result { grid-template-columns: 1fr auto; }
  .domain-result .button { grid-column: 1/-1; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .product-hero__facts, .region-list { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
