:root {
  --green: #068c6e;
  --green-dark: #056f58;
  --green-deep: #034c3d;
  --green-soft: #e9f5f1;
  --yellow: #f9b000;
  --yellow-soft: #fff4d8;
  --ink: #14231e;
  --muted: #66756f;
  --border: #dce7e3;
  --border-strong: #c7d9d2;
  --surface: #ffffff;
  --surface-soft: #f7faf9;
  --page: #f1f6f4;
  --danger: #b42318;
  --success: #067647;
  --shadow-sm: 0 8px 28px rgba(3, 76, 61, .08);
  --shadow-lg: 0 28px 80px rgba(3, 76, 61, .14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(249,176,0,.10), transparent 28%),
    var(--page);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
button, input { min-width: 0; font: inherit; }
button, label, a { touch-action: manipulation; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
  border-top: 4px solid var(--green);
  border-bottom: 1px solid rgba(199,217,210,.8);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 5px 24px rgba(3,76,61,.06);
}
.topbar::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 126px;
  height: 4px;
  background: var(--yellow);
}
.topbar form { margin: 0; }
.topbar-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}
.topbar-brand img {
  width: 112px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}
.brand-divider,
.brand-service { display: none; }

/* Buttons */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
}
.button:hover:not(:disabled) { transform: translateY(-1px); }
.button:active:not(:disabled) { transform: translateY(0); }
.button:disabled { cursor: wait; opacity: .6; }
.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(6,140,110,.22);
}
.button-primary:hover:not(:disabled) { background: var(--green-dark); }
.button-secondary {
  color: var(--green-dark);
  border-color: #c6ddd5;
  background: var(--green-soft);
}
.button-ghost {
  color: var(--ink);
  border-color: var(--border-strong);
  background: #fff;
}
.button-small { min-height: 40px; padding: 0 14px; font-size: 13px; }
.button-wide { width: 100%; }
.button-copy { width: 100%; margin-top: 12px; font-size: 13px; }
.text-button {
  min-height: 38px;
  padding: 0 9px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
}
.text-button:hover { color: var(--green); }

