/* ===== Variables — azul · morado · aqua ===== */
:root {
  --bg-deep: #040612;
  --text: #eef4ff;
  --text-muted: #9cb4d8;
  --blue: #3b82f6;
  --blue-deep: #2563eb;
  --purple: #8b5cf6;
  --purple-deep: #7c3aed;
  --aqua: #22d3ee;
  --aqua-deep: #06b6d4;
  --indigo: #6366f1;
  --accent: var(--indigo);
  --accent-2: var(--aqua);
  --accent-3: var(--purple);
  --ok: #34d399;
  --radius: 22px;
  --radius-sm: 14px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --header-h: 64px;

  --gradient-primary: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
  --gradient-primary-hover: linear-gradient(135deg, #06b6d4 0%, #4f46e5 50%, #9333ea 100%);
  --gradient-text: linear-gradient(90deg, #ffffff 0%, #67e8f9 45%, #c4b5fd 100%);
  --gradient-price: linear-gradient(90deg, #22d3ee, #818cf8, #c084fc);
  --gradient-bar: linear-gradient(90deg, #06b6d4, #6366f1, #a855f7);

  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-strong: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-border-accent: rgba(34, 211, 238, 0.42);
  --glass-blur: blur(20px);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  --float-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  --glow-aqua: rgba(34, 211, 238, 0.35);
  --glow-purple: rgba(168, 85, 247, 0.3);
  --glow-blue: rgba(99, 102, 241, 0.25);
  --pad-y-section: 20px;
  --pad-y-block: 14px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.5;
  min-height: 100dvh;
  background: var(--bg-deep);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 75% 50% at 10% 15%, rgba(34, 211, 238, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 65% 45% at 90% 12%, rgba(139, 92, 246, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 70% 55% at 50% 95%, rgba(59, 130, 246, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 60%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #060818 0%, #080c1c 35%, #0a0e22 70%, #060818 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

img.img-safe {
  object-fit: cover;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(34, 211, 238, 0.1));
}

button, input, select {
  font: inherit;
  color: inherit;
}

a { color: var(--aqua); }

.hidden { display: none !important; }

/* ===== Glass utility ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--float-shadow);
}

.glass-float {
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.glass-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* ===== Experience Gate ===== */
#experiencia-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(34, 211, 238, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(168, 85, 247, 0.16) 0%, transparent 50%),
    rgba(4, 6, 18, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#experiencia-gate.is-closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.experiencia-gate__card {
  text-align: center;
  max-width: 400px;
  width: 100%;
  padding: 40px 28px 36px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.12) 0%, rgba(34, 211, 238, 0.06) 50%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--float-shadow), 0 0 60px var(--glow-purple);
  animation: gateIn 0.7s ease;
}

@keyframes gateIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.experiencia-gate__logo-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 48px var(--glow-aqua), 0 0 32px var(--glow-purple);
}

.experiencia-gate__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experiencia-gate__title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experiencia-gate__subtitle {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 1rem;
}

.experiencia-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 32px var(--glow-aqua), 0 4px 20px var(--glow-purple);
  transition: transform 0.2s, box-shadow 0.2s;
}

.experiencia-gate__btn:hover {
  transform: translateY(-3px);
  background: var(--gradient-primary-hover);
  box-shadow: 0 14px 40px var(--glow-aqua), 0 8px 28px var(--glow-purple);
}

/* ===== Video Intro Overlay ===== */
#video-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

#video-intro-overlay.hidden { display: none; }

#video-intro {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ===== YouTube wallpaper (cotización) ===== */
.video-wallpaper {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.video-wallpaper.is-active {
  opacity: 1;
  visibility: visible;
}

.video-wallpaper__embed {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-wallpaper__embed iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.video-wallpaper__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(4, 6, 18, 0.82) 0%, rgba(8, 12, 28, 0.62) 45%, rgba(4, 6, 18, 0.88) 100%),
    radial-gradient(ellipse 70% 50% at 15% 10%, rgba(34, 211, 238, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 65% 45% at 85% 85%, rgba(139, 92, 246, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
}

body.has-wallpaper::before {
  opacity: 0.35;
}

@media (prefers-reduced-motion: reduce) {
  .video-wallpaper { display: none !important; }
}

/* ===== App Shell ===== */
#app {
  position: relative;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

#app.is-visible {
  opacity: 1;
  visibility: visible;
  padding-top: 8px;
  padding-bottom: 16px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 16px 0;
  padding: 12px 18px;
  min-height: var(--header-h);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.site-header__brand img {
  height: 36px;
  width: auto;
}

.site-header__controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ctrl-select {
  min-width: 108px;
  padding: 8px 36px 8px 14px;
  font-size: 0.85rem;
  border-radius: 999px;
}

.confirm-locale__select {
  width: 100%;
  padding: 12px 40px 12px 14px;
  font-weight: 600;
}

/* ===== Selects & options — mismo estilo glass de la página ===== */
.field-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background-color: rgba(10, 14, 34, 0.92);
  background-image:
    linear-gradient(135deg, rgba(99, 102, 241, 0.14) 0%, rgba(34, 211, 238, 0.08) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2367e8f9' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 12px center;
  background-size: auto, 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--glass-shadow);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.field-select:hover {
  border-color: rgba(34, 211, 238, 0.35);
  background-color: rgba(14, 20, 45, 0.95);
}

.field-select:focus {
  outline: none;
  border-color: var(--glass-border-accent);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18), var(--glass-shadow);
}

.field-select option {
  background-color: #0a0e22;
  color: var(--text);
  padding: 12px 16px;
  font-weight: 600;
}

.field-select option:checked,
.field-select option:focus,
.field-select option:hover {
  background: linear-gradient(135deg, #1e3a5f 0%, #312e81 50%, #4c1d95 100%);
  color: #e0f2fe;
}

.field-select option:disabled {
  color: var(--text-muted);
  background-color: #070b14;
}

@supports (-webkit-appearance: none) {
  .field-select option {
    background-color: #0d1220;
  }
}

.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 16px 56px;
}

/* ===== Progress ===== */
.wizard-progress {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(34, 211, 238, 0.04) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.wizard-progress__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.wizard-progress__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.wizard-progress__fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--gradient-bar);
  box-shadow: 0 0 16px var(--glow-aqua), 0 0 24px var(--glow-purple);
  transition: width 0.35s ease;
}

/* ===== Live quote totals (all steps) ===== */
.quote-totals {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(99, 102, 241, 0.08) 50%, rgba(168, 85, 247, 0.06) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 211, 238, 0.25);
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.08);
}

.quote-totals__grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .quote-totals__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.quote-totals__section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-totals__section--onetime {
  border-color: rgba(34, 211, 238, 0.22);
}

.quote-totals__section--recurring {
  border-color: rgba(167, 139, 250, 0.22);
}

.quote-totals__section--grand {
  grid-column: 1 / -1;
  border-color: rgba(34, 211, 238, 0.4);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.14) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.quote-totals__section--grand .quote-totals__value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #a5f3fc;
}

.quote-totals__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.quote-totals__section--onetime .quote-totals__label {
  color: #a5f3fc;
}

.quote-totals__section--recurring .quote-totals__label {
  color: #e9d5ff;
}

.quote-totals__value {
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--gradient-price);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.quote-totals__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
}

