/* ============================================================
   PRESTAMO-URGENTE.CSS — Nordic Consultores
   Prefijo: .pu-
   ============================================================ */

:root {
  --pu-gold:      #9B8355;
  --pu-gold-l:    #C4A96D;
  --pu-navy:      #0B1D2E;
  --pu-core:      #162844;
  --pu-mid:       #2A4A6B;
  --pu-blue:      #3E6690;
  --pu-ice:       #F0F4F8;
  --pu-line:      #D9E2EC;
  --pu-text:      #2C2F36;
  --pu-muted:     #6B7280;
  --pu-muted-b:   #7EA3CB;
  --pu-t:         0.2s ease;
}

/* ── Container ──────────────────────────────────────────────── */
.pu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

/* ── Label ──────────────────────────────────────────────────── */
.pu-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pu-gold);
  display: block;
  margin-bottom: 20px;
}
.pu-label--navy { color: var(--pu-core); }

/* ── H2 ─────────────────────────────────────────────────────── */
.pu-h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 20px;
}
.pu-h2--white { color: #fff; }
.pu-h2--navy  { color: var(--pu-navy); font-weight: 300; }

/* ── Reveal ─────────────────────────────────────────────────── */
.pu-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.pu-reveal.is-visible { opacity: 1; transform: none; }

/* ================================================================
   S01 — HERO
   ================================================================ */
.pu-hero {
  position: relative;
  min-height: 100vh;
  background: var(--pu-navy);
  display: flex;
  flex-direction: column;
}

.pu-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../Assets/images-videos/hero/heroe-edificio-cielo.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.pu-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 46, 0.60);
  z-index: 1;
}

.pu-hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(80px, 8vh, 108px) clamp(24px, 6vw, 80px) 40px clamp(16px, 3vw, 40px);
}

/* Left column */
.pu-hero__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pu-hero__rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--pu-gold);
  flex-shrink: 0;
}

.pu-hero__eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pu-gold);
}

.pu-hero__h1 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 4.8vw, 66px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.pu-hero__tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--pu-gold-l);
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: -0.003em;
}

.pu-hero__p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.68;
  max-width: 500px;
  margin: 0 0 20px;
}

.pu-hero__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pu-hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.92);
}

.pu-diamond {
  color: var(--pu-gold-l);
  font-size: 8px;
  flex-shrink: 0;
}

/* Right column — form */
.pu-hero__form-col {
  position: sticky;
  top: 100px;
}

.pu-hero__form-wrap {
  background: rgba(255, 255, 255, 0.97);
  padding: 28px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.20);
}

.pu-form__title {
  font-family: 'Jost', sans-serif;
  font-weight: 450;
  font-size: 20px;
  color: var(--pu-navy);
  margin: 0 0 6px;
}

.pu-form__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pu-muted-b);
  margin: 0 0 20px;
}

.pu-form__divider {
  height: 1px;
  background: var(--pu-ice);
  margin-bottom: 24px;
}

.pu-form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 11px;
}

.pu-form__label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--pu-gold);
  margin-bottom: 6px;
}

.pu-form__input,
.pu-form__select {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--pu-text);
  background: #fff;
  border: 1px solid var(--pu-line);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--pu-t);
  appearance: none;
  -webkit-appearance: none;
}
.pu-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%239B8355' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.pu-form__input::placeholder { color: #bbb; }
.pu-form__input:focus,
.pu-form__select:focus { border-color: var(--pu-gold); }

.pu-form__check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12.5px;
  color: var(--pu-muted);
  cursor: pointer;
  line-height: 1.5;
}
.pu-form__check input { margin-top: 2px; flex-shrink: 0; }
.pu-form__check a { color: var(--pu-gold); text-decoration: none; }
.pu-form__check a:hover { text-decoration: underline; }

.pu-form__submit {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  background: var(--pu-gold);
  border: none;
  padding: 16px;
  cursor: pointer;
  transition: background var(--pu-t);
}
.pu-form__submit:hover { background: #8B7348; }

.pu-form__note {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--pu-muted-b);
  text-align: center;
  margin: 12px 0 0;
  letter-spacing: 0.02em;
}

/* Form error */
.pu-form-error {
  color: #DC2626;
  font-size: 0.75rem;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* Strip */
.pu-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--pu-gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--pu-navy);
}

.pu-strip__item {
  padding: 22px clamp(12px, 1.5vw, 24px);
  text-align: center;
  border-right: 1px solid rgba(155, 131, 85, 0.20);
}
.pu-strip__item:last-child { border-right: none; }

