

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--fn-font-body);
  color: var(--fn-ink);
  background: var(--fn-soft);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.fn-header {
  
  background: #21314d;

  border-bottom: 4px solid var(--fn-green);
}
.fn-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}
.fn-header__logo {
  height: 30px;
  width: auto;
  display: block;
}

.wizard {
  max-width: var(--fn-maxw);
  margin: 0 auto;
  padding: var(--fn-gap-lg) var(--fn-gap) 80px;
}
.wizard__step {
  background: var(--fn-surface);
  border-radius: var(--fn-radius);
  box-shadow: var(--fn-shadow);
  padding: var(--fn-gap-lg);
}
.wizard__step > h1 {
  font-family: var(--fn-font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--fn-navy);
  margin: 0 0 var(--fn-gap-lg);
  letter-spacing: -.01em;
}
.wizard__step p { color: var(--fn-slate); }

.stepper {
  list-style: none;
  display: flex;
  align-items: flex-start;
  margin: 26px auto 6px;
  padding: 0 8px;
  max-width: 660px;
}
.stepper__step { flex: none; }

.stepper__hit {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  text-decoration: none; color: inherit; background: none; border: 0; padding: 0;
}
a.stepper__hit { cursor: pointer; }
a.stepper__hit:hover .stepper__label { text-decoration: underline; }
a.stepper__hit:hover .stepper__dot { border-color: var(--fn-navy); }
a.stepper__hit:focus-visible {
  outline: 3px solid var(--fn-navy); outline-offset: 3px; border-radius: 10px;
}
.stepper__hit[aria-disabled="true"] { cursor: default; }
.stepper__dot {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 2.5px solid var(--fn-green); color: var(--fn-green-d);
}
.stepper__dot svg { width: 21px; height: 21px; }
.stepper__step.is-done .stepper__dot { background: var(--fn-green); border-color: var(--fn-green); color: #fff; }
.stepper__step.is-current .stepper__dot { border-color: var(--fn-navy); color: var(--fn-navy); box-shadow: 0 0 0 4px rgba(9, 32, 67, .12); }
.stepper__step.is-todo .stepper__dot { border-color: #ccd3dd; color: #b9c2d0; }
.stepper__label { font-size: .74rem; font-weight: 700; color: var(--fn-slate, #5A6982); white-space: nowrap; }
.stepper__step.is-current .stepper__label { color: var(--fn-navy); }
.stepper__conn { flex: 1; height: 3px; border-radius: 2px; background: #dfe5ee; margin-top: 21px; }
.stepper__conn.is-done { background: var(--fn-green); }
@media (max-width: 560px) {
  .stepper { padding: 0 2px; }
  .stepper__dot { width: 36px; height: 36px; }
  .stepper__dot svg { width: 17px; height: 17px; }
  
  .stepper__step:not(.is-current) .stepper__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .stepper__conn { margin-top: 17px; }
}

.wizard__progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--fn-gap-lg);
}
.wizard__progress-dot {
  flex: 1 1 auto;
  height: 6px;
  border-radius: 999px;
  background: #cfd6e4;
}
.wizard__progress-dot.is-done { background: var(--fn-green); }
.wizard__progress-dot.is-current { background: var(--fn-green-2); }
.wizard__progress-label {
  flex: 0 0 auto;
  font-size: .8125rem;
  color: var(--fn-slate);
  font-weight: 700;
  margin-left: 4px;
}

.field { margin-bottom: var(--fn-gap); }
.field > label {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--fn-navy);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="date"],
.field input[type="tel"],
.field select {
  width: 100%;
  min-height: var(--fn-tap);
  padding: 0 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--fn-ink);
  background: var(--fn-surface);
  border: 1px solid #c7cede;
  border-radius: var(--fn-radius-input);
  appearance: none;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--fn-green-d);
  box-shadow: 0 0 0 3px rgba(132, 188, 52, .25);
}
.field__hint { font-size: .8125rem; color: var(--fn-slate); margin-top: 6px; }
.field__error { display: none; font-size: .8125rem; color: var(--fn-red); margin-top: 6px; font-weight: 700; }

.field.is-invalid input,
.field.is-invalid select { border-color: var(--fn-red); }
.field.is-invalid .field__error { display: block; }

.field--check { display: flex; align-items: flex-start; gap: 12px; }
.field--check input[type="checkbox"] { flex: none; width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--fn-green-d); }
.field--check label { font-weight: 400; font-size: .9375rem; color: var(--fn-slate); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--fn-tap);
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--fn-font-body);
  border: none;
  border-radius: var(--fn-radius-btn);
  cursor: pointer;
  text-decoration: none;
}
.btn--primary { background: var(--fn-navy); color: #fff; width: 100%; min-height: 54px; }
.btn--primary:hover { background: var(--fn-navy-2); }
.btn--ghost { background: transparent; color: var(--fn-navy); border: 1px solid #c7cede; }
.wizard__actions { margin-top: var(--fn-gap-lg); }

.tariff-list { display: grid; gap: 12px; }
.tariff-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-height: var(--fn-tap);
  padding: 16px 18px;
  text-align: left;
  background: var(--fn-surface);
  border: 1px solid #d7dce8;
  border-radius: var(--fn-radius);
  cursor: pointer;
  font-family: inherit;
}
.tariff-card:hover { border-color: var(--fn-green); }
.tariff-card.is-selected { border-color: var(--fn-green-d); background: var(--fn-green-light); box-shadow: 0 0 0 2px rgba(132, 188, 52, .35); }

.tariff-card--recommended { border: 2px solid var(--fn-green-d); }
.tariff-card__badge {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--fn-navy);
  background: var(--fn-green);
  padding: 4px 10px;
  border-radius: var(--fn-radius-pill);
}
.tariff-card__row { display: flex; align-items: center; gap: 12px; }
.tariff-card__main { flex: 1 1 auto; min-width: 0; }
.tariff-card__name { display: block; font-family: var(--fn-font-display); font-weight: 800; font-size: 1.1rem; color: var(--fn-navy); }
.tariff-card__data { display: block; font-size: .8125rem; color: var(--fn-slate); font-weight: 600; margin-top: 2px; }
.tariff-card__price { flex: 0 0 auto; text-align: right; white-space: nowrap; }
.tariff-card__price .price { display: block; font-size: 1.15rem; }
.tariff-card__per { display: block; font-size: .72rem; color: var(--fn-slate); font-weight: 600; }
.tariff-card__chevron { flex: 0 0 auto; font-size: 1.6rem; line-height: 1; color: var(--fn-green-d); font-weight: 700; }