.quote-totals__recur-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-totals__recur-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 0.92rem;
}

.quote-totals__recur-row span:last-child {
  font-weight: 700;
  color: #e9d5ff;
  white-space: nowrap;
}

.quote-totals__recur-row--empty {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quote-totals__recur-row--empty span:last-child {
  font-weight: 400;
  color: var(--text-muted);
  white-space: normal;
}

.quote-totals__tax-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.price-tax {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.option-card__price--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}

.option-card__period {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.option-card__price-extra {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #a5f3fc;
  line-height: 1.35;
}

.summary-total__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

/* ===== Steps ===== */
.wizard-step {
  display: none;
  animation: stepIn 0.35s ease;
  padding-top: var(--pad-y-section);
  padding-bottom: var(--pad-y-section);
}

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

#website-sections,
#card-sections,
.addon-list,
.pkg-grid,
.summary-layout {
  padding-top: var(--pad-y-block);
  padding-bottom: var(--pad-y-block);
}

.website-choice-hint {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--aqua);
}

.website-choice-bar {
  margin-bottom: 18px;
}

.website-choice-bar__pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-pill {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-align: center;
}

.choice-pill:hover {
  border-color: var(--glass-border-accent);
  transform: translateY(-1px);
}

.choice-pill.is-active {
  border-color: var(--glass-border-accent);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18) 0%, rgba(99, 102, 241, 0.18) 100%);
  box-shadow: 0 0 24px var(--glow-aqua);
  color: #a5f3fc;
}

