:root {
  --shell-width: 430px;
  --ink: #1a2753;
  --ink-soft: #55628f;
  --surface: #f5f6ff;
  --surface-deep: #e9ecfb;
  --line: rgba(55, 70, 128, 0.18);
  --cta-a: #2f4388;
  --cta-b: #6d88df;
  --chip-a: #edf0fe;
  --chip-b: #ffffff;
  --shadow: 0 2px 10px rgba(30, 42, 88, 0.08);
  --font-display: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Inter", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e2e5f0;
  color: var(--ink);
  font-family: var(--font-body);
  overflow: hidden;
  padding: 0 0 calc(56px + env(safe-area-inset-bottom));
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("images/bg-vertical.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(0.75px);
  -webkit-backdrop-filter: blur(0.75px);
}

input,
button {
  font: inherit;
}

input {
  user-select: text;
  -webkit-user-select: text;
}

.ambient-glow {
  display: none;
}

.app-shell {
  position: relative;
  z-index: 20;
  width: min(100vw, var(--shell-width));
  border-radius: 0;
  border: none;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: opacity 0.25s ease, filter 0.25s ease;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.btn-solid {
  border: 0;
  border-radius: 8px;
  background: #3d53a0;
  color: #fff;
  box-shadow: 0 2px 6px rgba(43, 59, 120, 0.15);
  cursor: pointer;
}

.hero-cta {
  display: block;
  width: 100%;
  min-height: clamp(36px, 6dvh, 56px);
  margin-top: clamp(6px, 2dvh, 28px);
  border: 0;
  border-radius: 8px;
  background: #3d53a0;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 3;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.85) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.85) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 14px;
  width: min(100vw, var(--shell-width));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(48, 62, 116, 0.1);
  border-radius: 0;
}

.brand-wrap {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
}

.brand-mark {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
}

.brand-text {
  width: min(240px, 100%);
}

.hero-cta .vtext svg,
.hero-cta .vector-host svg {
  max-height: 22px;
}

.hero {
  position: relative;
  padding: clamp(8px, 3dvh, 40px) 14px clamp(6px, 2dvh, 28px);
}

.hero-heading {
  position: relative;
}

.hero-heading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-illustration {
  display: none;
}

.hero-heading {
  width: 100%;
  margin: 0 0 clamp(2px, 0.6vh, 8px);
  margin: 0 0 clamp(2px, 0.6dvh, 8px);
  position: relative;
  z-index: 2;
}

.apply-discount-bar {
  position: fixed;
  z-index: 80;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(14px + env(safe-area-inset-bottom));
  width: min(100vw, var(--shell-width));
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.apply-discount-btn {
  border: 0;
  border-radius: 10px;
  background: #3d53a0;
  color: #fff;
  min-height: 48px;
  width: 100%;
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(39, 55, 109, 0.15);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.85) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.85) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.apply-discount-btn .vector-host {
  max-width: 140px;
}
.apply-discount-btn.applied .vector-host {
  max-width: none;
}

.apply-discount-btn.applied {
  background: #1a7a3a;
}

.apply-discount-btn:hover {
  opacity: 0.9;
}

.discount-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 8px 8px;
}

.discount-modal-heading {
  text-align: center;
}

.discount-modal-message {
  text-align: center;
  max-width: 340px;
}

.discount-modal-applied {
  text-align: center;
  padding: 12px 0;
}

.discount-modal-row {
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 280px;
}

.discount-modal-input {
  flex: 1;
  border: 1px solid rgba(52, 68, 123, 0.19);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  min-height: 36px;
  height: 36px;
  padding: 0 8px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  outline: none;
  font-weight: 700;
}

.discount-modal-input::placeholder {
  color: #3d53a0;
  opacity: 0.7;
  font-weight: 700;
}

.discount-modal-input:focus {
  border-color: rgba(73, 98, 185, 0.5);
}

.discount-modal-apply-btn {
  border: 0;
  border-radius: 6px;
  background: #2FA7B6;
  color: #fff;
  padding: 0 10px;
  min-height: 32px;
  height: 32px;
  max-width: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.discount-modal-apply-btn:hover {
  background: #278f9c;
}

.discount-modal-status {
  text-align: center;
  min-height: 16px;
}

.dropdown-option {
  width: 100%;
  border: 1px solid rgba(60, 76, 130, 0.14);
  border-radius: 8px;
  background: #fff;
  padding: 8px 10px;
  cursor: pointer;
}

.dropdown-option.active {
  border-color: rgba(62, 84, 160, 0.46);
  box-shadow: inset 0 0 0 1px rgba(104, 128, 214, 0.24);
}

.search-area {
  padding: clamp(6px, 1.5dvh, 20px) 14px;
  border-top: 1px solid rgba(58, 71, 129, 0.1);
}

.cert-line {
  margin-bottom: clamp(1px, 0.3dvh, 6px);
}

.full-menu-btn-wrap {
  padding: 0 14px clamp(4px, 1.5dvh, 24px);
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.full-menu-btn {
  flex: 1;
  background: #2FA7B6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: clamp(6px, 1.5dvh, 16px) 16px;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.85) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.85) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.full-menu-btn:hover {
  background: #268e9b;
}

.full-menu,
.protocol-sheet .about-section:first-of-type {
  margin-top: 0;
}

.about-section {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.full-menu {
  display: grid;
  gap: 16px;
}

.menu-section {
  display: grid;
  gap: 10px;
  border-top: 2px solid rgba(61, 83, 160, 0.15);
  padding-top: 14px;
}

.menu-section-title {
  width: 100%;
}

.menu-subsection {
  display: grid;
  gap: 4px;
  margin-bottom: 4px;
}

.menu-sub-heading {
  margin-bottom: 2px;
}

.menu-item-wrap {
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.menu-item-wrap:hover {
  background: rgba(61, 83, 160, 0.08);
}

.menu-item-wrap:active {
  background: rgba(61, 83, 160, 0.14);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.menu-item-name {
  flex: 1;
  min-width: 0;
}

.menu-item-name svg {
  max-height: 16px;
}

.menu-item-price {
  flex-shrink: 0;
  max-width: 70px;
}

.menu-item-price svg {
  max-height: 16px;
}

.menu-item-desc {
  padding-left: 4px;
  margin-bottom: 2px;
}

.modal-sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: #fff;
  padding: 10px 0 4px;
  flex-shrink: 0;
}

.modal-sticky-cta .sheet-cta-btn {
  margin: 0 auto;
}

.claims {
  margin-top: 6px;
  display: grid;
  gap: 2px;
}

.claim-line {
  width: 100%;
}

.menu-title {
  padding: 0 14px 0;
}

.carousel-hint {
  text-align: center;
  padding: 4px 0 0;
  opacity: 0.85;
  position: relative;
}

.carousel-hint::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.carousel-shell {
  padding: clamp(2px, 0.8dvh, 14px) 0 clamp(1px, 0.5dvh, 8px);
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.carousel {
  overflow: hidden;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  gap: clamp(6px, 1.5dvh, 20px);
  padding: clamp(2px, 1dvh, 16px) 14px 0;
  will-change: auto;
}

.carousel-track.dragging {
  will-change: transform;
  cursor: grabbing;
}

.carousel-segment {
  display: flex;
  gap: clamp(8px, 1.5vh, 16px);
  gap: clamp(8px, 1.5dvh, 16px);
  min-width: max-content;
}

.product-card {
  width: clamp(240px, 72vw, 292px);
  border-radius: 10px;
  border: 1px solid rgba(57, 72, 127, 0.12);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(45, 59, 112, 0.08);
  overflow: hidden;
  flex: 0 0 auto;
}

.card-media {
  position: relative;
  height: clamp(90px, 24dvh, 260px);
  border-radius: 8px;
  overflow: hidden;
  margin: clamp(4px, 1.2dvh, 14px);
  margin-bottom: 0;
  border: 1px solid rgba(73, 93, 162, 0.1);
  background: #eef1fa;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: scale(1.35);
}

.card-media img.img-wolverine {
  transform: scale(1.45);
}

.card-media img.img-glow {
  transform: scale(1.5);
}

.card-media img.img-retatrutide {
  transform: scale(1.45);
}


.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: clamp(4px, 1dvh, 12px) 8px 0;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 4px 8px;
  line-height: 1;
}

.card-tag .vector-host {
  display: flex;
  align-items: center;
}

.card-tag .vector-host svg {
  display: block;
  height: 13px;
}

.card-body {
  padding: clamp(4px, 1.5dvh, 18px);
  display: grid;
  gap: clamp(2px, 0.6dvh, 10px);
}

.price-stack {
  display: grid;
  gap: 1px;
  margin-top: 4px;
}
.price-stack.price-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-stack .vector-host {
  width: fit-content;
}

.price-stack .base {
  opacity: 0.74;
}

.empty-card {
  width: clamp(240px, 72vw, 292px);
  min-height: 260px;
  border-radius: 10px;
  border: 1px dashed rgba(68, 88, 154, 0.3);
  background: #fff;
  margin-left: 14px;
  display: grid;
  place-items: center;
  padding: 16px;
}

.carousel-dots {
  margin-top: clamp(2px, 0.8dvh, 12px);
  display: none;
  justify-content: center;
  gap: 8px;
  min-height: 10px;
  padding-bottom: clamp(4px, 0.8vh, 10px);
  padding-bottom: clamp(4px, 0.8dvh, 10px);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(69, 86, 149, 0.28);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.dot.active {
  background: rgba(55, 75, 146, 0.88);
  transform: scale(1.1);
}

.action-rail {
  position: fixed;
  z-index: 80;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(14px + env(safe-area-inset-bottom));
  width: min(100vw, var(--shell-width));
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 12px;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

body.discount-active .apply-discount-bar {
  display: none;
}
body.discount-active .action-rail {
  display: grid;
}

.action-btn {
  min-height: 48px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  display: grid;
  align-items: center;
  background: #3d53a0;
  box-shadow: 0 2px 6px rgba(39, 55, 109, 0.15);
  padding: 0 14px;
}

.action-btn.active {
  background: #2d3f7a;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(16, 21, 47, 0.58);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 12px;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-card {
  width: min(calc(100vw - 24px), 430px);
  max-height: 90vh;
  max-height: 90dvh;
  overflow: auto;
  border-radius: 10px;
  border: 1px solid rgba(74, 93, 165, 0.12);
  background: #fff;
  box-shadow: 0 4px 20px rgba(17, 25, 55, 0.15);
  padding: clamp(20px, 6vw, 32px) clamp(10px, 3vw, 16px) clamp(10px, 2.5vw, 14px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: sticky;
  top: 0;
  align-self: flex-end;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: rgba(62, 82, 152, 0.1);
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 14px;
  height: 2px;
  background: #304288;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.protocol-sheet {
  display: grid;
  gap: clamp(8px, 2.5vw, 14px);
}

.sheet-logo {
  width: 220px;
  margin: 0 auto 6px;
}

.sheet-title {
  width: 100%;
}

.sheet-cta-btn {
  width: 100%;
  padding: 10px;
  background: #3d53a0;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  max-width: 330px;
  margin: 0 auto;
  display: block;
}

.sheet-cta-btn .vector-host {
  max-width: 160px;
  margin: 0 auto;
}

.sheet-cta-btn:hover {
  background: #2d4490;
}

.sheet-price,
.sheet-disclaimer {
  width: 100%;
}
.sheet-price-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.sheet-price-inline .vector-host {
  width: fit-content;
}

.sheet-bullets {
  display: grid;
  gap: 8px;
}

.lead-wrap {
  display: grid;
  gap: 0;
}

.wizard-progress {
  padding: 0 4px clamp(8px, 2.5vw, 14px);
}

.wizard-step-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.wizard-step-label .step-num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3d53a0;
}

.wizard-step-label .step-total {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #7a89b5;
  margin-left: auto;
}

.wizard-bar-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(64, 82, 152, 0.12);
  overflow: hidden;
}

.wizard-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: #3d53a0;
  transition: width 0.35s ease;
}

.wizard-step-tabs {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 2px;
}

.wizard-step-tab {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #8e9bc4;
  cursor: default;
  text-align: center;
  flex: 1;
  transition: color 0.2s;
}

.wizard-step-tab.active {
  color: #3d53a0;
  font-weight: 600;
}

.wizard-step-tab.completed {
  color: #3d53a0;
}

.wizard-body {
  min-height: 200px;
}

.wizard-step {
  display: none;
  animation: wizFadeIn 0.25s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes wizFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step-heading {
  margin-bottom: 8px;
}

.wizard-products {
  display: grid;
  gap: 4px;
}

.wizard-product-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(64, 80, 143, 0.12);
  border-radius: 8px;
  background: #fff;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.wizard-product-option:hover {
  border-color: rgba(64, 80, 143, 0.24);
  background: #f8f9ff;
}

.wizard-product-option input {
  width: 18px;
  height: 18px;
  accent-color: #3d53a0;
}

.wizard-product-info {
  display: grid;
  gap: 1px;
}

.wizard-disclaimer {
  display: grid;
  gap: 12px;
}

.wizard-disclaimer-items {
  display: grid;
  gap: 6px;
}

.wizard-disclaimer-item {
  padding-left: 4px;
}

.wizard-disclaimer-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  border: 1px solid rgba(64, 80, 143, 0.14);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  margin-top: 4px;
  cursor: pointer;
}

.wizard-disclaimer-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #3d53a0;
}

.wizard-footer-disclaimer {
  max-width: 340px;
  margin: 8px auto 0;
  text-align: center;
}

.wizard-nav {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(64, 80, 143, 0.1);
}

.wizard-btn {
  flex: 1;
  border: 0;
  border-radius: 8px;
  min-height: 42px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.wizard-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wizard-btn-back {
  background: #fff;
  border: 1px solid rgba(64, 82, 152, 0.22);
  color: #3d53a0;
}

.wizard-btn-next {
  background: #3d53a0;
  box-shadow: none;
  color: #f5f9ff;
}

.wizard-btn .vector-host {
  max-width: 80px;
  display: inline-block;
}

.wizard-feedback {
  min-height: 16px;
  margin-top: 4px;
}

.consultant-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.consultant-photo {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: contain;
  border: none;
  box-shadow: none;
}

.feature-tags {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.feature-tag {
  border: 1px solid rgba(63, 82, 150, 0.14);
  border-radius: 6px;
  background: #fff;
  padding: 4px 10px;
  min-width: 0;
}

.lead-form {
  display: grid;
  gap: 4px;
}

.lead-form.contact-form {
  gap: 14px;
}

.field-wrap {
  display: grid;
  gap: 4px;
}

.field-label {
  margin-bottom: 2px;
  max-width: 180px;
}

.contact-method-label {
  max-width: 230px;
}

.field-wrap input {
  width: 100%;
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(64, 81, 146, 0.22);
  background: #fff;
  padding: 0 12px;
  color: #1e2a54;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.field-wrap input::placeholder {
  color: #a0aac0;
}

.field-wrap input:focus {
  border-color: rgba(73, 98, 185, 0.5);
  box-shadow: none;
}

.field-note {
  margin-top: 2px;
  max-width: 140px;
}

.contact-method-group {
  display: grid;
  gap: 5px;
  margin-top: 4px;
}

.contact-method-label {
  margin-bottom: 0;
}

.contact-method-option {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.contact-method-option .vector-host {
  display: inline-block;
  max-width: 85px;
}

.contact-method-option .vector-host svg {
  display: block;
  width: 100%;
  height: auto;
}

.contact-method-option input[type="radio"] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #3d53a0;
}

.wizard-discount-wrap {
  margin: 12px 0 4px;
  padding: 10px 12px;
  background: #f4f6fb;
  border-radius: 8px;
  border: 1px solid #dde1ee;
}

.wizard-discount-label {
  margin-bottom: 6px;
}

.wizard-discount-row {
  display: flex;
  gap: 6px;
  max-width: 280px;
}

.wizard-discount-input {
  flex: 1;
  padding: 0 8px;
  height: 36px;
  min-height: 36px;
  border: 1px solid #c5cce0;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #3d53a0;
  outline: none;
}

.wizard-discount-input::placeholder {
  color: #3d53a0;
  font-weight: 700;
  opacity: 0.7;
}

.wizard-discount-input:focus {
  border-color: #3d53a0;
}

.wizard-discount-apply {
  padding: 0 10px;
  height: 32px;
  min-height: 32px;
  max-width: 56px;
  background: #2FA7B6;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard-discount-apply:hover {
  background: #278f9c;
}

.wizard-discount-status {
  margin-top: 4px;
  text-align: center;
}

.wizard-discount-applied {
  text-align: center;
  padding: 4px 0;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
}

.consent-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.lead-submit {
  border: 0;
  border-radius: 8px;
  min-height: 38px;
  background: #3d53a0;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
}

.form-feedback {
  min-height: 14px;
}

.hide-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vtext,
.vector-host {
  display: block;
  width: 100%;
}

.vtext svg,
.vector-host svg {
  display: block;
  width: 100%;
  height: auto;
}

.thank-you-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(20px, 4vh, 40px) 16px;
  padding: clamp(20px, 4dvh, 40px) 16px;
  gap: clamp(12px, 2vh, 20px);
  gap: clamp(12px, 2dvh, 20px);
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 4px;
}

.thank-you-brand {
  max-width: 260px;
  margin-bottom: 4px;
}

.thank-you-logo {
  width: 100px;
  height: auto;
  margin-bottom: 8px;
  object-fit: contain;
}

.thank-you-disclaimer {
  max-width: 340px;
  margin-top: auto;
  text-align: center;
}

.thank-you-heading {
  max-width: 220px;
}

.thank-you-subtitle {
  max-width: 280px;
}

.thank-you-divider {
  width: 60px;
  height: 1px;
  background: rgba(55, 70, 128, 0.15);
}

.thank-you-message {
  max-width: 300px;
}

.thank-you-btn {
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  background: #3d53a0;
  color: #fff;
  min-height: 44px;
  padding: 0 32px;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
}

.thank-you-btn .vector-host {
  max-width: 160px;
  display: inline-block;
}

body.modal-open {
  overflow: hidden;
}


@media (max-width: 430px) {
  body {
    align-items: stretch;
  }

  .ambient-glow {
    display: none;
  }

  .top-bar {
    width: 100%;
    margin: 0;
  }

  .app-shell {
    width: 100%;
    box-shadow: none;
    border: none;
  }

  .action-rail {
    width: 100%;
    left: 0;
    transform: none;
  }

}

@media (max-width: 374px) {
  .hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  .top-bar {
    padding: 6px 10px;
  }

  .search-area {
    padding-left: 10px;
    padding-right: 10px;
  }

  .carousel-track {
    padding-left: 10px;
    padding-right: 10px;
  }

  .menu-title {
    padding: 0 10px 0;
  }

  .product-card {
    width: clamp(220px, 68vw, 260px);
  }

  .empty-card {
    width: clamp(220px, 68vw, 260px);
  }

  .action-btn {
    min-height: 44px;
  }
}

@media (min-width: 375px) and (max-width: 430px) {
  .product-card {
    width: clamp(240px, 70vw, 280px);
  }

  .empty-card {
    width: clamp(240px, 70vw, 280px);
  }
}

@media (max-width: 759px) and (max-height: 559px) {
  body {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
  }

  .app-shell {
    flex: none;
  }

  .carousel-shell {
    flex: none;
  }
}

@media (min-width: 431px) and (max-width: 759px) {
  .app-shell {
    border: 1px solid var(--line);
    border-top: none;
  }
}

@media (min-width: 760px) {
  :root {
    --shell-width: 100vw;
  }

  body {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 72px;
  }

  body::before {
    background-image: url("images/bg-horizontal.webp");
    background-position: center center;
  }

  .ambient-glow {
    display: none;
  }

  .app-shell {
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    flex: none;
    display: block;
  }

  .carousel-shell {
    flex: none;
    display: block;
  }

  .top-bar {
    width: 100%;
    padding: 10px 48px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .brand-text {
    width: min(280px, 100%);
  }

  .hero {
    padding: 36px 48px 24px;
    text-align: center;
  }

  .hero-heading {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    transform: scale(1.5);
    transform-origin: top center;
    padding-bottom: 24px;
  }

  .apply-discount-bar {
    bottom: 16px;
    width: auto;
  }

  .apply-discount-bar {
    width: 100%;
    max-width: 500px;
    padding: 0;
  }
  .apply-discount-btn {
    background: #3d53a0;
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
  }
  .apply-discount-btn .vector-host {
    max-width: 140px;
  }
  .apply-discount-btn.applied .vector-host {
    max-width: none;
  }

  .hero-cta {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    min-height: 52px;
    margin-top: 16px;
  }

  .hero-cta .vtext svg,
  .hero-cta .vector-host svg {
    transform: scale(1.2);
    transform-origin: center center;
  }

  .cert-line {
    padding-bottom: 6px;
  }

  .search-area {
    padding: 18px 48px;
  }

  .search-area,
  .menu-title {
    padding-left: 48px;
    padding-right: 48px;
  }

  .carousel {
    overflow: visible;
  }

  .carousel-track {
    padding: 16px 48px 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .carousel-segment {
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
    gap: 20px;
    max-width: 1100px;
  }

  .product-card {
    width: 340px;
  }

  .empty-card {
    width: 340px;
  }

  .card-media {
    height: 170px;
  }

  .carousel-dots {
    display: none;
  }

  .action-rail,
  body.discount-active .action-rail {
    display: none;
  }

  body.discount-active .apply-discount-bar {
    display: flex;
  }

  .modal-card {
    width: min(calc(100vw - 48px), 520px);
  }
}

@media (max-width: 759px) and (orientation: landscape) and (max-height: 500px) {
  .hero {
    padding-top: 8px;
    padding-bottom: 6px;
  }

  .hero-heading {
    margin-bottom: 4px;
  }

  .carousel-shell {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .carousel-track {
    padding-top: 4px;
  }

  .card-media {
    height: clamp(80px, 14dvh, 120px);
  }

  .card-body {
    padding: 6px;
  }

  .search-area {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .modal-card {
    max-height: 94vh;
    max-height: 94dvh;
    padding: 14px 12px 10px;
  }

  .wizard-progress {
    padding-bottom: 6px;
  }

  .wizard-products {
    gap: 2px;
  }

  .wizard-product-option {
    padding: 5px 10px;
  }

  .thank-you-screen {
    padding: 12px 16px;
    gap: 8px;
  }

  .thank-you-logo {
    width: 70px;
  }

  body {
    padding-bottom: calc(52px + env(safe-area-inset-bottom));
  }

  .action-btn {
    min-height: 40px;
  }
}

.verify-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.verify-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}
.verify-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  max-width: 360px;
  text-align: center;
}
.verify-lock {
  width: 80px;
  height: 100px;
  position: relative;
}
.lock-svg {
  width: 100%;
  height: 100%;
}
.lock-body-fill {
  transform-origin: center bottom;
  transform: scaleY(0);
  animation: lockFill 2s ease-out forwards;
}
.lock-shackle-fill {
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  animation: shackleDraw 1.8s ease-out forwards;
}
.lock-keyhole, .lock-keyhole-stem {
  opacity: 0;
  animation: keyholeAppear 0.3s ease forwards 1.2s;
}
@keyframes lockFill {
  0% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}
@keyframes shackleDraw {
  0% { stroke-dashoffset: 130; }
  100% { stroke-dashoffset: 0; }
}
@keyframes keyholeAppear {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}
.verify-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1d2d5e;
  line-height: 1.4;
}
.verify-status {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.verify-dots {
  display: flex;
  gap: 6px;
}
.verify-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d53a0;
  animation: dotPulse 1.2s ease-in-out infinite;
}
.verify-dots span:nth-child(2) { animation-delay: 0.2s; }
.verify-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.2); }
}
.verify-check {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: checkPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.verify-check svg {
  width: 48px;
  height: 48px;
}
.verify-check-label {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a7a3a;
}
@keyframes checkPop {
  0% { opacity: 0; transform: scale(0.3); }
  100% { opacity: 1; transform: scale(1); }
}