.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--fn-line);
}

.summary-row__label { flex: 0 0 auto; white-space: nowrap;
  color: var(--fn-slate); font-size: .875rem; }
.summary-row__value { flex: 1 1 auto; min-width: 0; text-align: right;
  color: var(--fn-ink); font-weight: 600; overflow-wrap: anywhere; }

@media (max-width: 359px) {
  .summary-row { display: block; padding: 10px 0; }
  .summary-row__value { display: block; text-align: left; margin-top: 2px; }
}
.wizard__step h2 {
  font-family: var(--fn-font-display);
  font-size: 1.15rem; font-weight: 800; color: var(--fn-navy);
  margin: var(--fn-gap-lg) 0 4px;
}

.summary-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.summary-heading h2 { flex: 1 1 auto; }
.summary-heading__edit {
  flex: none;
  font-size: .85rem; font-weight: 700; color: var(--fn-navy);
  text-decoration: underline; text-underline-offset: 3px;
  
  min-height: 24px; display: inline-flex; align-items: center; padding: 0 2px;
}
.summary-heading__edit:hover { color: var(--fn-green-d); }
.summary-heading__edit:focus-visible { outline: 3px solid var(--fn-navy); outline-offset: 2px; border-radius: 4px; }

.price { font-family: var(--fn-font-display); font-weight: 800; color: var(--fn-navy); font-variant-numeric: tabular-nums; }
.iban { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-variant-numeric: tabular-nums; letter-spacing: .02em; }

.confirm-success__badge,
.wizard__step p.confirm-success__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fn-green-text);
  font-weight: 800;
  font-family: var(--fn-font-display);
  margin-bottom: var(--fn-gap);
}
.confirm-success__ref { font-family: ui-monospace, Menlo, Consolas, monospace; }

.confirm--play .confirm-rise { animation: confirm-rise .55s cubic-bezier(.2, .7, .2, 1) both; }
.confirm--play .confirm-rise--a { animation-delay: .95s; }
.confirm--play .confirm-rise--b { animation-delay: 1.1s; }
@keyframes confirm-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.confirm-sim { perspective: 900px; height: 196px; display: grid; place-items: center; position: relative; margin: 6px 0 10px; }
.confirm-sim__card {
  position: relative; width: 224px; height: 142px; border-radius: 14px; color: #fff; padding: 16px 18px;
  background: linear-gradient(135deg, #123468 0%, var(--fn-navy) 55%, #061632 100%);
  
  clip-path: polygon(0 0, 80% 0, 100% 15%, 100% 100%, 0 100%);
  transform-style: preserve-3d; overflow: hidden; display: block;
}
.confirm--play .confirm-sim__card { animation: confirm-sim-pop 1.5s cubic-bezier(.2, .7, .2, 1) .2s both; }
@keyframes confirm-sim-pop {
  0%   { opacity: 0; transform: translateY(80px) rotateX(38deg) rotateY(-42deg) scale(.7); }
  35%  { opacity: 1; transform: translateY(-16px) rotateX(-7deg) rotateY(15deg) scale(1.06); }
  60%  { transform: translateY(5px) rotateX(3deg) rotateY(-5deg) scale(.99); }
  80%  { transform: translateY(-2px) rotateY(2deg) scale(1.01); }
  100% { opacity: 1; transform: none; }
}
.confirm-sim__chip {
  display: block; width: 44px; height: 34px; border-radius: 7px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--fn-green-2), var(--fn-green) 60%, #6ea329);
}
.confirm-sim__chip::before, .confirm-sim__chip::after { content: ""; position: absolute; background: rgba(9, 32, 67, .35); }
.confirm-sim__chip::before { left: 0; right: 0; top: 11px; height: 1.5px; box-shadow: 0 11px 0 rgba(9, 32, 67, .35); }
.confirm-sim__chip::after { top: 0; bottom: 0; left: 14px; width: 1.5px; box-shadow: 15px 0 0 rgba(9, 32, 67, .35); }
.confirm-sim__brand { position: absolute; right: 18px; top: 26px; font-family: var(--fn-font-display); font-weight: 800; font-size: 1rem; }
.confirm-sim__tariff {
  position: absolute; left: 18px; right: 18px; bottom: 34px; font-family: var(--fn-font-display); font-weight: 700;
  font-size: .82rem; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.confirm-sim__name {
  position: absolute; left: 18px; right: 18px; bottom: 14px; font-size: .7rem; letter-spacing: .14em; color: #bcd9ff;
  text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.confirm-sim__shine {
  position: absolute; top: -40%; left: 0; width: 55%; height: 180%; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .38) 50%, transparent 65%);
  transform: translateX(-160%) rotate(8deg);
}
.confirm--play .confirm-sim__shine { animation: confirm-sim-shine .9s 1.55s ease-in-out both; }
@keyframes confirm-sim-shine { to { transform: translateX(300%) rotate(8deg); } }
.confirm-sim__shadow {
  position: absolute; bottom: 12px; width: 190px; height: 18px; border-radius: 50%;
  background: rgba(9, 32, 67, .28); filter: blur(10px); opacity: .6;
}
.confirm--play .confirm-sim__shadow { animation: confirm-sim-shadow 1.5s .2s both; }
@keyframes confirm-sim-shadow {
  0%   { opacity: 0; transform: scale(.5); }
  35%  { opacity: .35; transform: scale(1.1) translateY(6px); }
  100% { opacity: .6; transform: scale(1); }
}