.website-choice-bar__pills--vertical {
  grid-template-columns: 1fr;
  max-width: 520px;
}

.card-options--vertical {
  grid-template-columns: 1fr;
  max-width: 520px;
}

.option-card__titles {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.option-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #a5f3fc;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16) 0%, rgba(99, 102, 241, 0.14) 100%);
  border: 1px solid rgba(34, 211, 238, 0.28);
}

.demo-grid--vertical {
  grid-template-columns: 1fr;
}

.website-options,
.card-options,
.hosting-options {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.website-options .option-card,
.card-options .option-card,
.hosting-options .option-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.website-options .option-card__body,
.card-options .option-card__body,
.hosting-options .option-card__body {
  flex: 1;
  min-height: 0;
}

.website-options .option-card .btn-select,
.card-options .option-card .btn-select,
.hosting-options .option-card .btn-select {
  margin-top: 20px;
  flex-shrink: 0;
}

@media (max-width: 719px) {
  .website-options.has-selection .option-card:not(.is-selected),
  .card-options.has-selection .option-card:not(.is-selected) {
    display: none;
  }

  .website-options.has-selection .option-card.is-selected,
  .card-options.has-selection .option-card.is-selected {
    animation: websiteOptionIn 0.35s ease;
  }

  .card-options.has-selection .option-card.is-dimmed {
    opacity: 1;
    filter: none;
  }
}

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

.card-options .option-card {
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

.card-options .option-card.is-dimmed {
  opacity: 0.5;
  filter: saturate(0.65) brightness(0.85);
  transform: scale(0.985);
}

.card-options .option-card.is-dimmed:hover {
  opacity: 0.65;
  transform: scale(0.99) translateY(-1px);
}

.card-options .option-card.is-selected {
  border-color: rgba(34, 211, 238, 0.9);
  background: linear-gradient(
    160deg,
    rgba(34, 211, 238, 0.22) 0%,
    rgba(99, 102, 241, 0.2) 45%,
    rgba(168, 85, 247, 0.12) 100%
  );
  box-shadow:
    0 0 20px rgba(34, 211, 238, 0.7),
    0 0 48px rgba(34, 211, 238, 0.45),
    0 0 80px rgba(99, 102, 241, 0.35),
    0 0 120px rgba(167, 139, 250, 0.2),
    0 24px 56px rgba(34, 211, 238, 0.25),
    inset 0 0 28px rgba(34, 211, 238, 0.18);
  transform: translateY(-4px) scale(1.01);
  animation: cardSelectedGlow 2.4s ease-in-out infinite;
}

.card-options .option-card.is-selected .btn-select {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.35), rgba(99, 102, 241, 0.35));
  border-color: rgba(34, 211, 238, 0.75);
  color: #ecfeff;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.card-options .choice-pill.is-active {
  border-color: rgba(34, 211, 238, 0.85);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.28) 0%, rgba(99, 102, 241, 0.24) 100%);
  box-shadow:
    0 0 24px rgba(34, 211, 238, 0.55),
    0 0 48px rgba(99, 102, 241, 0.3);
  color: #ecfeff;
}

@keyframes cardSelectedGlow {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(34, 211, 238, 0.65),
      0 0 48px rgba(34, 211, 238, 0.4),
      0 0 80px rgba(99, 102, 241, 0.3),
      0 0 120px rgba(167, 139, 250, 0.15),
      0 24px 56px rgba(34, 211, 238, 0.22),
      inset 0 0 28px rgba(34, 211, 238, 0.15);
  }
  50% {
    box-shadow:
      0 0 28px rgba(34, 211, 238, 0.85),
      0 0 64px rgba(34, 211, 238, 0.55),
      0 0 100px rgba(99, 102, 241, 0.45),
      0 0 140px rgba(167, 139, 250, 0.28),
      0 28px 64px rgba(34, 211, 238, 0.32),
      inset 0 0 36px rgba(34, 211, 238, 0.22);
  }
}

