:root {
  --navy-950: #082f50;
  --navy-900: #0b416f;
  --navy-800: #0b4f86;
  --navy-700: #17649e;
  --navy-100: #e9f2f8;
  --red-700: #ba1f2e;
  --red-600: #d32031;
  --red-100: #fff0f1;
  --yellow-500: #f5c242;
  --yellow-100: #fff8dc;
  --ink-900: #132638;
  --ink-700: #3b5268;
  --ink-600: #536a7e;
  --line: #d9e2ea;
  --line-strong: #b8c8d5;
  --surface: #ffffff;
  --surface-soft: #f5f8fa;
  --surface-blue: #f0f6fa;
  --success: #18734d;
  --success-bg: #ecf9f3;
  --warning: #8f3b12;
  --warning-bg: #fff7ed;
  --shadow-sm: 0 3px 12px rgba(8, 47, 80, 0.08);
  --shadow-md: 0 12px 34px rgba(8, 47, 80, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --page: 1180px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink-900);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

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

a {
  color: var(--navy-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red-700);
}

button:focus-visible,
input:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(245, 194, 66, 0.95);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.16;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.16rem;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--navy-950);
  color: white;
  transform: translateY(-160%);
}

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

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

[hidden] {
  display: none !important;
}

.trust-bar {
  background: var(--navy-950);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 650;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 42px;
}

.trust-bar span span {
  margin-right: 6px;
  color: var(--yellow-500);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 28px;
}

.brand-link {
  flex: 0 1 360px;
}

.brand-logo {
  width: min(360px, 100%);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.secure-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #bdd1df;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-link {
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 72px;
  background:
    radial-gradient(circle at 88% 8%, rgba(245, 194, 66, 0.25), transparent 18rem),
    radial-gradient(circle at 6% 90%, rgba(23, 100, 158, 0.1), transparent 24rem),
    linear-gradient(145deg, #f9fcfe 0%, #eef6fb 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 55px solid rgba(11, 79, 134, 0.04);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--red-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--ink-700);
  font-size: 1.13rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero__facts > div {
  display: flex;
  flex: 1 1 170px;
  flex-direction: column;
  min-width: 0;
  padding: 15px 17px;
  border: 1px solid rgba(11, 79, 134, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.hero__facts strong {
  color: var(--navy-950);
  font-size: 1rem;
}

.hero__facts span {
  color: var(--ink-600);
  font-size: 0.83rem;
}

.special-order-banner {
  display: flex;
  align-items: center;
  max-width: 720px;
  gap: 13px;
  padding: 14px 17px;
  border-left: 4px solid var(--red-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--red-100);
}

.special-order-banner p {
  margin: 0;
  color: #6c1c24;
}

.special-order-banner__icon {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  color: white;
  font-weight: 900;
}

.hero__security-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 24px 60px rgba(8, 47, 80, 0.28);
  color: #fff;
}

.hero__security-card::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  content: "";
  pointer-events: none;
}

.hero__security-card h2 {
  position: relative;
  color: white;
  font-size: 1.45rem;
}

.security-shield {
  position: relative;
  width: 68px;
  height: 76px;
  margin-bottom: 18px;
}

.security-shield svg path:first-child {
  fill: rgba(245, 194, 66, 0.15);
  stroke: var(--yellow-500);
  stroke-width: 3;
}

.security-shield svg path:last-child {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #eaf3f8;
  font-size: 0.94rem;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--navy-950);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.status-section {
  padding-top: 28px;
}

.status-panel {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid;
  border-radius: var(--radius-md);
}

.status-panel h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.status-panel p:last-child {
  margin-bottom: 0;
}

.status-panel--success {
  border-color: #9ed4bd;
  background: var(--success-bg);
}

.status-panel--notice {
  border-color: #edc789;
  background: var(--yellow-100);
}

.status-panel__icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-weight: 900;
}

.success-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #b8decc;
}

.success-details div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.success-details span {
  color: var(--ink-600);
}

.order-section {
  padding: 62px 0 88px;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 355px;
  align-items: start;
  gap: 40px;
}

.order-form {
  min-width: 0;
}