.pu-strip__num {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 20px;
  color: var(--pu-gold-l);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.pu-strip__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
}

/* ================================================================
   S02 — SITUACIONES
   ================================================================ */
.pu-s02 {
  background: #fff;
  padding: 100px 0;
}

.pu-s02__header {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.pu-s02__intro {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--pu-blue);
  line-height: 1.72;
  max-width: 580px;
  margin: 0 auto;
}

.pu-s02__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pu-s02__card {
  padding: 36px;
  border-top: 3px solid var(--pu-core);
  transition: border-color var(--pu-t), box-shadow var(--pu-t);
}
.pu-s02__card:hover {
  border-top-color: var(--pu-gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pu-s02__num {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 48px;
  color: var(--pu-line);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  letter-spacing: -0.02em;
}

.pu-s02__h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--pu-navy);
  line-height: 1.25;
  margin: 0 0 16px;
}

.pu-s02__p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--pu-blue);
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   S02B — PARA QUÉ SE USA
   ================================================================ */
.pu-s02b {
  position: relative;
  background-image: url('../Assets/images-videos/hero/hero-prestamo-mobile1.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
.pu-s02b::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 40, 68, 0.88);
  z-index: 0;
}
.pu-s02b > * {
  position: relative;
  z-index: 1;
}

.pu-s02b .pu-label { color: var(--pu-gold); }

.pu-s02b__h2 { color: #fff; }

.pu-s02b__header {
  margin-bottom: 36px;
}

/* Two-column layout */
.pu-s02b__cols {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 32px;
  align-items: center;
}

/* Left — items grid */
.pu-s02b__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pu-s02b__item {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(155, 131, 85, 0.40);
  padding: 18px 20px;
  line-height: 1.4;
  transition: background var(--pu-t), border-color var(--pu-t);
}
.pu-s02b__item:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--pu-gold);
}

/* Right — solution panel */
.pu-s02b__panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(155, 131, 85, 0.50);
  padding: 40px;
}

.pu-s02b__eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pu-gold-l);
  display: block;
  margin-bottom: 16px;
}

.pu-s02b__panel-h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 24px;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 28px;
}

.pu-s02b__panel-list {
  list-style: none;
  margin: 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pu-s02b__panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.pu-s02b__diamond {
  color: var(--pu-gold-l);
  font-size: 8px;
  flex-shrink: 0;
}

.pu-s02b__btn {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  background: var(--pu-gold);
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  transition: background var(--pu-t);
  margin-top: 32px;
}
.pu-s02b__btn:hover { background: #8B7348; }

/* Arrow bounce */
.pu-s02b__arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  gap: 6px;
}

.pu-s02b__arrow {
  width: 24px;
  height: 24px;
  color: var(--pu-gold-l);
  animation: pu-bounce 1.5s ease infinite;
}

@keyframes pu-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.pu-s02b__arrow-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.50);
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .pu-s02b__cols {
    grid-template-columns: 1fr;
  }
  .pu-s02b__panel { padding: 32px; }
}

/* ================================================================
   S03 — PROCESO
   ================================================================ */
.pu-s03 {
  background: var(--pu-ice);
  padding: 100px 0;
}

.pu-s03__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.pu-s03__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  margin-bottom: 52px;
}

.pu-s03__steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--pu-gold-l);
  opacity: 0.55;
  z-index: 0;
}

.pu-s03__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.pu-s03__circle {
  width: 52px;
  height: 52px;
  background: var(--pu-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.pu-s03__icon {
  width: 24px;
  height: 24px;
  color: var(--pu-core);
  margin-bottom: 16px;
  opacity: 0.70;
}

.pu-s03__step-h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--pu-navy);
  margin: 0 0 12px;
  line-height: 1.25;
}

.pu-s03__step-p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--pu-blue);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}

.pu-s03__cta-wrap {
  text-align: center;
}

.pu-s03__cta {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--pu-core);
  border: 1px solid var(--pu-core);
  padding: 14px 40px;
  text-decoration: none;
  transition: background var(--pu-t), color var(--pu-t);
  cursor: pointer;
  background: none;
}
.pu-s03__cta:hover {
  background: var(--pu-core);
  color: #fff;
}

/* ================================================================
   S04 — POR QUÉ NORDIC
   ================================================================ */
.pu-s04 {
  background: var(--pu-core);
  padding: 100px 0;
}

.pu-s04__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.pu-s04__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pu-s04__col {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
}

.pu-s04__eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pu-gold-l);
  display: block;
  margin-bottom: 12px;
}

.pu-s04__h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 16px;
}