.hosting-own-bar {
  margin-bottom: 18px;
}

.hosting-explainer {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.hosting-explainer__item {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.hosting-explainer__label {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e9d5ff;
}

.hosting-explainer__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.hosting-explainer .notice-box {
  margin: 0;
}

.hosting-plan-hint {
  margin-top: 20px;
}

.hosting-own-note {
  margin-bottom: 16px;
}

.hosting-cards-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
  font-size: 0.92rem;
}

.hosting-cards-note strong {
  color: #a5f3fc;
}

.recurring-block {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(99, 102, 241, 0.08) 100%);
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.recurring-block__title {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #e9d5ff;
}

.recurring-block__desc {
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.recurring-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recurring-block__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.recurring-block__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recurring-block__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.recurring-block__label {
  font-weight: 600;
}

.recurring-block__note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.recurring-block__price {
  font-weight: 700;
  white-space: nowrap;
  color: #a5f3fc;
}

#summary-recurring .recurring-block {
  margin-top: 18px;
  margin-bottom: 0;
}

.order-review .recurring-block {
  margin-top: 0;
}

@media (min-width: 720px) {
  .website-options {
    grid-template-columns: 1fr 1fr;
  }

  .hosting-options {
    grid-template-columns: 1fr 1fr;
  }

  .website-choice-bar__pills--vertical {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .card-options--vertical {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
}

.includes-block {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.18);
}

.includes-block__title {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--aqua);
}

.includes-block__list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.includes-block__list li {
  margin-bottom: 6px;
}

.includes-block__list li:last-child {
  margin-bottom: 0;
}

#summary-includes .includes-block {
  margin-top: 16px;
  margin-bottom: 8px;
}

.funnel-option__visual {
  margin: 14px 0 4px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: rgba(15, 23, 42, 0.45);
}

.funnel-option__img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.step-head {
  margin-bottom: 24px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.06) 50%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.step-head h1 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  line-height: 1.2;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== Paso 1 — confirmar locale ===== */
.locale-auto-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #a5f3fc;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.14) 0%, rgba(99, 102, 241, 0.12) 100%);
  border: 1px solid rgba(34, 211, 238, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.confirm-locale {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  padding-top: var(--pad-y-block);
  padding-bottom: var(--pad-y-block);
}

@media (min-width: 520px) {
  .confirm-locale { grid-template-columns: 1fr 1fr; }
}

.confirm-locale__card {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.05) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.confirm-locale__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.confirm-locale__hint {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== Cards & Options ===== */
.option-grid {
  display: grid;
  gap: 16px;
}

.option-card {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.08) 0%, rgba(34, 211, 238, 0.04) 50%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--float-shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.option-card:hover {
  transform: translateY(-3px);
}

.option-card.is-selected {
  border-color: var(--glass-border-accent);
  box-shadow:
    0 24px 64px var(--glow-blue),
    0 0 40px var(--glow-aqua),
    0 0 0 1px rgba(34, 211, 238, 0.3) inset;
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.16) 0%, rgba(34, 211, 238, 0.08) 50%, rgba(168, 85, 247, 0.06) 100%);
}

.option-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.option-card__head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.option-card__price {
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--gradient-price);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.option-card__desc {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.btn-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-select:hover {
  border-color: var(--glass-border-accent);
  transform: translateY(-1px);
}

.option-card.is-selected .btn-select {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(99, 102, 241, 0.2));
  border-color: var(--glass-border-accent);
  color: #a5f3fc;
}

/* ===== Demo Gallery ===== */
.demo-category {
  margin-bottom: 28px;
  padding-top: var(--pad-y-block);
  padding-bottom: var(--pad-y-block);
}

.demo-category__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 14px;
}

.demo-category__head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.demo-category__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  flex: 1 1 200px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.demo-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.demo-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--glass-border-accent);
  box-shadow: 0 20px 48px var(--glow-aqua), 0 8px 32px var(--glow-purple);
}

.demo-card__img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.demo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-card__body {
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.12));
}

.demo-card__name {
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-weight: 600;
}