.confirm-volume { position: relative; height: 150px; display: grid; place-items: center; margin: 2px 0 6px; }
.confirm-volume__glow {
  position: absolute; width: 200px; height: 200px; border-radius: 50%; opacity: .55;
  background: radial-gradient(circle, rgba(132, 188, 52, .35), rgba(132, 188, 52, 0) 65%);
}
.confirm--play .confirm-volume__glow { animation: confirm-glow .9s ease-out both; }
@keyframes confirm-glow {
  0%   { opacity: 0; transform: scale(.6); }
  40%  { opacity: 1; transform: scale(1.15); }
  100% { opacity: .55; transform: scale(1); }
}
.confirm-volume__num {
  position: absolute; display: flex; align-items: baseline; gap: 8px;
  font-family: var(--fn-font-display); font-weight: 800; font-size: 4.4rem; line-height: 1;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums; color: var(--fn-navy);
  transition: transform .25s, filter .25s, opacity .25s;
}
.confirm-volume__unit { font-size: 1.4rem; color: var(--fn-slate); letter-spacing: 0; }
.confirm-volume__inf { position: absolute; width: 190px; height: 95px; display: none; }
.confirm-volume__inf path {
  fill: none; stroke: var(--fn-navy); stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 400; stroke-dashoffset: 0;
}

.confirm-volume--unlimited .confirm-volume__num { display: none; }
.confirm-volume--unlimited .confirm-volume__inf { display: block; }
.confirm-volume--unlimited.confirm-volume--counting .confirm-volume__num { display: flex; }
.confirm-volume--unlimited.confirm-volume--counting .confirm-volume__inf { display: none; }
.confirm-volume--fast .confirm-volume__num { filter: blur(1.2px); transform: scale(1.06); }
.confirm-volume--infinite .confirm-volume__inf path { animation: confirm-inf-draw .85s cubic-bezier(.4, 0, .2, 1) both; }
@keyframes confirm-inf-draw { from { stroke-dashoffset: 400; } to { stroke-dashoffset: 0; } }
.confirm-volume--landed .confirm-volume__num { animation: confirm-land .5s cubic-bezier(.3, 1.6, .5, 1); }
@keyframes confirm-land {
  0%   { transform: scale(.92); }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@media (max-width: 359px) {
  .confirm-volume__num { font-size: 3.4rem; }
  .confirm-sim__card { width: 196px; height: 124px; }
}

@media (prefers-reduced-motion: reduce) {
  .confirm--play .confirm-rise,
  .confirm--play .confirm-sim__card,
  .confirm--play .confirm-sim__shine,
  .confirm--play .confirm-sim__shadow,
  .confirm--play .confirm-volume__glow,
  .confirm-volume--infinite .confirm-volume__inf path,
  .confirm-volume--landed .confirm-volume__num { animation: none; }
}

.checks { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 28px; color: var(--fn-ink); }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--fn-green-d); font-weight: 900;
}

.wizard__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--fn-navy);
  text-decoration: none;
  min-height: 44px;
}
.wizard__back:hover { color: var(--fn-green-d); }

@media (max-width: 640px) {
  .wizard__step:has(.wizard__actions--sticky) { padding-bottom: 88px; }
  .wizard__actions--sticky {
    position: sticky;
    bottom: 0;
    margin: var(--fn-gap-lg) -24px -24px;
    padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--fn-line);
    box-shadow: 0 -4px 16px rgba(9, 32, 67, .08);
    border-bottom-left-radius: var(--fn-radius);
    border-bottom-right-radius: var(--fn-radius);
  }
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--fn-navy);
  color: #fff;
  font-weight: 700;
  border-radius: var(--fn-radius-sm);
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid var(--fn-green-2);
  outline-offset: 2px;
}

.wizard-alert { margin-top: 4px; }

.form-errors {
  margin-bottom: var(--fn-gap);
  padding: 12px 14px;
  border-radius: var(--fn-radius-sm);
  border: 1px solid var(--fn-red);
  border-left: 4px solid var(--fn-red);
  background: #fdecef;
  color: var(--fn-red-text);
  font-weight: 700;
  font-size: .9375rem;
}

.form-errors__lead { margin: 0 0 6px; font-weight: 700; }
.form-errors__list { margin: 0; padding: 0; list-style: none; display: flex;
  flex-wrap: wrap; gap: 4px 18px; }
.form-errors__list a { display: inline-flex; align-items: center; min-height: 32px;
  color: var(--fn-navy); font-weight: 700; text-decoration: underline;
  text-underline-offset: 3px; }
.form-errors__list a:focus-visible { outline: 3px solid var(--fn-green-d); outline-offset: 2px; }