.pu-s04__p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   S05 — FAQ
   ================================================================ */
.pu-s05 {
  background: #fff;
  padding: 100px 0;
}

.pu-s05__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.pu-s05__list {
  max-width: 760px;
  margin: 0 auto;
}

.pu-s05__item {
  border-bottom: 1px solid var(--pu-line);
}
.pu-s05__item:first-child { border-top: 1px solid var(--pu-line); }

.pu-s05__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--pu-navy);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.pu-s05__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--pu-gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--pu-t);
  font-family: 'Jost', sans-serif;
}
.pu-s05__item.is-open .pu-s05__icon { transform: rotate(45deg); }

.pu-s05__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.pu-s05__item.is-open .pu-s05__body { max-height: 300px; }

.pu-s05__a {
  padding-bottom: 20px;
}
.pu-s05__a p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--pu-blue);
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   S06 — FORMULARIO FINAL
   ================================================================ */
.pu-s06 {
  background: var(--pu-navy);
  padding: 100px 0;
}

.pu-s06__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.pu-s06__h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(34px, 4vw, 48px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.pu-s06__p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.72;
  margin: 0;
}

.pu-s06__form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px;
}

.pu-s06__grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.pu-s06__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.pu-s06__grid-2 .pu-s06__field { margin-bottom: 0; }

.pu-s06__label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 6px;
}

.pu-s06__optional {
  font-weight: 300;
  opacity: 0.7;
  font-size: 9px;
}

.pu-s06__input,
.pu-s06__select,
.pu-s06__textarea {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--pu-t);
  appearance: none;
  -webkit-appearance: none;
}
.pu-s06__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='rgba(155,131,85,0.7)' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.pu-s06__select option { background: var(--pu-core); color: #fff; }
.pu-s06__input::placeholder,
.pu-s06__textarea::placeholder { color: rgba(255, 255, 255, 0.30); }
.pu-s06__input:focus,
.pu-s06__select:focus,
.pu-s06__textarea:focus { border-color: var(--pu-gold); }
.pu-s06__textarea { resize: vertical; }

.pu-s06__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.70);
  cursor: pointer;
  line-height: 1.5;
}
.pu-s06__check input { margin-top: 3px; flex-shrink: 0; }
.pu-s06__check a { color: var(--pu-gold-l); text-decoration: none; }
.pu-s06__check a:hover { text-decoration: underline; }

.pu-s06__submit {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  background: var(--pu-gold);
  border: none;
  padding: 18px;
  cursor: pointer;
  transition: background var(--pu-t);
}
.pu-s06__submit:hover { background: #8B7348; }

.pu-s06__note {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin: 16px 0 0;
  letter-spacing: 0.04em;
}

.pu-s06-error {
  color: #DC2626;
  font-size: 0.75rem;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .pu-s04__cols {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pu-s02,
  .pu-s03,
  .pu-s04,
  .pu-s05,
  .pu-s06 { padding: 60px 0; }

  .pu-hero__bg {
    background-image: url('../Assets/images-videos/hero/hero-prestamo-mobile.jpg');
  }

  /* Hero stack */
  .pu-hero__body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 110px;
  }
  .pu-hero__form-col { position: static; }

  /* Strip scroll */
  .pu-strip {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  }

  /* S02 cards */
  .pu-s02__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* S03 steps vertical */
  .pu-s03__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pu-s03__steps::before { display: none; }
  .pu-s03__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0 0 32px;
  }
  /* Gold vertical line between mobile steps */
  .pu-s03__step:not(:last-child)::after {
    content: none;
  }
  .pu-s03__step {
    position: relative;
  }
  .pu-s03__step:not(:last-child) .pu-s03__circle::after {
    content: '';
    position: absolute;
    left: 26px;
    top: 52px;
    width: 1px;
    height: calc(100% - 52px + 32px);
    background: var(--pu-gold);
    opacity: 0.30;
  }
  .pu-s03__icon { display: none; }
  .pu-s03__circle { flex-shrink: 0; margin-bottom: 0; }
  .pu-s03__step-p { max-width: none; margin: 0; }

  /* S06 form */
  .pu-s06__grid-2 { grid-template-columns: 1fr; }
  .pu-s06__form-wrap { padding: 32px clamp(20px, 5vw, 40px); }
}

@media (max-width: 480px) {
  .pu-hero__h1 { font-size: 32px; font-weight: 300; }
  .pu-hero__tagline { font-weight: 500; }
  .pu-hero__p { font-size: 14px; }
  .pu-hero__form-wrap { padding: 28px 24px; }
}