.demo-card__link {
  font-size: 0.78rem;
  color: var(--aqua);
}

/* ===== Add-ons ===== */
.addon-list { display: grid; gap: 12px; }

.addon-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.addon-item:hover { transform: translateY(-2px); }

.addon-item:has(input:checked) {
  border-color: var(--glass-border-accent);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12) 0%, rgba(139, 92, 246, 0.1) 100%);
  box-shadow: 0 12px 40px var(--glow-aqua);
}

.addon-item input {
  margin-top: 4px;
  accent-color: var(--aqua);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.addon-item__content { flex: 1; }

.addon-item__content h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.addon-item__content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.addon-item__price {
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.92rem;
  background: var(--gradient-price);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.notice-box {
  margin-top: 20px;
  margin-bottom: 8px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(168, 85, 247, 0.04) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 85, 247, 0.28);
  color: #e9d5ff;
  box-shadow: var(--glass-shadow);
}

.notice-box--info {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12) 0%, rgba(59, 130, 246, 0.06) 100%);
  border-color: rgba(34, 211, 238, 0.28);
  color: #a5f3fc;
}

/* ===== Order review & volume discounts ===== */
.order-review {
  display: grid;
  gap: 20px;
}

.discount-ladder {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(99, 102, 241, 0.1) 50%, rgba(34, 211, 238, 0.08) 100%);
  border: 1px solid rgba(167, 139, 250, 0.28);
}

.discount-ladder__title {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #e9d5ff;
}

.discount-ladder__steps {
  display: grid;
  gap: 10px;
}

@media (min-width: 640px) {
  .discount-ladder__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.discount-ladder__step {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.72;
  transition: opacity 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.discount-ladder__step.is-unlocked {
  opacity: 1;
}

.discount-ladder__step.is-current {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.14) 0%, rgba(99, 102, 241, 0.12) 100%);
}

.discount-ladder__step-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.discount-ladder__step-name {
  font-weight: 700;
  font-size: 0.92rem;
}

.discount-ladder__step-pct {
  font-weight: 800;
  color: #a5f3fc;
  white-space: nowrap;
}

.discount-ladder__step-hint {
  margin: 0 0 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.discount-ladder__step-badge {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #ecfeff;
  background: rgba(34, 211, 238, 0.18);
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.discount-ladder__step-badge--locked {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.upsell-card__value {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #a5f3fc;
}

.order-review__box {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.09) 0%, rgba(34, 211, 238, 0.04) 50%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--float-shadow);
}

.order-review__heading {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--aqua);
}

.order-review__items {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-review__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.order-review__item:last-child {
  border-bottom: none;
}

.order-review__item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.order-review__remove {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.1);
  color: #fecaca;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.order-review__remove:hover {
  background: rgba(248, 113, 113, 0.18);
  border-color: rgba(248, 113, 113, 0.55);
  transform: translateY(-1px);
}

.order-review__item-name {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}

.order-review__item-price {
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

.order-review__empty {
  padding: 8px 0 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.order-review__totals {
  display: grid;
  gap: 10px;
}

.order-review__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.order-review__row--muted {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.order-review__row--discount {
  color: #a5f3fc;
  font-weight: 600;
}

.order-review__row--hosting {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.order-review__row--total {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(34, 211, 238, 0.22);
  font-size: 1.15rem;
  font-weight: 800;
}

.order-review__row--total span:last-child {
  background: var(--gradient-price);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.order-review__save-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
}

.order-review__upsells {
  padding: 20px 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(99, 102, 241, 0.08) 100%);
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.order-review__upsells--success {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  border-color: rgba(34, 211, 238, 0.28);
  color: #a5f3fc;
  font-weight: 600;
}

.order-review__upsells-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.order-review__upsells-hint {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.upsell-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin-top: 10px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.upsell-card__text {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.upsell-card__btn {
  flex: none;
  flex-shrink: 0;
  width: 100%;
  min-width: 0;
  margin-top: 4px;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  padding: 12px 16px;
}

/* ===== Packages (legacy cards) ===== */
.pkg-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .pkg-grid { grid-template-columns: 1fr 1fr; }
}

.pkg-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.09) 0%, rgba(34, 211, 238, 0.04) 50%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--float-shadow);
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.pkg-card:hover { transform: translateY(-4px); }

.pkg-card.is-selected {
  border-color: var(--glass-border-accent);
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.14) 0%, rgba(99, 102, 241, 0.12) 50%, rgba(168, 85, 247, 0.08) 100%);
  box-shadow: 0 24px 56px var(--glow-aqua), 0 12px 40px var(--glow-purple);
}

.pkg-card.is-popular {
  border-color: rgba(34, 211, 238, 0.35);
}

.pkg-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 16px var(--glow-aqua);
}