.radio-row { display: flex; gap: 12px; }
.radio-option {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 22px; border: 1.5px solid var(--fn-border, #ccd3dd);
  border-radius: var(--fn-radius-sm, 8px); cursor: pointer; font-weight: 600;
}
.radio-option:has(input:checked) {
  border-color: var(--fn-navy, #092043);
  box-shadow: 0 0 0 1.5px var(--fn-navy, #092043) inset;
}
.radio-option input { accent-color: var(--fn-navy, #092043); width: 20px; height: 20px; }

.field label.radio-option { display: flex; align-items: center; }
.radio-option input[type="checkbox"] { flex: none; margin: 0; }

.dob-row { display: flex; gap: 10px; max-width: 260px; }
.dob-row input { flex: 1 1 0; text-align: center; min-width: 0; }
.dob-row input:last-child { flex: 1.4 1 0; }

.field input.dob-native { max-width: 240px; }

.disclosure { margin: 4px 0 20px; scroll-margin-top: 16px; }
.disclosure__toggle {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 4px 2px;
  color: var(--fn-navy); font-weight: 700; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
  list-style: none;
}
.disclosure__toggle::-webkit-details-marker { display: none; }
.disclosure__toggle::before {
  content: ""; flex: none; width: 10px; height: 10px;
  border-right: 2.2px solid currentColor; border-bottom: 2.2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .15s ease;
}
.disclosure[open] > .disclosure__toggle::before {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.disclosure__toggle:focus-visible { outline: 3px solid var(--fn-green-d); outline-offset: 2px; }
.disclosure__body { padding-top: 8px; }
@media (prefers-reduced-motion: reduce) {
  .disclosure__toggle::before { transition: none; }
}

.form-section-title { font-family: var(--fn-font-display); font-weight: 800; font-size: 1.15rem; color: var(--fn-navy); margin: 28px 0 4px; }

.cart-tariff { display: flex; justify-content: space-between; align-items: baseline;
  border: 1.5px solid var(--fn-navy); border-radius: var(--fn-radius-sm, 8px);
  padding: 14px 18px; margin-bottom: 20px; }
.cart-tariff__name { font-family: var(--fn-font-display); font-weight: 800; color: var(--fn-navy); }
.cart-tariff__price { font-weight: 700; }
.radio-row--stacked { flex-direction: column; }

.sim-chosen { margin: 0; padding: 12px 14px; border-radius: var(--fn-radius-sm, 8px);
  background: #eef5e4; box-shadow: 0 0 0 1.5px var(--fn-green-d) inset; }
.sim-chosen small { display: inline-block; margin-top: 2px; color: var(--fn-slate, #5A6982); }
.sim-chosen [hidden], .sim-alt__offer[hidden] { display: none; }

.sim-alt { margin: 4px 0 20px; }
.sim-alt__toggle { display: block; min-height: 44px; padding: 10px 2px;
  color: var(--fn-slate, #5A6982); font-size: .9rem; cursor: pointer; list-style: none; }
.sim-alt__toggle::-webkit-details-marker { display: none; }
.sim-alt__offer > span, .sim-alt__close { color: var(--fn-navy); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px; }
.sim-alt:not([open]) .sim-alt__close { display: none; }
.sim-alt[open] .sim-alt__offer { display: none; }
.sim-alt__toggle:focus-visible { outline: 3px solid var(--fn-green-d); outline-offset: 2px; }
.sim-alt__body { padding-top: 6px; }
.field:has(.sim-alt[open]) .sim-chosen { display: none; }

.radio-option--rich { align-items: flex-start; }
.radio-option--rich input { margin-top: 3px; }
.radio-option--rich small { color: var(--fn-slate, #5A6982); font-weight: 400; }

.dev-fill { position: fixed; right: 16px; bottom: 16px; z-index: 50;
  background: #fff; border: 1.5px dashed var(--fn-navy); border-radius: 999px;
  padding: 10px 16px; font-weight: 700; cursor: pointer; box-shadow: 0 4px 14px rgba(9,32,67,.18); }
.dev-fill:hover { background: var(--fn-navy); color: #fff; }

.wizard-cols { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; align-items: start; }
@media (min-width: 1060px) {

  .wizard:has(.order-panel) { max-width: 940px; }

  .wizard-cols:has(.order-panel) { grid-template-columns: minmax(0, 1fr) 320px; }
  .wizard-cols:has(.order-panel) .wizard__step { max-width: 560px; width: 100%; justify-self: center; }
  .order-panel { position: sticky; top: 18px; }
}
.order-panel { background: #fff; border-radius: var(--fn-radius, 14px); overflow: hidden;
  box-shadow: 0 2px 10px rgba(9, 32, 67, .07); }
.order-panel__head { margin: 0; background: var(--fn-navy, #092043); color: #fff;
  font-size: 1.05rem; padding: 14px 18px; }
.order-panel__body { padding: 16px 18px 18px; }
.order-panel__name { margin: 0; font-weight: 800; font-size: 1.1rem; }
.order-panel__net { margin: 2px 0 12px; color: var(--fn-slate, #5A6982); font-size: .88rem; }
.order-panel__perks { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 7px; font-size: .92rem; }
.order-panel__perks li { display: flex; gap: 9px; align-items: baseline; }
.order-panel__perks li::before { content: "✓"; color: var(--fn-green-d); font-weight: 800; }

.order-panel__once { display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px dashed var(--fn-border, #ccd3dd); padding-top: 12px; margin-bottom: 6px; }
.order-panel__once span { color: var(--fn-slate, #5A6982); font-size: .92rem; }
.order-panel__once b { font-size: 1.05rem; white-space: nowrap; }
.order-panel__total { display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px dashed var(--fn-border, #ccd3dd); padding-top: 12px; }

.order-panel__once + .order-panel__total { border-top: 0; padding-top: 0; }
.order-panel__total span { color: var(--fn-slate, #5A6982); font-size: .92rem; }
.order-panel__total b { font-size: 1.35rem; }
.order-panel__total small { font-size: .8rem; color: var(--fn-slate, #5A6982); font-weight: 400; }
.order-panel__trust { margin: 10px 0 0; font-size: .8rem; color: var(--fn-slate, #5A6982); }
@media (max-width: 1059px) {

  .order-panel { order: 1; box-shadow: none; border: 1.5px solid var(--fn-border, #ccd3dd); }
  .order-panel__perks, .order-panel__net, .order-panel__trust { display: none; }

  .order-panel__head { display: none; }
  .order-panel__body { padding: 12px 14px; display: grid;
    grid-template-columns: 1fr auto; gap: 6px 14px; align-items: baseline; }
  .order-panel__name { grid-column: 1 / -1; font-size: 1rem;
    padding-bottom: 8px; margin-bottom: 2px; border-bottom: 1px solid #eef1f6; }

  .order-panel__once, .order-panel__total { display: contents; }
  .order-panel__once span, .order-panel__total span { grid-column: 1; }
  .order-panel__once b, .order-panel__total b { grid-column: 2; text-align: right; white-space: nowrap; }
  .order-panel__once b { font-size: 1rem; }
  .order-panel__total b { font-size: 1.1rem; }
}

.cart-tariff { display: block; border: 1.5px solid var(--fn-border, #ccd3dd);
  border-radius: var(--fn-radius-sm, 10px); padding: 14px 18px; }
.cart-tariff__eyebrow { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  color: var(--fn-slate, #5A6982); margin-bottom: 4px; }
.cart-tariff__row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.cart-tariff__name { font-weight: 800; font-size: 1.08rem; }
.cart-tariff__price { font-weight: 800; font-size: 1.08rem; white-space: nowrap; }
.cart-tariff__meta { margin: 3px 0 8px; color: var(--fn-slate, #5A6982); font-size: .88rem; }

.cart-tariff__once { display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; margin: 0 0 8px; font-size: .92rem; color: var(--fn-slate, #5A6982); }
.cart-tariff__once b { color: var(--fn-navy, #092043); font-weight: 800; white-space: nowrap; }

.cart-tariff__switch { font-weight: 700; font-size: .9rem; color: var(--fn-navy, #092043);
  text-decoration: underline; display: inline-block; padding-block: 12px; margin-block: -12px; }

.cart-tariff__docs { margin: 0 0 8px; font-size: .84rem; display: flex; flex-wrap: wrap; gap: 14px; }
.cart-tariff__docs a { font-weight: 700; color: var(--fn-navy, #092043); text-decoration: underline; padding-block: 12px; margin-block: -12px; }
.cart-tariff__docs-plain { font-weight: 400; color: var(--fn-slate, #5A6982); }

.radio-option--rich:has(input:checked) {
  background: #eef5e4; border-color: var(--fn-green-d);
  box-shadow: 0 0 0 1.5px var(--fn-green-d) inset;
}
.radio-option--rich:has(input:checked) input { accent-color: var(--fn-green-d); }
.opt-badge { display: inline-block; background: var(--fn-green, #84BC34); color: var(--fn-navy, #092043);
  font-size: .72rem; font-weight: 800; border-radius: 999px; padding: 2px 10px; margin-left: 8px;
  vertical-align: 1px; letter-spacing: .02em; }

.declaration {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--fn-border, #ccd3dd);
  font-size: .84rem;
  line-height: 1.55;
  color: var(--fn-slate);
}
.declaration h2 { font-size: 1rem; margin: 0 0 12px; color: var(--fn-navy); }
.declaration h3 { font-size: .9rem; margin: 22px 0 8px; color: var(--fn-navy); }
.declaration p { margin: 0 0 10px; }

.declaration__docs { list-style: none; margin: 6px 0 10px; padding: 0; }
.declaration__docs li { margin: 0 0 4px; }
.declaration__docs a { color: var(--fn-navy); font-weight: 700; text-decoration: none; }
.declaration__docs a:hover { text-decoration: underline; }

.declaration__link { color: var(--fn-navy); font-weight: 700; text-decoration: none; }
.declaration__link:hover { text-decoration: underline; }

.declaration__docs-plain { font-weight: 400; color: var(--fn-slate); }
.declaration__docs-note { font-style: italic; }

.declaration__check { display: flex; gap: 10px; align-items: flex-start; margin: 0 0 8px; min-height: 24px; }
.declaration__check input[type="checkbox"] {
  margin-top: 1px; flex: 0 0 auto; width: 22px; height: 22px;
}

.declaration__hint { font-size: .78rem; font-style: italic; }

.declaration__tag {
  display: inline-block; vertical-align: middle; margin-left: 6px;
  font-size: .68rem; font-weight: 700; letter-spacing: .02em;
  padding: 2px 8px; border-radius: 999px;
  background: #eef1f6; color: var(--fn-slate, #5a6b85);
}
.declaration__tag--required { background: var(--fn-navy); color: #fff; }

.declaration__field { margin: 0 0 8px; }

.declaration__field .declaration__check { font-weight: 400; }
.declaration__field .field__error { display: none; }
.declaration__field.is-invalid {
  border: 1.5px solid var(--fn-red);
  border-left-width: 4px;
  border-radius: var(--fn-radius-sm);
  padding: 10px 12px 8px;
  background: #fdecef;
}
.declaration__field.is-invalid .field__error { display: block; }

dialog.tdov { border: 0; padding: 0; border-radius: 16px; max-width: 640px;
  width: calc(100% - 32px); max-height: 86vh; box-shadow: 0 18px 48px rgba(9, 32, 67, .3);
  color: var(--fn-ink, #092043); overflow: hidden; }
dialog.tdov[open] { display: flex; flex-direction: column; }
dialog.tdov::backdrop { background: rgba(9, 32, 67, .55); }

html.tdov-open, html.tdov-open body { overflow: hidden; }

.tdov__head { flex: 0 0 auto; background: var(--fn-navy, #092043); color: #fff;
  padding: 16px 20px; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.tdov__head h2 { font-family: var(--fn-font-display); font-size: 1.05rem; margin: 0 0 4px; color: #fff; }
.tdov__head p { margin: 0; font-size: .82rem; opacity: .82; }
.tdov__x { background: none; border: 0; color: #fff; font-size: 1.6rem; line-height: 1;
  cursor: pointer; padding: 0; min-width: 44px; min-height: 44px; margin: -8px -8px 0 0;
  border-radius: 50%; }

.tdov__x:focus-visible { outline: 2px solid var(--fn-green, #84BC34); outline-offset: 2px; }

.tdov__body { flex: 1 1 auto; overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch; padding: 4px 20px 24px; }

.tdov__cat + .tdov__cat { margin-top: 24px; }
.tdov__cat h3 { font-family: var(--fn-font-display); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fn-slate, #5A6982); margin: 20px 0 4px; }
.tdov__cat:first-child h3 { margin-top: 16px; }
.tdov__hl { margin: 8px 0 0; padding-left: 20px; }
.tdov__hl li { margin: 4px 0; font-size: .92rem; }

.tdov__kv { display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 8px 0; border-bottom: 1px solid #eef1f6; font-size: .92rem; }
.tdov__kv:last-child { border-bottom: 0; }
.tdov__k { flex: 1 1 auto; min-width: 0; color: var(--fn-slate, #5A6982); overflow-wrap: anywhere; }
.tdov__k sup { color: var(--fn-green-d, #659A0A); font-weight: 700; margin-left: 1px; }
.tdov__v { flex: 0 0 auto; text-align: right; font-weight: 600;
  font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }

.tdov__kv.is-stacked { display: block; }
.tdov__kv.is-stacked .tdov__v { display: block; flex: none; text-align: left; font-weight: 400;
  margin-top: 4px; color: var(--fn-ink, #092043); }

.tdov__group { margin: 0 0 0 4px; padding-left: 12px; border-left: 2px solid #e6ebf3; }
.tdov__group .tdov__kv:last-child { border-bottom: 0; }
.tdov__group + .tdov__kv { border-top: 1px solid #eef1f6; }

.tdov__note { margin: 12px 0 0; font-size: .8rem; color: var(--fn-slate, #5A6982); }

.tdov__legal { margin: 16px 0 0; font-size: .8rem; color: var(--fn-slate, #5A6982);
  line-height: 1.55; max-width: 68ch; }
.tdov__legal sup { color: var(--fn-green-d, #659A0A); font-weight: 700; }
.tdov__src { margin: 16px 0 0; padding-top: 12px; border-top: 1px solid #eef1f6;
  font-size: .72rem; color: #7A879B; overflow-wrap: anywhere; }

.tdov__src a { color: inherit; text-decoration: underline; display: inline-block;
  padding-block: 15px; margin-block: -15px; }

.tdov__foot { display: none; }
@media (max-width: 640px) {
  dialog.tdov { max-width: none; width: 100%; max-height: none; margin: 0; border-radius: 0;
    height: 100dvh; }
  .tdov__body { padding: 4px 16px 24px; }
  .tdov__foot { display: block; flex: 0 0 auto; background: #fff;
    border-top: 1px solid var(--fn-border, #ccd3dd);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); }
  .tdov__foot button { width: 100%; min-height: 48px; background: var(--fn-navy, #092043); color: #fff;
    border: 0; border-radius: 28px; font-weight: 700; font-size: 1rem; cursor: pointer; }
}

.promo-row { display: flex; gap: 8px; align-items: stretch; }
.promo-row input { flex: 1; min-width: 0; }
.promo-apply { border: 1px solid var(--ink, #0F2A46); background: #fff; color: var(--ink, #0F2A46);
  border-radius: 10px; padding: 0 18px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.promo-apply:hover { background: var(--ink, #0F2A46); color: #fff; }
.promo-chip { display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: #eef7dc; border: 1px solid #b9d78a; border-radius: 10px;
  padding: 10px 14px; margin: 0 0 10px; }
.promo-chip__check { color: #4C9F38; font-weight: 800; }
.promo-chip__remove { margin-left: auto; border: none; background: none; color: #5a6982;
  text-decoration: underline; cursor: pointer; font: inherit; font-size: .85rem; padding: 0; }
.promo-chip__remove:hover { color: #b3261e; }
.promo-error { background: #fdeaea; color: #8c2f39; border-radius: 8px;
  padding: 8px 12px; margin: 8px 0 0; font-size: .9rem; }
.promo-strike { color: #8a95a5; margin-right: 6px; }
.order-panel__promo { margin: 6px 0 0; font-size: .85rem; color: #2c6b4f; }

.enter-submit {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.suggest { position: relative; }

.suggest__caret {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 0;
  height: 0;
  transform: translateY(-2px);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--fn-slate);
  pointer-events: none;
}
.suggest input { padding-right: 34px; }

.suggest__list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 260px;      

  overflow-y: auto;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: var(--fn-surface);
  border: 1px solid #c7cede;
  border-radius: var(--fn-radius-input);
  box-shadow: 0 8px 24px rgba(9, 32, 67, .16);
  -webkit-overflow-scrolling: touch;
}

.suggest__list--up {
  top: auto;
  bottom: calc(100% + 4px);
}

.suggest__option {
  display: flex;
  align-items: center;
  min-height: 44px;          
  padding: 8px 14px;
  font-size: 1rem;
  color: var(--fn-ink);
  cursor: pointer;
}
.suggest__option:hover,
.suggest__option[aria-selected="true"] {
  background: var(--fn-green-light);
}

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

.tstrip { background: #fff; border-bottom: 1px solid #d9e0ea; }
.tstrip__in { max-width: 940px; margin: 0 auto; padding: 10px 20px 6px; }
.tstrip__row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.tstrip__row b { font-size: .98rem; color: var(--fn-navy); line-height: 1.3; }
.tstrip__price { flex: none; font-weight: 800; font-size: 1.05rem; color: var(--fn-navy); white-space: nowrap; }
.tstrip__price small { font-weight: 400; font-size: .75rem; color: var(--fn-slate, #5A6982); }
.tstrip p { margin: 2px 0 0; font-size: .8rem; color: var(--fn-slate, #5A6982); line-height: 1.45; }
.tstrip__links { display: flex; flex-wrap: wrap; gap: 0 16px; }
.tstrip__links a { font-size: .85rem; font-weight: 700; color: var(--fn-navy); text-decoration: underline; display: inline-flex; align-items: center; min-height: 44px; }

.wizard--express .wizard__step h1 { margin-bottom: 10px; }

.wizard--express form { counter-reset: sec; }
.wizard--express .form-section-title { counter-increment: sec; display: flex; align-items: center; gap: 10px; }

.wizard--express .form-section-title::before { content: counter(sec); flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--fn-navy); color: #fff; font-family: var(--fn-font-body); font-weight: 700; font-size: .85rem; line-height: 26px; text-align: center; }

.nat-line { margin: 2px 0 14px; font-size: .92rem; color: #44546d; }
.nat-line b { color: var(--fn-navy); }
.nat-line button { border: 0; background: none; font: inherit; font-weight: 700; text-decoration: underline; color: var(--fn-navy); cursor: pointer; min-height: 44px; padding: 0 6px; }

.esim-note { margin: 8px 0 2px; }
.esim-note b { color: var(--fn-navy); }
.iban-help { margin: -2px 0 8px; }

.pci-stat { margin: 6px 0 10px; font-size: .92rem; line-height: 1.4; min-height: 1.4em; display: block; }
.pci-stat:empty { min-height: 0; margin: 0; }
.pci-stat.is-ready, .pci-stat.is-unavailable { color: var(--fn-green-d); font-weight: 700; }
.pci-stat.is-invalid, .pci-stat.is-failed { color: #B42318; font-weight: 600; }
.pci-stat.is-loading { color: #44546d; }
.pci-spin { width: 16px; height: 16px; flex: none; border: 2px solid #c9d2e0; border-top-color: var(--fn-navy); border-radius: 50%; display: inline-block; animation: pcispin .8s linear infinite; vertical-align: -3px; margin-right: 8px; }
@keyframes pcispin { to { transform: rotate(360deg); } }
.declaration--vvi { margin: 4px 0 18px; animation: pciin .35s ease-out; }
.declaration--vvi[hidden] { display: none; }
.declaration--vvi h3 { margin-top: 0; }
.pci-docs { list-style: none; margin: 0; padding: 0; border: 1px solid #d9e0ea; border-radius: 12px; overflow: hidden; background: #fff; }
.pci-docs li + li { border-top: 1px solid #e3e8f3; }
.pci-docs a { display: flex; align-items: center; gap: 11px; min-height: 52px; padding: 12px 14px; color: var(--fn-navy); font-weight: 700; text-decoration: none; }
.pci-docs a > span:not(.pdf) { min-width: 0; overflow-wrap: anywhere; hyphens: auto; }
.pci-docs svg { flex: none; width: 18px; height: 18px; color: var(--fn-green-d); }
.pci-docs .pdf { margin-left: auto; font-size: 12px; font-weight: 800; letter-spacing: .06em; color: var(--fn-slate, #5A6982); }
.pci-docs.is-skel li { display: flex; align-items: center; gap: 11px; min-height: 52px; padding: 12px 14px; }
.pci-docs.is-skel i { display: block; height: 12px; border-radius: 6px; background: linear-gradient(90deg, #e9edf3 25%, #f6f8fb 50%, #e9edf3 75%); background-size: 200% 100%; animation: pciskel 1.1s linear infinite; }
.pci-docs.is-in { animation: pciin .35s ease-out; }
@keyframes pciskel { to { background-position: -200% 0; } }
@keyframes pciin { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.pci-note { margin: 0; padding: 12px 14px; border: 1px dashed #ccd3dd; border-radius: 12px; background: #f8fafc; font-size: .9rem; color: #44546d; }
.pci-retry { border: 0; background: none; font: inherit; font-weight: 700; text-decoration: underline; color: inherit; cursor: pointer; min-height: 24px; padding: 4px 0; }

.agree { border: 1.5px solid #ccd3dd; border-radius: 14px; background: #fff; margin: 8px 0 16px; overflow: hidden; }
.agree.is-invalid { border-color: #B42318; }
.agree label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: .92rem; line-height: 1.45; color: var(--fn-navy); font-weight: 400; margin: 0; }
.agree input[type="checkbox"] { flex: none; width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--fn-green-d); }
.agree__all { padding: 14px 16px; background: #f2f8e9; border-bottom: 1px solid #d9e6c8; }
.agree__all[hidden] { display: none; }
.agree__all b { display: block; font-size: 1rem; }
.agree__all small { display: block; color: #44546d; font-size: .82rem; }
.agree__list { list-style: none; margin: 0; padding: 0; }

.agree__list > li { padding: 12px 16px 4px; border-bottom: 1px solid #e9edf3; }
.agree__list > li.is-invalid label > span { color: #B42318; }
.agree__full .declaration__docs { margin: 2px 0 8px; }
.agree__full .declaration__docs li { margin: 0; }
.agree__full .declaration__docs a { display: inline-block; padding: 4px 0; }
.agree__more > summary { list-style: none; display: inline-flex; align-items: center; font-size: .82rem; font-weight: 700; text-decoration: underline; color: #44546d; cursor: pointer; min-height: 40px; padding: 0 0 0 34px; }
.agree__more > summary::-webkit-details-marker { display: none; }
.agree__full { margin: 0 0 10px 34px; padding: 10px 12px; border-radius: 10px; background: #f6f7f9; font-size: .82rem; line-height: 1.5; color: #44546d; border: 0; }
.agree__full p { margin: 0 0 8px; }

.agree__full--open { margin-top: 8px; }
.agree__full--open p:last-child { margin-bottom: 0; }
.agree__wait { display: block; font-style: normal; font-size: .82rem; color: var(--fn-slate, #5A6982); margin-top: 2px; }
.agree__wait[hidden] { display: none; }
.agree__err { margin: 0; padding: 8px 16px; }
.agree.is-invalid .agree__err { display: block; }
.agree__opt { padding: 10px 16px 4px; background: #fafbfc; }
.agree__opt-h { margin: 0 0 6px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--fn-slate, #5A6982); }
.agree__opt label { color: #44546d; }

.afterclick { list-style: none; margin: 0 0 14px; padding: 12px 16px; border-radius: 14px; background: #f2f8e9; font-size: .88rem; line-height: 1.45; color: var(--fn-navy); display: grid; gap: 6px; }
.afterclick b { font-weight: 800; }

.sumcard { border: 1.5px solid #ccd3dd; border-radius: 14px; padding: 14px 16px; margin: 8px 0 16px; background: #fff; }
.sumcard__h { margin: 0 0 4px; font-weight: 800; color: var(--fn-navy); }
.sumcard dl { margin: 0; }
.sumcard dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-top: 1px solid #e9edf3; font-size: .92rem; }
.sumcard dt { color: var(--fn-slate, #5A6982); flex: 0 1 auto; min-width: 0; }
.sumcard dd { margin: 0; text-align: right; font-weight: 700; color: var(--fn-navy); overflow-wrap: anywhere; }
.sumcard dd small { font-weight: 400; color: var(--fn-slate, #5A6982); font-size: .85rem; }
.sumcard .is-big dd { font-size: 1.25rem; font-weight: 800; }
.sumcard dd.is-open { font-weight: 400; font-style: italic; color: var(--fn-slate, #5A6982); }
.sumcard dd.is-new { animation: sumin .5s ease-out; }
@keyframes sumin { from { background: #e4f2d9; } to { background: transparent; } }

.field.is-valid input:not([type="radio"]):not([type="checkbox"]) { border-color: var(--fn-green-d); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233E701E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.field.is-valid .dob-row input:not([type="radio"]):not([type="checkbox"]) { background-image: none; padding-right: 0; }
.field__suggest { margin: 6px 0 0; font-size: .88rem; color: #44546d; }
.field__suggest[hidden] { display: none; }
.field__suggest button { border: 0; background: #fff4d6; border-radius: 8px; font: inherit; font-weight: 700; color: var(--fn-navy); cursor: pointer; min-height: 36px; padding: 4px 10px; text-decoration: underline; }
.field.is-nudge, .agree.is-nudge { animation: nudge .9s ease-out; }
@keyframes nudge { 0%, 40% { box-shadow: 0 0 0 6px #fde9a8; border-radius: 10px; } 100% { box-shadow: 0 0 0 6px transparent; } }
.restored { margin: 0 0 12px; padding: 10px 14px; border-radius: 12px; background: #e7f3d6; color: #2f5616; font-weight: 700; font-size: .9rem; transition: opacity .6s; }
.restored.is-out { opacity: 0; pointer-events: none; position: absolute; }

.todo-line { margin: 0 0 8px; font-size: .85rem; color: #44546d; text-align: center; }
.todo-line:empty { display: none; }
.todo-line.is-ok { color: var(--fn-green-d); font-weight: 700; }
.todo-go { display: block; width: 100%; min-height: 52px; padding: 8px 18px; border: 1.5px solid var(--fn-navy); border-radius: 999px; background: #fff; color: var(--fn-navy); font: inherit; cursor: pointer; line-height: 1.25; }
.todo-go b { display: block; font-size: 1rem; font-weight: 800; }
.todo-go small { display: block; font-size: .78rem; font-weight: 400; color: var(--fn-slate, #5A6982); }
.todo-go:hover { background: #f2f5fa; }
.wizard__actions--express.is-slim input[type="submit"] { display: none; }
.wizard__actions--express.is-slim .todo-line { margin: 0; }
.wizard__actions--express .btn--primary { width: 100%; }

@media (max-width: 899px) { .wizard--express .order-panel { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .pci-spin, .pci-docs.is-skel i, .pci-docs.is-in, .declaration--vvi, .sumcard dd.is-new, .field.is-nudge, .agree.is-nudge { animation: none; }
}

.wizard--express .assure { list-style: none; margin: -6px 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: .85rem; color: var(--fn-navy); }
.wizard--express .assure li { display: flex; align-items: center; gap: 6px; min-width: 0; }
.wizard--express .assure li::before { content: ""; flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--fn-green-d) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.3l2.6 2.6L12 5.4' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat; }

@media (min-width: 900px) { .tstrip { display: none; } }
.order-panel__term { margin: 8px 0 0; font-size: .85rem; color: var(--fn-slate, #5A6982); }
.order-panel__docs { margin: 6px 0 0; display: flex; flex-direction: column; gap: 0; }
.order-panel__docs a { font-size: .85rem; font-weight: 700; color: var(--fn-navy); text-decoration: underline; display: inline-flex; align-items: center; min-height: 32px; }

@media (min-width: 900px) {
  .wizard--express #expressForm { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); column-gap: 16px; align-items: start; }
  .wizard--express #expressForm > * { grid-column: 1 / -1; min-width: 0; }
  .wizard--express #expressForm > .field:has(#order_first_name),
  .wizard--express #expressForm > .field:has(#order_last_name) { grid-column: span 3; }
  .wizard--express #expressForm > .field:has(#order_postal_code) { grid-column: span 2; }
  .wizard--express #expressForm > .field:has(#order_city) { grid-column: span 4; }
}

.wizard--express #zahlung + .field__hint,
.wizard--express [data-bic-hint] { display: none; }

@media (max-width: 640px) {
  .dev-fill { width: 44px; height: 44px; padding: 0; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; opacity: .75; }
  .dev-fill__label { display: none; }
}

.wizard--express .btn, .wizard--express .todo-go, .wizard--express .field__suggest button { transition: transform .08s ease, background-color .14s ease, box-shadow .14s ease; }
.wizard--express .btn:active, .wizard--express .todo-go:active, .wizard--express .field__suggest button:active { transform: scale(.98); }
@media (prefers-reduced-motion: reduce) {
  .wizard--express .btn:active, .wizard--express .todo-go:active, .wizard--express .field__suggest button:active { transform: none; }
}