.form-step {
  padding: clamp(24px, 4vw, 38px);
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.step-heading {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 28px;
}

.step-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.step-heading p {
  margin-bottom: 0;
  color: var(--ink-600);
}

.step-number {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  color: white;
  font-weight: 800;
}

.option-grid {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  border: 0;
}

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

.option-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  cursor: pointer;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.option-card:hover {
  border-color: #9ab8cb;
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.option-card:has(input:checked) {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(23, 100, 158, 0.12);
}

.option-card:has(input:focus-visible) {
  outline: 3px solid rgba(245, 194, 66, 0.95);
  outline-offset: 3px;
}

.option-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.option-card__check {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: white;
}

.option-card:has(input:checked) .option-card__check {
  border: 6px solid var(--navy-700);
}

.option-card__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 22px;
}

.option-card__title {
  padding-right: 26px;
  color: var(--navy-950);
  font-size: 1.08rem;
  font-weight: 800;
}

.option-card__price {
  margin: 6px 0 10px;
  color: var(--red-700);
  font-size: 0.94rem;
  font-weight: 800;
}

.option-card__text {
  color: var(--ink-600);
  font-size: 0.9rem;
}

.option-card--visual {
  flex-direction: column;
  overflow: hidden;
}

.key-illustration {
  display: grid;
  min-height: 128px;
  place-items: center;
  padding: 22px 44px 10px;
  background: linear-gradient(180deg, #f5f9fc, #fff);
}

.key-illustration svg {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.key-illustration circle,
.key-illustration path {
  fill: none;
  stroke: var(--navy-800);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.illustration-note {
  margin: 10px 0 0;
  color: var(--ink-600);
  font-size: 0.8rem;
}

.option-card--compact {
  min-height: 140px;
}

.service-card {
  min-height: 320px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 7px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-700);
  font-size: 0.84rem;
}

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

.service-card--premium {
  border-color: #e9c966;
  background: linear-gradient(180deg, #fffdf5, #fff);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.small-print {
  margin-top: auto;
  padding-top: 14px;
  color: var(--ink-600);
  font-size: 0.72rem;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  font-weight: 800;
}

.field-group input[type="text"] {
  width: 100%;
  min-height: 58px;
  padding: 13px 16px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink-900);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

.field-group input[type="text"]:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(23, 100, 158, 0.12);
}

.field-group input[aria-invalid="true"] {
  border-color: var(--red-600);
}

.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  color: var(--ink-600);
  font-size: 0.82rem;
}

.field-meta p {
  margin-bottom: 0;
}

.field-meta a {
  flex: 0 0 auto;
  font-weight: 700;
}

.warning-box,
.exclusion-box,
.information-box {
  margin-top: 18px;
  border-radius: var(--radius-sm);
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid #efb1b7;
  background: var(--red-100);
  color: #6e222a;
}

.warning-box > span {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
}

.warning-box p {
  margin: 0;
}

.exclusion-box {
  padding: 13px 16px;
  border: 1px solid #e8c879;
  background: var(--yellow-100);
  color: #5d4910;
}

.information-box {
  padding: 20px;
  border: 1px solid #a8c8dc;
  background: var(--surface-blue);
}

.information-box h3 {
  margin-bottom: 10px;
}

.information-box p:last-child {
  margin-bottom: 0;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 50px 72px 50px;
  align-items: stretch;
  overflow: hidden;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
}

.quantity-control button {
  border: 0;
  background: var(--surface-soft);
  color: var(--navy-950);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
}

.quantity-control button:hover {
  background: var(--navy-100);
}

.quantity-control input {
  width: 72px;
  min-height: 50px;
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: center;
  appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.confirmation-list {
  display: grid;
  gap: 8px;
}

.check-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.check-row:hover {
  border-color: #a8c0d0;
  background: var(--surface-soft);
}

.check-row:has(input:checked) {
  border-color: #96b9d0;
  background: var(--surface-blue);
}

.check-row input {
  width: 21px;
  height: 21px;
  margin: 1px 0 0;
  accent-color: var(--navy-700);
}

.field-error {
  min-height: 0;
  margin: 7px 0 0;
  color: var(--red-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.field-error:empty {
  display: none;
}

.error-summary {
  padding: 20px 22px;
  margin-bottom: 24px;
  border: 2px solid var(--red-600);
  border-radius: var(--radius-md);
  background: var(--red-100);
}

.error-summary h2 {
  margin-bottom: 8px;
  color: #6d1d25;
  font-size: 1.2rem;
}

.error-summary ul {
  margin: 0;
  padding-left: 20px;
}

.turnstile-wrap {
  margin-top: 20px;
}

.checkout-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--red-600), #ad1726);
  box-shadow: 0 8px 20px rgba(186, 31, 46, 0.22);
  color: white;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.checkout-button:hover:not(:disabled) {
  box-shadow: 0 12px 26px rgba(186, 31, 46, 0.3);
  transform: translateY(-1px);
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.checkout-button.is-loading .checkout-button__spinner {
  display: block;
}

.checkout-button__spinner {
  display: none;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.checkout-note {
  margin: 10px 0 0;
  color: var(--ink-600);
  font-size: 0.8rem;
  text-align: center;
}

.order-summary {
  position: sticky;
  top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-md);
}

.summary-toggle {
  display: none;
}

.summary-content {
  padding: 26px;
}

.summary-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.summary-heading h2 {
  margin: 0;
  font-size: 1.42rem;
}

.summary-lock {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-blue);
}

.summary-list {
  display: grid;
  gap: 0;
  margin: 20px 0;
}

.summary-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, 1.1fr);
  gap: 12px;
  padding: 8px 0;
}

.summary-list dt {
  color: var(--ink-600);
}

.summary-list dd {
  margin: 0;
  color: var(--ink-900);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: right;
}

.summary-prices {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.summary-prices > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.summary-prices span {
  color: var(--ink-600);
}

.summary-total {
  align-items: baseline;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 2px solid var(--navy-950);
}

.summary-total span {
  color: var(--navy-950);
  font-weight: 800;
}

.summary-total strong {
  color: var(--navy-950);
  font-size: 1.55rem;
  transition: transform 150ms ease;
}

.summary-total strong.is-updated {
  transform: scale(1.06);
}

.summary-timescale {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-top: 20px;
  border-radius: var(--radius-sm);
  background: var(--yellow-100);
  color: #5d4910;
}

.summary-timescale > span {
  font-size: 1.45rem;
}

.summary-timescale p {
  margin: 0;
  font-size: 0.84rem;
}

.summary-international {
  margin: 15px 0 0;
  color: var(--ink-600);
  font-size: 0.76rem;
  text-align: center;
}

.benefits-section {
  padding: 88px 0;
  background: var(--navy-950);
}

.benefits-section .section-heading h2,
.benefits-section .section-heading p:not(.eyebrow) {
  color: white;
}

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

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--ink-600);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.benefit-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.benefit-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-size: 1.2rem;
  font-weight: 900;
}

.benefit-card h3 {
  margin-bottom: 8px;
  color: white;
}

.benefit-card p {
  margin: 0;
  color: #cbdbe6;
  font-size: 0.9rem;
}

.faq-section {
  padding: 92px 0;
  background: var(--surface-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: 70px;
}

.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-top: 8px;
  border: 2px solid var(--navy-800);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
}

.secondary-button:hover {
  background: var(--navy-800);
  color: white;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.faq-list summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--navy-800);
  content: "+";
  font-size: 1.45rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
  background: var(--surface-blue);
}