.pkg-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  padding-right: 80px;
}

.pkg-card p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.pkg-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  background: var(--gradient-price);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pkg-card__save {
  font-size: 0.82rem;
  color: var(--ok);
  margin-top: 4px;
}

/* ===== Summary ===== */
.summary-layout {
  display: grid;
  gap: 20px;
}

@media (min-width: 720px) {
  .summary-layout { grid-template-columns: 1fr 1fr; }
}

.summary-box {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.05) 50%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--float-shadow);
}

.summary-box h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.summary-lines {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.summary-lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.summary-lines li:last-child { border-bottom: none; }

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.15rem;
  font-weight: 800;
}

.summary-total span:last-child {
  background: var(--gradient-price);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 719px) {
  .summary-layout {
    gap: 14px;
  }

  .summary-box {
    padding: 18px 16px;
  }

  .summary-box h3 {
    font-size: 0.95rem;
  }

  .summary-lines li {
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 12px 0;
    font-size: 0.85rem;
  }

  .summary-lines li span:first-child {
    flex: 1 1 100%;
    line-height: 1.4;
  }

  .summary-lines li span:last-child {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
  }

  .summary-total {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    font-size: 1rem;
  }

  .summary-total > span:first-child {
    line-height: 1.35;
  }

  .summary-total__amount {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 6px;
    font-size: 1.3rem;
  }

  .summary-total span:last-child {
    -webkit-text-fill-color: unset;
    background: none;
    color: #a5f3fc;
  }

  #summary-recurring .recurring-block {
    padding: 14px;
  }

  .form-grid {
    gap: 10px;
  }

  .btn-whatsapp {
    font-size: 0.95rem;
    padding: 14px 16px;
    line-height: 1.35;
    white-space: normal;
  }

  .btn-whatsapp svg {
    flex-shrink: 0;
  }
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-field input:focus {
  outline: none;
  border-color: var(--glass-border-accent);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}

/* ===== Nav Buttons ===== */
.wizard-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn:active { transform: scale(0.98); }

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

.btn-primary {
  flex: 1;
  min-width: 140px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--gradient-primary);
  box-shadow: 0 8px 28px var(--glow-aqua), 0 4px 20px var(--glow-purple);
}

.btn-primary:hover {
  background: var(--gradient-primary-hover);
  box-shadow: 0 12px 36px var(--glow-aqua), 0 8px 28px var(--glow-purple);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text);
}

.btn-whatsapp {
  width: 100%;
  font-size: 1rem;
  padding: 16px;
  margin-top: 16px;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-whatsapp:hover {
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.form-hint {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.site-footer {
  text-align: center;
  margin: 0 16px 24px;
  padding: 28px 20px 36px;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, rgba(34, 211, 238, 0.03) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.site-footer__hub a {
  color: var(--aqua);
  text-decoration: none;
}

.site-footer__hub a:hover {
  text-decoration: underline;
}

.site-footer img {
  height: 28px;
  margin: 12px auto 0;
  opacity: 0.85;
}

.error-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  z-index: 2000;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  max-width: calc(100% - 32px);
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(67, 56, 202, 0.95));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 181, 253, 0.25);
  color: #ede9fe;
  box-shadow: var(--float-shadow);
}

.error-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 480px) {
  .site-header {
    top: 8px;
    margin: 8px 12px 0;
  }

  .experiencia-gate__logo-wrap {
    width: 96px;
    height: 96px;
  }

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

  .addon-item {
    flex-wrap: wrap;
  }

  .addon-item__price {
    width: 100%;
    padding-left: 32px;
  }
}

@media (max-width: 360px) {
  .demo-grid { grid-template-columns: 1fr; }
}
