/* ============================================================
   Airport Media — Presupuesto Wizard
   presupuesto.css
   ============================================================ */

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

:root {
  --navy:    #0b2540;
  --blue:    #1E519F;
  --orange:  #FE5000;
  --white:   #ffffff;
  --light:   #f3f7fb;
  --muted:   #6b7a8d;
  --border:  #dbe4ee;
  --r-card:  14px;
  --r-pill:  100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--light);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── NAV ──────────────────────────────────────────────────── */
#pres-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(11,37,64,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pres-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
}

.pres-nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.pres-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 6px 0;
}
.pres-nav-back:hover { color: #ffffff; }
.pres-nav-back svg { flex-shrink: 0; }

/* ── HERO STRIP ──────────────────────────────────────────── */
#pres-hero {
  background: var(--navy);
  padding: 100px 32px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#pres-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.pres-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pres-hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.pres-hero-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.pres-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ── MAIN CONTAINER ──────────────────────────────────────── */
#pres-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 24px 120px;
}

/* ── PROGRESS BAR ────────────────────────────────────────── */
.progress-bar-wrap {
  margin-bottom: 40px;
  position: relative;
}

.progress-line-bg {
  position: absolute;
  top: 20px; /* center of the circles */
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: visible;
}

.progress-line-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.3s ease, opacity 0.2s ease;
}

.step-check {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 10px;
}

/* Active step */
.progress-step.active .step-circle {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(254,80,0,0.35);
  transform: scale(1.08);
}
.progress-step.active .step-num { color: var(--white); }

/* Completed step */
.progress-step.completed .step-circle {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.0);
}
.progress-step.completed .step-num { opacity: 0; }
.progress-step.completed .step-check { opacity: 1; }

.step-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  transition: color 0.3s ease;
  line-height: 1.3;
}
.progress-step.active .step-label { color: var(--orange); font-weight: 600; }
.progress-step.completed .step-label { color: var(--navy); }

/* ── STEPS VIEWPORT ──────────────────────────────────────── */
.steps-viewport {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.wizard-step {
  display: none;
  opacity: 0;
}
.wizard-step.active {
  display: block;
  opacity: 1;
}
/* Slide animations handled by GSAP */

/* ── STEP CARD ───────────────────────────────────────────── */
.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 4px 32px rgba(11,37,64,0.08);
  border: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto;
}

.step-card--wide {
  max-width: 100%;
}

.step-header {
  margin-bottom: 36px;
}

.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.step-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.15;
}

.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.req {
  color: var(--orange);
  font-weight: 700;
}

.form-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(254,80,0,0.10);
  background: var(--white);
}

.form-input.has-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236b7a8d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  width: 100%;
  min-height: 100px;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  line-height: 1.6;
}

.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(254,80,0,0.10);
  background: var(--white);
}

.field-error {
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
  min-height: 16px;
  display: block;
}

/* ── RADIO CARDS (Step 2) ────────────────────────────────── */
.radio-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.radio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--light);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  position: relative;
  text-align: center;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}

.radio-card:hover {
  border-color: rgba(254,80,0,0.4);
  background: rgba(254,80,0,0.03);
  transform: translateY(-2px);
}

.radio-card.selected {
  border-color: var(--orange);
  background: rgba(254,80,0,0.06);
  box-shadow: 0 4px 16px rgba(254,80,0,0.15);
}

.rc-icon {
  font-size: 26px;
  line-height: 1;
}

.rc-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.rc-check {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  position: absolute;
  top: -8px;
  right: -8px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.radio-card.selected .rc-check {
  background: var(--orange);
  border-color: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── FORMATS & ZONES GRID (Step 3) ──────────────────────── */
.fz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.fz-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ── CHECKBOX CARDS ──────────────────────────────────────── */
.check-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--light);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.15s ease;
  position: relative;
}

.check-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}

.check-card:hover {
  border-color: rgba(254,80,0,0.4);
  background: rgba(254,80,0,0.02);
}

.check-card.checked {
  border-color: var(--orange);
  background: rgba(254,80,0,0.05);
  box-shadow: 0 2px 12px rgba(254,80,0,0.1);
}

.cc-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.cc-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.check-card.checked .cc-badge { background: var(--orange); }

.cc-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.cc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-sub {
  font-size: 11px;
  color: var(--muted);
}

.cc-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cc-check svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.check-card.checked .cc-check {
  background: var(--orange);
  border-color: var(--orange);
}

.check-card.checked .cc-check svg { opacity: 1; }