/* Page */
.page-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 16px 12px 56px;
}
.intro-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 152px;
  margin-bottom: 16px;
  padding: 24px 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #05745d);
  box-shadow: var(--shadow-sm);
}
.intro-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 122px;
  height: 6px;
  background: var(--yellow);
}
.intro-card > div:first-child { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.intro-card h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(28px, 8vw, 44px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.intro-card p:last-child {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.5;
}
.intro-symbol { display: none; }

/* Wizard shell */
.wizard-shell {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 16px;
  align-items: start;
}
.wizard-sidebar,
.desktop-preview { display: none; }
.wizard-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.wizard-header {
  padding: 20px 18px 14px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.wizard-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.step-counter {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.wizard-header h2 {
  margin: 0;
  font-size: clamp(21px, 6vw, 28px);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.progress-track {
  height: 7px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8efec;
}
.progress-bar {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  transition: width .28s ease;
}
.mobile-step-dots {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.mobile-step-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #dbe5e1;
  transition: width .2s ease, background .2s ease;
}
.mobile-step-dots span.is-active { width: 28px; background: var(--green); }
.mobile-step-dots span.is-complete { background: var(--yellow); }
.wizard-body { min-height: 430px; padding: 20px 18px 10px; }
.wizard-step { animation: stepIn .25s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.step-copy {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-items: start;
  gap: 12px;
  margin-bottom: 20px;
}
.step-copy h3 {
  margin: 1px 0 5px;
  color: var(--green-deep);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.step-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.step-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}
.step-icon-check { color: #654600; background: var(--yellow-soft); }

/* Choice cards */
.choice-grid { display: grid; gap: 12px; }
.choice-card { display: block; cursor: pointer; }
.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.choice-card-inner {
  position: relative;
  min-height: 142px;
  display: grid;
  grid-template-columns: 80px minmax(0,1fr) 28px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: #fff;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}
.choice-card:hover .choice-card-inner { transform: translateY(-1px); border-color: var(--border-strong); }
.choice-card input:checked + .choice-card-inner {
  border-color: var(--green);
  background: linear-gradient(145deg, #fff, #f2faf7);
  box-shadow: 0 12px 26px rgba(6,140,110,.12);
}
.choice-card input:focus-visible + .choice-card-inner { outline: 3px solid rgba(249,176,0,.35); outline-offset: 3px; }
.choice-visual {
  width: 80px;
  height: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 5px;
  border-radius: 12px;
  background: #edf4f1;
}
.choice-visual i {
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}
.choice-visual i:last-child { color: #674700; background: var(--yellow); }
.logo-visual i:last-child { background: var(--green-dark); }
.logo-visual img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }
.choice-text strong,
.choice-text small { display: block; }
.choice-text strong { margin-bottom: 5px; font-size: 16px; line-height: 1.25; }
.choice-text small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.choice-check {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 2px solid #d4e1dc;
  border-radius: 50%;
  color: transparent;
  font-size: 13px;
  font-weight: 900;
}
.choice-card input:checked + .choice-card-inner .choice-check {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}
.single-language-box {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-soft);
}
.field-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.language-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  border-radius: 13px;
  background: #e7efec;
}
.language-choice label { cursor: pointer; }
.language-choice input { position: absolute; opacity: 0; pointer-events: none; }
.language-choice span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.language-choice input:checked + span {
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 5px 14px rgba(3,76,61,.09);
}

/* Form fields */
.form-stack { display: grid; gap: 15px; }
.form-stack-narrow { max-width: 620px; }
.name-grid { display: grid; gap: 15px; }
.field { display: grid; gap: 7px; }
.field > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.field em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}
.field input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input::placeholder { color: #9aa7a2; }
.field input:hover { border-color: #a9c4ba; }
.field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(6,140,110,.12);
}
.field input:invalid:not(:placeholder-shown) { border-color: rgba(180,35,24,.55); }
.field small { color: var(--muted); font-size: 11px; line-height: 1.4; }
.info-strip {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  max-width: 620px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 15px;
  color: var(--green-dark);
  background: var(--green-soft);
}
.info-strip > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #654600;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}
.info-strip p { margin: 0; font-size: 12px; line-height: 1.45; }

/* Review */
.review-layout { display: grid; gap: 16px; }
.review-preview,
.review-summary {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--surface-soft);
}
.preview-toolbar { display: flex; justify-content: center; margin-bottom: 12px; }
.segmented-control {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(62px, auto);
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: #e5eeea;
}
.segment {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 850;
}
.segment.is-active {
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 5px 14px rgba(3,76,61,.10);
}
.card-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 90 / 50;
  overflow: hidden;
  border-radius: 12px;
  background: #edf2f0;
  box-shadow: 0 14px 30px rgba(3,76,61,.16);
}
.card-stage > img[data-card-preview] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .18s ease;
}
.card-stage > img.is-loading { opacity: .4; }
.card-stage > img.is-hidden { opacity: 0; }
.preview-placeholder {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 20px;
  color: var(--muted);
  text-align: center;
  background: linear-gradient(145deg, #f8fbfa, #edf4f1);
  font-size: 12px;
  font-weight: 700;
}
.preview-placeholder.is-visible { display: grid; }
.preview-placeholder img { width: 42px; height: 42px; object-fit: contain; opacity: .42; }
.preview-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 34px;
  height: 34px;
  display: none;
  margin: -17px 0 0 -17px;
  border: 3px solid rgba(6,140,110,.18);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}
.preview-loader.is-visible { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.review-summary h4 { margin: 0 0 12px; font-size: 15px; }
.review-data { display: grid; gap: 0; margin: 0 0 14px; }
.review-data > div {
  display: grid;
  grid-template-columns: 82px minmax(0,1fr);
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.review-data > div:last-child { border-bottom: 0; }
.review-data dt { color: var(--muted); font-size: 11px; font-weight: 750; }
.review-data dd { min-width: 0; margin: 0; overflow-wrap: anywhere; font-size: 12px; font-weight: 750; }
.download-box {
  margin-top: 16px;
  padding: 15px;
  border: 1px solid rgba(249,176,0,.35);
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, var(--yellow-soft));
}
.button-download-main { width: 100%; min-height: 56px; font-size: 15px; }
.download-secondary-grid { display: grid; gap: 8px; margin-top: 9px; }
.download-secondary-grid .button { width: 100%; font-size: 12px; }
.form-message {
  min-height: 20px;
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.form-message[data-type="error"] { color: var(--danger); }
.form-message[data-type="success"] { color: var(--success); }
.form-message[data-type="info"] { color: var(--green-dark); }

/* Footer navigation */
.wizard-footer {
  position: sticky;
  bottom: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px max(14px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
}
.wizard-footer-spacer { flex: 1; }
.wizard-nav-button { min-width: 120px; }

/* Future services */
.future-services {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}
.future-services summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 17px;
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}
.future-services summary::-webkit-details-marker { display: none; }
.future-services summary small { color: var(--green); font-size: 11px; }
.future-service-grid { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 17px 17px; }
.future-service-grid span {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  background: #edf3f0;
  font-size: 11px;
  font-weight: 700;
}

/* Tablet */
@media (min-width: 640px) {
  .page-shell { padding: 22px 22px 68px; }
  .intro-card { min-height: 172px; padding: 30px 32px; }
  .intro-symbol {
    position: relative;
    z-index: 1;
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-left: 28px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 28px;
    background: rgba(255,255,255,.10);
    transform: rotate(7deg);
  }
  .intro-symbol img { width: 58px; height: 58px; object-fit: contain; }
  .wizard-header { padding: 24px 28px 18px; }
  .wizard-body { min-height: 470px; padding: 28px 28px 14px; }
  .wizard-footer { padding: 16px 28px; }
  .choice-grid-large { grid-template-columns: 1fr 1fr; }
  .choice-card-inner {
    min-height: 210px;
    grid-template-columns: 1fr 30px;
    grid-template-rows: auto 1fr;
    align-items: start;
  }
  .choice-visual { width: 94px; height: 66px; grid-column: 1; }
  .choice-text { grid-column: 1 / -1; }
  .choice-check { position: absolute; top: 17px; right: 17px; }
  .name-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .step-copy-with-action { grid-template-columns: 42px minmax(0,1fr) auto; }
  .button-copy { width: auto; margin: 0; align-self: start; }
  .review-layout { grid-template-columns: minmax(0,1.5fr) minmax(230px,.8fr); align-items: start; }
  .download-secondary-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* Desktop */
@media (min-width: 1024px) {
  .topbar { min-height: 74px; padding-left: 28px; padding-right: 28px; }
  .topbar-brand img { width: 126px; height: 50px; }
  .brand-divider {
    width: 1px;
    height: 26px;
    display: block;
    margin: 0 14px;
    background: var(--border-strong);
  }
  .brand-service { display: block; color: var(--green-dark); font-size: 14px; font-weight: 850; }
  .page-shell { padding: 28px 28px 80px; }
  .intro-card { min-height: 180px; margin-bottom: 22px; padding: 34px 40px; border-radius: 28px; }
  .wizard-shell {
    grid-template-columns: 220px minmax(0,1fr) 330px;
    gap: 18px;
  }
  .wizard-sidebar,
  .desktop-preview {
    display: block;
    position: sticky;
    top: 94px;
  }
  .wizard-sidebar {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow-sm);
  }
  .wizard-sidebar-head {
    padding: 20px 18px 17px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(145deg, #fff, var(--green-soft));
  }
  .wizard-sidebar-head span,
  .wizard-sidebar-head strong { display: block; }
  .sidebar-kicker { margin-bottom: 5px; color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
  .wizard-sidebar-head strong { font-size: 17px; line-height: 1.25; }
  .desktop-step-list { margin: 0; padding: 12px; list-style: none; }
  .desktop-step-list li { position: relative; }
  .desktop-step-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 42px;
    left: 22px;
    width: 2px;
    height: 20px;
    background: #dfe8e4;
  }
  .desktop-step-list li.is-complete:not(:last-child)::after { background: var(--green); }
  .desktop-step-list button {
    width: 100%;
    min-height: 54px;
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 0;
    border-radius: 13px;
    color: var(--muted);
    text-align: left;
    background: transparent;
  }
  .desktop-step-list button:disabled { cursor: default; }
  .desktop-step-list button span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    background: #fff;
    font-size: 11px;
    font-weight: 900;
  }
  .desktop-step-list button strong { font-size: 12px; }
  .desktop-step-list li.is-active button { color: var(--green-dark); background: var(--green-soft); }
  .desktop-step-list li.is-active button span { color: #fff; border-color: var(--green); background: var(--green); }
  .desktop-step-list li.is-complete button { color: var(--ink); }
  .desktop-step-list li.is-complete button span { color: #654600; border-color: var(--yellow); background: var(--yellow); }
  .sidebar-help {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    gap: 10px;
    margin: 0 12px 12px;
    padding: 13px;
    border-radius: 14px;
    color: var(--green-dark);
    background: var(--green-soft);
  }
  .sidebar-help-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #654600;
    background: var(--yellow);
    font-weight: 900;
  }
  .sidebar-help strong,
  .sidebar-help span { display: block; }
  .sidebar-help strong { margin-bottom: 3px; font-size: 11px; }
  .sidebar-help span { font-size: 10px; line-height: 1.4; }
  .wizard-card { border-radius: 24px; }
  .mobile-step-dots { display: none; }
  .wizard-body { min-height: 520px; }
  .desktop-preview {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-sm);
  }
  .desktop-preview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 13px;
  }
  .desktop-preview-head span,
  .desktop-preview-head strong { display: block; }
  .desktop-preview-head span { margin-bottom: 3px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
  .desktop-preview-head strong { color: var(--green-dark); font-size: 14px; }
  .preview-status { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 9px; font-weight: 700; }
  .preview-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(6,140,110,.12); }
  .desktop-preview-note { margin: 13px 2px 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
  .review-step .review-preview { display: none; }
  .review-layout { grid-template-columns: 1fr; }
  .future-services { margin-left: 238px; margin-right: 348px; }
}

@media (min-width: 1180px) {
  .wizard-shell { grid-template-columns: 230px minmax(0,1fr) 360px; gap: 22px; }
  .future-services { margin-left: 252px; margin-right: 382px; }
}

/* Small phones */
@media (max-width: 374px) {
  .page-shell { padding-left: 8px; padding-right: 8px; }
  .topbar { padding-left: 10px; padding-right: 10px; }
  .topbar-brand img { width: 98px; }
  .intro-card { padding: 22px 17px 26px; }
  .wizard-header,
  .wizard-body,
  .wizard-footer { padding-left: 14px; padding-right: 14px; }
  .choice-card-inner { grid-template-columns: 64px minmax(0,1fr) 24px; gap: 10px; padding: 13px; }
  .choice-visual { width: 64px; height: 52px; }
  .wizard-nav-button { min-width: 104px; padding-left: 13px; padding-right: 13px; }
}

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

/* =========================================================
   Login page — v1.3.1
   Scoped styles only. The wizard interface is unchanged.
   ========================================================= */
.login-page {
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(249,176,0,.15), transparent 26%),
    radial-gradient(circle at 100% 100%, rgba(6,140,110,.12), transparent 30%),
    #eef5f2;
}
.login-page::before,
.login-page::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}
.login-page::before {
  width: 260px;
  height: 260px;
  top: -130px;
  right: -100px;
  border: 44px solid rgba(6,140,110,.07);
}
.login-page::after {
  width: 190px;
  height: 190px;
  left: -90px;
  bottom: -100px;
  border: 34px solid rgba(249,176,0,.09);
}
.login-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding:
    max(18px, env(safe-area-inset-top))
    max(14px, env(safe-area-inset-right))
    max(18px, env(safe-area-inset-bottom))
    max(14px, env(safe-area-inset-left));
}
.login-panel {
  width: min(100%, 1020px);
  min-height: min(680px, calc(100svh - 36px));
  display: grid;
  grid-template-columns: minmax(0,1fr);
  overflow: hidden;
  border: 1px solid rgba(199,217,210,.95);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(3,76,61,.17);
}
.login-brand-side { display: none; }
.login-form-side {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #fff;
}
.login-mobile-brand {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  border-top: 4px solid var(--green);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.98);
}
.login-mobile-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(14px, env(safe-area-inset-left));
  width: 108px;
  height: 4px;
  background: var(--yellow);
}
.login-mobile-brand img {
  width: 122px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}
.login-mobile-brand span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
}
.login-form-wrap {
  width: min(100%, 480px);
  margin: auto;
  padding: 34px 22px 30px;
}
.login-heading {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  align-items: start;
  gap: 14px;
  margin-bottom: 28px;
}
.login-lock-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(6,140,110,.22);
}
.login-lock-mark svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.login-eyebrow {
  margin: 0 0 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.login-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 7vw, 36px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.login-heading p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.login-form {
  display: grid;
  gap: 17px;
}
.login-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}
.login-field > span:first-child {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}
.login-input-wrap {
  min-width: 0;
  min-height: 56px;
  display: grid;
  grid-template-columns: 24px minmax(0,1fr);
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid var(--border-strong);
  border-radius: 15px;
  background: var(--surface-soft);
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.login-input-wrap:focus-within {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(6,140,110,.12);
}
.login-input-wrap > svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #7a8c85;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.login-input-wrap input {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  font-weight: 650;
}
.login-input-wrap input::placeholder {
  color: #98a7a1;
  font-weight: 500;
}
.login-password-wrap {
  grid-template-columns: 24px minmax(0,1fr) 42px;
  padding-right: 7px;
}
.password-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 12px;
  color: var(--muted);
  background: transparent;
}
.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--green);
  background: var(--green-soft);
  outline: 0;
}
.password-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.password-toggle .eye-closed { display: none; }
.password-toggle.is-visible .eye-open { display: none; }
.password-toggle.is-visible .eye-closed { display: block; }
.caps-lock-note {
  margin: -2px 0 0;
  color: #9a6700;
  font-size: 11px;
  font-weight: 800;
}
.login-error {
  margin: -2px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(180,35,24,.18);
  border-radius: 12px;
  color: var(--danger);
  background: #fff3f1;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}
.login-submit {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 3px;
  padding: 0 18px 0 22px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(6,140,110,.24);
  font-size: 15px;
  font-weight: 900;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.login-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  background: var(--green-dark);
  box-shadow: 0 16px 32px rgba(6,140,110,.28);
}
.login-submit:active:not(:disabled) { transform: translateY(0); }
.login-submit:disabled { cursor: wait; opacity: .82; }
.login-submit > svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.login-submit-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: login-spin .7s linear infinite;
}
.login-submit.is-loading {
  grid-template-columns: 1fr auto;
}
.login-submit.is-loading > svg { display: none; }
.login-submit.is-loading .login-submit-spinner { display: block; }
@keyframes login-spin { to { transform: rotate(360deg); } }
.login-help {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
}
.login-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
  padding: 16px 20px 20px;
  color: #8a9993;
  font-size: 10px;
  font-weight: 700;
}
@media (min-width: 640px) {
  .login-layout { padding: 28px; }
  .login-panel { min-height: 640px; }
  .login-form-wrap { padding: 48px 42px 36px; }
  .login-mobile-brand { padding-left: 34px; padding-right: 34px; }
}
@media (min-width: 860px) {
  .login-panel {
    grid-template-columns: minmax(330px, .92fr) minmax(420px, 1.08fr);
  }
  .login-brand-side {
    position: relative;
    overflow: hidden;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 42px 42px 38px;
    color: #fff;
    background:
      linear-gradient(145deg, rgba(3,76,61,.08), transparent 48%),
      linear-gradient(145deg, var(--green), #05745d 72%, var(--green-deep));
  }
  .login-brand-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 148px;
    height: 7px;
    background: var(--yellow);
  }
  .login-brand-side::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -165px;
    bottom: -140px;
    border: 56px solid rgba(255,255,255,.07);
    border-radius: 50%;
  }
  .login-brand-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .login-brand-logo {
    width: 154px;
    height: 62px;
    object-fit: contain;
    object-position: left center;
    /*filter: brightness(0) invert(1);*/
  }
  .login-service-badge {
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.08);
    font-size: 10px;
    font-weight: 850;
  }
  .login-brand-copy {
    position: relative;
    z-index: 2;
    margin: auto 0 24px;
  }
  .login-brand-kicker {
    margin: 0 0 12px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
  }
  .login-brand-copy h1 {
    max-width: 440px;
    margin: 0;
    font-size: clamp(34px, 3.6vw, 50px);
    line-height: 1.02;
    letter-spacing: -.045em;
  }
  .login-brand-copy > p:last-child {
    max-width: 390px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.55;
  }
  .login-brand-feature {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 360px;
    color: rgba(255,255,255,.88);
    font-size: 12px;
    font-weight: 750;
  }
  .login-feature-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 9px;
    color: #674900;
    background: var(--yellow);
    font-weight: 950;
  }
  .login-brand-symbol {
    position: absolute;
    right: -14px;
    bottom: 54px;
    width: 164px;
    height: 164px;
    object-fit: contain;
    opacity: .07;
    filter: brightness(0) invert(1);
    transform: rotate(8deg);
  }
  .login-mobile-brand { display: none; }
  .login-form-side { padding: 34px 28px 22px; }
  .login-form-wrap { padding: 38px 34px 30px; }
  .login-footer { padding-bottom: 10px; }
}
@media (min-width: 1100px) {
  .login-brand-side { padding: 48px 50px 42px; }
  .login-form-side { padding-left: 46px; padding-right: 46px; }
}
@media (max-width: 374px) {
  .login-layout { padding-left: 8px; padding-right: 8px; }
  .login-panel { border-radius: 20px; }
  .login-mobile-brand { min-height: 74px; padding-left: 15px; padding-right: 15px; }
  .login-mobile-brand img { width: 108px; }
  .login-mobile-brand span { font-size: 10px; }
  .login-form-wrap { padding: 28px 16px 24px; }
  .login-heading { grid-template-columns: 42px minmax(0,1fr); gap: 11px; }
  .login-lock-mark { width: 42px; height: 42px; border-radius: 13px; }
  .login-heading h2 { font-size: 25px; }
}
