/* ============ Tokens ============ */
:root {
  --blue: #0b6cf5;
  --blue-dark: #0858cc;
  --blue-light: #e8f1ff;
  --navy: #0b1b3f;
  --text: #1c2437;
  --muted: #5b6477;
  --line: #e3e8f1;
  --tint: #f5f8fc;
  --green-bg: #dcf7e3;
  --green: #127a3a;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(15, 35, 80, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 108, 245, 0.16);
  --container: 1160px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; }

/* ============ Icons ============ */
.ico {
  width: 28px; height: 28px; flex-shrink: 0;
  fill: none; stroke: var(--blue); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.ico--fill { fill: var(--blue); stroke: none; }
.ico--dot { fill: var(--blue); }
.ico--sm { width: 18px; height: 18px; fill: currentColor; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 10px;
  border: 2px solid transparent; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s, color .2s;
  white-space: nowrap;
}
.btn__arrow {
  width: 1.25em; height: 1.25em; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn--primary { background: var(--blue); color: var(--white); box-shadow: 0 6px 18px rgba(11, 108, 245, .28); }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn--outline { background: var(--white); border-color: var(--blue); color: var(--navy); }
.btn--outline:hover { background: var(--blue-light); }
.btn--sm { padding: 9px 16px; font-size: 13px; border-radius: 8px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ============ Shared ============ */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.eyebrow--muted { color: var(--muted); }

.section { padding: 72px 0; }
.section--tint { background: var(--tint); }
.section--tint + .section--tint { padding-top: 24px; }
.section--blue { background: linear-gradient(180deg, #eaf2ff 0%, #f4f8ff 100%); }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; }
.section-head p:not(.eyebrow) { color: var(--muted); margin-top: 10px; font-size: 16px; }
.section-head strong { color: var(--navy); }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 2px 16px rgba(15, 35, 80, .06); }
.header__inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.logo img { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 36px; margin-left: auto; margin-right: auto; }
.nav a:not(.btn) { font-size: 14px; font-weight: 600; color: var(--text); transition: color .2s; }
.nav a:not(.btn):hover { color: var(--blue); }
.nav__cta { display: none; }

.nav-toggle {
  display: none; width: 42px; height: 42px; margin-left: auto;
  border: 0; background: transparent; cursor: pointer; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero { position: relative; overflow: hidden; background: var(--white); }
.hero__media {
  position: absolute; inset: 0 0 0 42%;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.85) 14%, rgba(255,255,255,0) 42%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 80px; }
.hero__content { max-width: 540px; }
.hero h1 { font-size: clamp(34px, 4.6vw, 54px); font-weight: 800; margin-bottom: 18px; }
.hero__lead { font-size: 18px; color: #3b4459; margin-bottom: 30px; max-width: 470px; }

.hero__benefits {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: flex; flex-wrap: wrap; gap: 28px;
}
.hero__benefits li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.35; }

/* ============ Before / After ============ */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.compare__card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px 12px 12px; box-shadow: var(--shadow); height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.tag {
  position: absolute; top: 10px; left: 12px;
  font-size: 13px; font-weight: 700; color: var(--white);
  padding: 4px 14px; border-radius: 999px;
}
.tag--dark { background: #3d4557; }
.tag--blue { background: var(--blue); }

.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.compare__grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 6px; }
.compare__arrow .ico { width: 30px; height: 30px; stroke-width: 3; }

.video { position: relative; border-radius: 10px; overflow: hidden; background: #000; aspect-ratio: 16 / 9; }
.video video { width: 100%; height: 100%; object-fit: cover; }
.video__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(10, 18, 36, .78); display: grid; place-items: center;
  box-shadow: 0 0 0 6px rgba(255,255,255,.25); transition: transform .2s, background .2s;
}
.video__play:hover { transform: translate(-50%, -50%) scale(1.06); background: var(--blue); }
.video__play svg { width: 34px; height: 34px; fill: #fff; margin-left: 4px; }
.video.is-playing .video__play { opacity: 0; pointer-events: none; }

/* ============ Features ============ */
.features { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 14px; text-align: center; box-shadow: 0 2px 10px rgba(15,35,80,.04);
  transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature .ico { width: 36px; height: 36px; margin: 0 auto 16px; }
.feature h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature h3 small { display: block; font-size: 15px; font-weight: 700; }
.feature p { font-size: 13px; color: var(--muted); }

/* ============ Steps ============ */
.steps {
  --gap: 36px;
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap);
}
.step { position: relative; display: flex; align-items: flex-start; gap: 14px; }
/* Arrow sits centered in the gap, level with the middle of the icon circle */
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 15px; right: calc(var(--gap) / -2 - 11px);
  width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b6cf5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15M13 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
}
.step__icon { position: relative; flex-shrink: 0; }
.step__icon .ico {
  display: block; width: 52px; height: 52px; padding: 12px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
}
.step__num {
  position: absolute; left: -6px; top: -6px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 12px;
  display: grid; place-items: center; box-shadow: 0 4px 10px rgba(11,108,245,.3);
}
.step h3 { font-size: 14px; font-weight: 700; margin: 6px 0 4px; }
.step p { font-size: 13px; color: var(--muted); }

/* ============ Pricing ============ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 32px 30px 26px; box-shadow: var(--shadow); text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan--featured { border: 2px solid var(--blue); box-shadow: var(--shadow-lg); }
.plan__badge {
  position: absolute; top: -1px; right: -1px;
  background: var(--blue); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 0 14px 0 12px;
}
.plan__head { display: flex; align-items: center; justify-content: center; gap: 12px; }
.plan__head h3 { font-size: 17px; font-weight: 700; }
.plan__price { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 10px 0 2px; }
.plan__price span { font-size: 44px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.plan__price--blue span { color: var(--blue); }
.save {
  font-style: normal; font-size: 12px; font-weight: 700;
  background: var(--green-bg); color: var(--green); padding: 4px 10px; border-radius: 999px;
}
.plan__qty { font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 22px; }
.plan__list { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; flex: 1; }
.plan__list li {
  position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 14px; color: #3b4459;
}
.plan__list li::before {
  content: ""; position: absolute; left: 2px; top: 5px;
  width: 12px; height: 7px; border-left: 2.4px solid var(--blue); border-bottom: 2.4px solid var(--blue);
  transform: rotate(-45deg);
}
.plan__note { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--navy); }
.plan__note--pill {
  align-self: center; background: var(--green-bg); color: var(--green);
  padding: 6px 16px; border-radius: 999px; text-transform: none;
}

/* ============ Order form ============ */
.order { display: grid; gap: 20px; }
.order__row { display: grid; gap: 20px; }
.order__row--3 { grid-template-columns: repeat(3, 1fr); }
.field { display: grid; gap: 8px; }
.field > span { font-size: 14px; font-weight: 600; color: var(--navy); }
.field em { font-style: normal; color: var(--muted); font-weight: 500; }
.field input,
.field select {
  font: inherit; font-size: 15px; color: var(--text); width: 100%;
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c2437' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.field input::placeholder { color: #a3abbb; }
.field input:focus,
.field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,108,245,.12); }
.field.is-invalid input,
.field.is-invalid select { border-color: #e04444; }
.field.is-hidden { display: none; }

/* Package dropdown */
.dropdown { position: relative; }
.dropdown__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font: inherit; font-size: 15px; color: var(--text); text-align: left; cursor: pointer;
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.dropdown__toggle:hover { border-color: #c9d6ea; }
.dropdown__toggle:focus-visible,
.dropdown.is-open .dropdown__toggle { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,108,245,.12); }
.dropdown__value { display: flex; align-items: baseline; gap: 10px; }
.dropdown__value strong { font-weight: 600; color: var(--navy); }
.dropdown__value span { font-weight: 700; color: var(--blue); }
.dropdown__chevron {
  width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: var(--navy);
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s;
}
.dropdown.is-open .dropdown__chevron { transform: rotate(180deg); stroke: var(--blue); }

.dropdown__menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 5;
  list-style: none; margin: 0; padding: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 35, 80, .16);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.dropdown__menu:focus { outline: none; }
.dropdown.is-open .dropdown__menu { opacity: 1; visibility: visible; transform: none; }
.dropdown__option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 44px 11px 14px; border-radius: 8px; cursor: pointer; position: relative;
  transition: background .15s;
}
.dropdown__option.is-active { background: var(--tint); }
.dropdown__option[aria-selected="true"] { background: var(--blue-light); }
.dropdown__option[aria-selected="true"]::after {
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 11px; height: 6px; margin-top: -5px;
  border-left: 2.5px solid var(--blue); border-bottom: 2.5px solid var(--blue); transform: rotate(-45deg);
}
.opt__main { display: grid; gap: 2px; }
.opt__main strong { font-weight: 700; color: var(--navy); font-size: 15px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.opt__main small { color: var(--muted); font-size: 13px; }
.opt__main .save { font-size: 11px; padding: 2px 8px; }
.opt__price { font-weight: 800; font-size: 18px; color: var(--navy); }
.dropdown__option[aria-selected="true"] .opt__price { color: var(--blue); }

.check { display: flex; align-items: center; gap: 12px; font-size: 14px; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box {
  width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0;
  border: 1.5px solid var(--line); background: #fff; position: relative; transition: .2s;
}
.check input:checked + .check__box { background: var(--blue-light); border-color: var(--blue); }
.check input:checked + .check__box::after {
  content: ""; position: absolute; left: 6px; top: 6px;
  width: 10px; height: 6px; border-left: 2.4px solid var(--blue); border-bottom: 2.4px solid var(--blue);
  transform: rotate(-45deg);
}
.check input:focus-visible + .check__box { box-shadow: 0 0 0 4px rgba(11,108,245,.2); }
.check.is-invalid .check__box { border-color: #e04444; }

.order__error { color: #c62828; font-size: 14px; font-weight: 600; }
.order__error.is-info { color: var(--navy); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.btn[disabled] { opacity: .75; cursor: wait; transform: none; }
.btn.is-loading .btn__arrow { display: none; }
.btn.is-loading::after {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.order__secure { text-align: center; font-size: 13px; color: var(--muted); margin-top: -8px; }

/* ============ Order modal ============ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center; padding: 24px;
  visibility: hidden; pointer-events: none;
}
.modal.is-open { visibility: visible; pointer-events: auto; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 18, 42, .45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .35s ease;
}
.modal__dialog {
  position: relative; width: 100%; max-width: 860px;
  max-height: calc(100vh - 48px); overflow-y: auto;
  background: var(--white); border-radius: 20px;
  padding: 40px 36px 30px; box-shadow: 0 30px 80px rgba(8, 18, 42, .35);
  opacity: 0; transform: translateY(28px) scale(.96);
  transition: opacity .35s ease, transform .45s cubic-bezier(.2, .9, .3, 1.15);
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal.is-open .modal__dialog { opacity: 1; transform: none; }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--tint); display: grid; place-items: center; transition: background .2s, transform .2s;
}
.modal__close:hover { background: var(--blue-light); transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; fill: none; stroke: var(--navy); stroke-width: 2.2; stroke-linecap: round; }
.modal__head { text-align: center; margin-bottom: 26px; }
.modal__head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; }
.modal__head p { color: var(--muted); margin-top: 6px; }
body.modal-open { overflow: hidden; }

/* ============ FAQ ============ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 0 22px; transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-weight: 700; color: var(--navy); display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; line-height: 1; color: var(--blue); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 18px; color: var(--muted); }

/* ============ Bottom CTA ============ */
.cta { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,27,63,.95) 30%, rgba(11,27,63,.6)); }
.cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 44px; padding-bottom: 44px; }
.cta h2 { color: #fff; font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.8); }

/* ============ Footer ============ */
.footer { background: #07122b; color: rgba(255,255,255,.65); font-size: 14px; }
.footer__inner { display: flex; justify-content: space-between; gap: 16px; padding-top: 22px; padding-bottom: 22px; flex-wrap: wrap; }
.footer a:hover { color: #fff; }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .modal__backdrop, .modal__dialog { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .features { grid-template-columns: repeat(3, 1fr); }
  /* 2 x 2: each step is a centered block, arrows centered between columns */
  .steps { --gap: 56px; grid-template-columns: repeat(2, 1fr); row-gap: 44px; max-width: 620px; margin: 0 auto; }
  .step { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .step:nth-child(2)::after { display: none; }
  .nav { gap: 24px; }
}

@media (max-width: 900px) {
  .header__cta { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
    box-shadow: 0 12px 24px rgba(15,35,80,.08);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .2s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { display: inline-flex; margin-top: 16px; }

  .hero__media { position: relative; inset: auto; height: 280px; order: -1; }
  .hero__media::before { background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 40%); }
  .hero { display: flex; flex-direction: column; }
  .hero__inner { padding-top: 8px; padding-bottom: 56px; }

  .compare { grid-template-columns: 1fr; }
  .compare__arrow { justify-self: center; transform: rotate(90deg); }

  .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .order__row--3 { grid-template-columns: 1fr; }

  .cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .features { grid-template-columns: repeat(2, 1fr); }
  /* Single column: arrows point down, centered between steps */
  .steps { --gap: 56px; grid-template-columns: 1fr; row-gap: var(--gap); max-width: 320px; }
  .step:nth-child(2)::after { display: block; }
  .step:not(:last-child)::after {
    top: auto; right: auto; left: 50%; bottom: calc(var(--gap) / -2 - 11px);
    transform: translateX(-50%) rotate(90deg);
  }
  .hero__benefits { gap: 18px; }
  .btn--lg { width: 100%; white-space: normal; }
  .modal { padding: 12px; }
  .modal__dialog { padding: 36px 18px 22px; max-height: calc(100vh - 24px); }
  .order .btn--lg { white-space: nowrap; font-size: 15px; padding-left: 14px; padding-right: 14px; }
  .logo img { height: 28px; }
}

/* ============ Status page (checkout success) ============ */
.status-page { background: var(--tint); min-height: 100vh; }
.status { display: grid; place-items: center; padding: 56px 16px 80px; }
.status__card {
  width: 100%; max-width: 560px; text-align: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 44px 36px; box-shadow: var(--shadow);
  animation: pop-in .5s cubic-bezier(.2, .9, .3, 1.15);
}
.status__icon {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--green-bg); display: grid; place-items: center;
}
.status__icon svg { width: 36px; height: 36px; fill: none; stroke: var(--green); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.status h1 { font-size: clamp(26px, 4vw, 34px); font-weight: 800; margin-bottom: 10px; }
.status__card > p { color: var(--muted); }
.status__next { list-style: none; counter-reset: s; padding: 0; margin: 30px 0 32px; text-align: left; display: grid; gap: 16px; }
.status__next li { counter-increment: s; position: relative; padding-left: 44px; display: grid; gap: 2px; }
.status__next li::before {
  content: counter(s); position: absolute; left: 0; top: 0;
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff;
  font-weight: 700; font-size: 13px; display: grid; place-items: center;
}
.status__next strong { color: var(--navy); }
.status__next span { color: var(--muted); font-size: 14px; }
@keyframes pop-in { from { opacity: 0; transform: translateY(20px) scale(.97); } }
@media (max-width: 600px) { .status__card { padding: 36px 20px; } }