.faq-list details p {
  padding: 18px 20px;
  margin: 0;
  color: var(--ink-700);
}

.site-footer {
  padding: 58px 0 18px;
  background: #061f35;
  color: #c9d8e3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.85fr;
  gap: 60px;
}

.footer-brand img {
  width: 300px;
  max-width: 100%;
  height: auto;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: white;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 18px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: white;
  font-size: 1rem;
}

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

.site-footer a {
  color: #d9e6ee;
}

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

.footer-security p {
  font-size: 0.9rem;
}

.stripe-badge {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1040px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 40px;
  }

  .order-layout {
    grid-template-columns: minmax(0, 1fr) 315px;
    gap: 26px;
  }

  .option-grid--three {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card .option-card__content {
    padding-right: 42px;
  }

  .service-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
  }
}

@media (max-width: 820px) {
  .page-width {
    width: min(calc(100% - 30px), var(--page));
  }

  .trust-bar__inner {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
    scrollbar-width: none;
  }

  .trust-bar__inner::-webkit-scrollbar {
    display: none;
  }

  .trust-bar__inner > span {
    flex: 0 0 auto;
  }

  .site-header__inner {
    min-height: 92px;
  }

  .brand-link {
    flex-basis: 280px;
  }

  .secure-label {
    display: none;
  }

  .hero {
    padding: 54px 0;
  }

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

  .hero__security-card {
    max-width: 620px;
  }

  .order-layout {
    display: flex;
    flex-direction: column;
  }

  .order-form {
    width: 100%;
    order: 2;
  }

  .order-summary {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    order: 1;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .summary-toggle {
    display: grid;
    width: 100%;
    min-height: 62px;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 0;
    background: var(--navy-950);
    color: white;
    cursor: pointer;
    text-align: left;
  }

  .summary-toggle strong {
    font-size: 1.1rem;
  }

  .summary-toggle__chevron {
    font-size: 1.3rem;
    transition: transform 160ms ease;
  }

  .summary-toggle[aria-expanded="true"] .summary-toggle__chevron {
    transform: rotate(180deg);
  }

  .summary-content {
    display: none;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .summary-toggle[aria-expanded="true"] + .summary-content {
    display: block;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

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

@media (max-width: 620px) {
  .site-header__inner {
    align-items: center;
  }

  .brand-link {
    flex: 1 1 auto;
    max-width: 245px;
  }

  .header-link {
    font-size: 0.8rem;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__facts > div {
    flex-basis: auto;
  }

  .option-grid--two {
    grid-template-columns: 1fr;
  }

  .service-card ul {
    grid-template-columns: 1fr;
  }

  .field-meta {
    flex-direction: column;
    gap: 8px;
  }

  .success-details {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 420px) {
  .page-width {
    width: min(calc(100% - 22px), var(--page));
  }

  .site-header__inner {
    min-height: 82px;
    gap: 10px;
  }

  .brand-link {
    max-width: 205px;
  }

  .header-link {
    max-width: 75px;
    text-align: right;
  }

  .hero {
    padding: 42px 0;
  }

  .hero__security-card,
  .form-step {
    padding: 23px 18px;
  }

  .step-heading {
    gap: 12px;
  }

  .step-number {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .key-illustration {
    min-height: 105px;
    padding-inline: 36px;
  }

  .summary-content {
    padding: 20px 17px;
  }

  .summary-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .summary-list dd {
    text-align: left;
  }

  .check-row {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