/* ── CREATIVITY GRID (Step 4) ────────────────────────────── */
.creativity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.creativity-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── UPLOAD ZONE ─────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 14px;
  background: var(--light);
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--orange);
  background: rgba(254,80,0,0.04);
}

.upload-zone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  text-align: center;
  width: 100%;
}

.upload-text {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.upload-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(30,81,159,0.08);
  border: 1.5px solid rgba(30,81,159,0.2);
  border-radius: var(--r-pill);
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.upload-btn:hover {
  background: rgba(30,81,159,0.14);
  border-color: rgba(30,81,159,0.35);
}

.upload-hint {
  font-size: 11px;
  color: var(--border);
}

/* Upload preview state */
.upload-preview {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.upload-preview img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.upload-preview-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.preview-filename {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preview-remove {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(239,68,68,0.08);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.preview-remove:hover { background: rgba(239,68,68,0.16); }

/* ── SCREEN TYPE SELECTOR ────────────────────────────────── */
.screen-type-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-type-btns {
  display: flex;
  gap: 10px;
}

.screen-type-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 10px 12px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--light);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-family: 'DM Sans', sans-serif;
}

.screen-type-btn:hover {
  border-color: rgba(254,80,0,0.4);
  background: rgba(254,80,0,0.03);
}

.screen-type-btn.active {
  border-color: var(--orange);
  background: rgba(254,80,0,0.06);
  box-shadow: 0 2px 12px rgba(254,80,0,0.12);
}

.stype-thumb {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 46px;
  position: relative;
}

.stype-screen {
  display: block;
  background: var(--navy);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 2px;
}

.stype-portrait {
  width: 16px;
  height: 28px;
}

.stype-landscape {
  width: 42px;
  height: 24px;
}

.stype-sm {
  width: 26px;
  height: 15px;
}

.stype-pole {
  display: block;
  width: 3px;
  height: 14px;
  background: var(--muted);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.stype-base {
  display: block;
  width: 20px;
  height: 4px;
  background: var(--muted);
  border-radius: 2px;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.stype-bracket {
  display: block;
  width: 4px;
  height: 18px;
  background: var(--muted);
  border-radius: 2px;
  position: absolute;
  right: calc(50% - 25px);
  bottom: 0;
}

.stype-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.screen-type-btn.active .stype-label { color: var(--orange); }

/* ── MOCKUP SCENE ────────────────────────────────────────── */
.creativity-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-label {
  display: block;
  margin-bottom: 2px;
}

.mockup-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #071320 0%, #0d2036 30%, #0b2540 60%, #0f2a4a 100%);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

/* Ceiling */
.scene-ceiling {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22%;
  background: linear-gradient(180deg, #060f1a 0%, #0a1c30 100%);
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  padding-top: 6px;
  gap: 0;
}

.ceiling-light {
  width: 14%;
  height: 5px;
  background: rgba(200,230,255,0.85);
  border-radius: 0 0 4px 4px;
  box-shadow:
    0 0 8px 3px rgba(180,220,255,0.4),
    0 0 24px 8px rgba(140,190,255,0.15),
    0 2px 40px 12px rgba(120,170,230,0.08);
}

/* Floor */
.scene-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, #0e2440 0%, #0a1c30 100%);
  overflow: hidden;
}

/* Perspective tile grid on floor */
.scene-floor::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 20px;
  transform: perspective(200px) rotateX(60deg) scaleX(1.5);
  transform-origin: 50% 0%;
  opacity: 0.6;
}

/* Left wall */
.scene-wall--left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 18%;
  background: linear-gradient(90deg, #061220 0%, #0d2036 100%);
}

/* Right wall */
.scene-wall--right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 18%;
  background: linear-gradient(90deg, #0d2036 0%, #061220 100%);
}

/* Ambient glow from ceiling lights */
.scene-ambient {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(120,170,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Screen wrapper — centered in scene */
.screen-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SCREEN RIGS ─────────────────────────────────────────── */
.screen-rig {
  display: none;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.screen-rig.active { display: flex; }

/* --- TOTEM RIG --- */
.screen-rig--totem {
  transform: perspective(900px) rotateY(-8deg);
  margin-top: -30px;
}

.screen-device--totem .screen-bezel {
  background: #151515;
  border-radius: 6px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(0,0,0,0.5),
    0 8px 40px rgba(0,0,0,0.8);
}

.screen-device--totem .screen-face {
  width: 110px;
  aspect-ratio: 9 / 16;
  background: #050505;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.totem-pole {
  width: 8px;
  height: 50px;
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: 0 0 2px 2px;
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.5);
}

.totem-base {
  width: 60px;
  height: 8px;
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* --- HORIZONTAL RIG --- */
.screen-rig--horizontal {
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  margin-top: -20px;
  position: relative;
}

.wall-bracket {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 14px;
  height: 30px;
  background: linear-gradient(90deg, #252525, #1a1a1a);
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 0 6px rgba(0,0,0,0.5);
  z-index: -1;
}

.screen-device--horizontal .screen-bezel {
  background: #151515;
  border-radius: 6px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(0,0,0,0.5),
    0 8px 48px rgba(0,0,0,0.8);
}

.screen-device--horizontal .screen-face {
  width: 260px;
  aspect-ratio: 16 / 9;
  background: #050505;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

/* --- DOBLE RIG --- */
.screen-rig--doble {
  transform: perspective(1200px) rotateY(-5deg);
  margin-top: -20px;
}

.doble-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.screen-device--doble .screen-bezel {
  background: #151515;
  border-radius: 5px;
  padding: 6px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 8px 32px rgba(0,0,0,0.7);
}

.screen-device--doble .screen-face {
  width: 130px;
  aspect-ratio: 16 / 9;
  background: #050505;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.floor-shadow {
  width: 120px;
  height: 12px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  margin-top: 6px;
  filter: blur(4px);
}

.floor-shadow--wide {
  width: 280px;
}

/* ── SCREEN INTERNALS ────────────────────────────────────── */
.screen-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
}

.placeholder-logo {
  max-width: 60%;
  max-height: 35%;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

.placeholder-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.screen-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Scanlines overlay */
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Glass reflection */
.glass-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06) 0%,
    transparent 45%,
    transparent 55%,
    rgba(255,255,255,0.02) 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* Ambient glow behind screen */
.screen-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(100,160,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Glow turns warm when image is loaded */
.screen-rig.has-image .screen-glow {
  background: radial-gradient(ellipse, rgba(254,80,0,0.10) 0%, rgba(100,160,255,0.06) 50%, transparent 70%);
}

/* Scan animation on image load */
@keyframes scanIn {
  0%   { clip-path: inset(0 0 100% 0); opacity: 0.6; }
  80%  { clip-path: inset(0 0 0% 0);   opacity: 1; }
  100% { clip-path: inset(0 0 0% 0);   opacity: 1; }
}

.screen-image.scanning {
  animation: scanIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mockup-note {
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  opacity: 0.8;
  text-align: center;
}

/* ── WIZARD NAV BUTTONS ──────────────────────────────────── */
.wizard-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 -4px 24px rgba(11,37,64,0.08);
}

.wiz-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-counter {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.wiz-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.wiz-btn--back {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.wiz-btn--back:hover {
  background: var(--light);
  color: var(--navy);
  border-color: var(--navy);
}
.wiz-btn--back.hidden {
  opacity: 0;
  pointer-events: none;
}

.wiz-btn--next {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(254,80,0,0.3);
}
.wiz-btn--next:hover {
  background: #e04500;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,80,0,0.4);
}

/* ── SUCCESS SCREEN ──────────────────────────────────────── */
.success-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--light);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.success-screen.visible {
  display: flex;
}

.success-card {
  background: var(--white);
  border-radius: 24px;
  padding: 60px 52px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 72px rgba(11,37,64,0.12);
  border: 1px solid var(--border);
}

.success-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 32px rgba(254,80,0,0.35);
  transform: scale(0);
}

.success-svg {
  width: 80px;
  height: 80px;
}

.success-ring {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
}

.success-path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
}

.success-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.success-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto 36px;
}

.success-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.success-btn:hover {
  background: #e04500;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(254,80,0,0.4);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .fz-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .creativity-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .radio-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 680px) {
  .step-card {
    padding: 28px 24px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-group--full {
    grid-column: auto;
  }

  .radio-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-type-btns {
    gap: 6px;
  }

  .progress-steps {
    gap: 0;
  }

  .step-label {
    font-size: 10px;
  }

  .step-circle {
    width: 32px;
    height: 32px;
  }

  .step-num { font-size: 12px; }

  .progress-line-bg {
    top: 16px;
  }
}

@media (max-width: 480px) {
  #pres-main {
    padding: 28px 16px 110px;
  }

  .pres-nav-inner {
    padding: 0 16px;
  }

  .radio-cards {
    grid-template-columns: 1fr 1fr;
  }

  .step-label {
    display: none;
  }

  .progress-line-bg {
    left: 8%;
    right: 8%;
  }

  .success-card {
    padding: 40px 28px;
  }
}
