/* v2 */
/* ─── HERO FORM CARD ─── */
    .hero-form-wrap { position: relative; z-index: 2; }

    .form-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 18px;
      padding: 36px 32px;
      box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(249,115,22,.08);
    }
    @supports (backdrop-filter: blur(8px)) {
      @media (min-width: 769px) {
        .form-card { background: rgba(255,255,255,.04); backdrop-filter: blur(8px); }
      }
    }

    .form-card-header {
      margin-bottom: 28px;
    }
    .form-card-header h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 1.7rem;
      text-transform: uppercase;
      letter-spacing: .02em;
      margin-bottom: 6px;
    }
    .form-card-header p { font-size: .9rem; color: rgba(255,255,255,.55); }

    /* ─── Custom Quote Form ─── */
    #quoteForm { width: 100%; }
    .cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
    .cfield { margin-bottom: 12px; }
    .cform-row .cfield { margin-bottom: 0; }
    .cfield input,
    .cfield select,
    .cfield textarea {
      width: 100%;
      background: rgba(255,255,255,.07);
      border: 1.5px solid rgba(255,255,255,.14);
      border-radius: 10px;
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      padding: 14px 16px;
      box-sizing: border-box;
      outline: none;
      transition: border-color .2s, background .2s;
      appearance: none;
    }
    .cfield input::placeholder,
    .cfield textarea::placeholder { color: rgba(255,255,255,.38); }
    .cfield select { color: rgba(255,255,255,.38); cursor: pointer; }
    .cfield select.filled { color: var(--white); }
    .cfield select option { background: var(--navy2); color: var(--white); }
    .cfield textarea { resize: vertical; min-height: 85px; }
    .cfield input:focus,
    .cfield select:focus,
    .cfield textarea:focus {
      border-color: var(--orange);
      background: rgba(249,115,22,.06);
    }
    .cform-error { color: #ff6b6b; font-size: .82rem; margin-bottom: 8px; min-height: 18px; }
    .btn-submit {
      width: 100%;
      background: var(--orange);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 16px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      margin-top: 4px;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      transition: background .2s, transform .15s;
    }
    .btn-submit:hover:not(:disabled) { background: var(--orange2); transform: translateY(-2px); }
    .btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
    .form-note { text-align: center; font-size: .78rem; color: rgba(255,255,255,.3); margin-top: 12px; }
    .form-success {
      text-align: center; padding: 24px 0;
      display: none;
    }
    .form-success h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; color: var(--orange); margin-bottom: 8px; }
    .form-success p { color: rgba(255,255,255,.65); font-size: .95rem; }
    @media (max-width: 600px) {
      .cform-row { grid-template-columns: 1fr; }
    }

    /* ─── CLIENTS BANNER ─── */
    .clients-banner {
      background: #1a3a7a;
      padding: 0;
      width: 100%;
    }
    .clients-banner-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      max-width: 100%;
    }
    .client-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 32px 48px;
      border-right: 1px solid rgba(255,255,255,.1);
      transition: background .2s;
    }
    .client-item:last-child { border-right: none; }
    .client-item:hover { background: rgba(255,255,255,.05); }
    .client-item-icon {
      flex-shrink: 0;
      width: 52px; height: 52px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      opacity: .9;
    }
    .client-item-icon svg { width: 40px; height: 40px; }
    .client-item-text h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1.25rem;
      text-transform: uppercase; letter-spacing: .03em;
      color: #fff; margin-bottom: 4px;
    }
    .client-item-text p {
      font-size: .85rem;
      color: rgba(255,255,255,.65);
    }
    @media (max-width: 900px) {
      .clients-banner-inner { grid-template-columns: 1fr; }
      .client-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 24px 28px; }
      .client-item:last-child { border-bottom: none; }
    }

    /* ─── LOGOS STRIP ─── */
    .logos-strip {
      background: rgba(255,255,255,.03);
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: 36px 0;
    }
    .logos-inner {
      max-width: 1100px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }
    .logos-label {
      font-size: 1.05rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .12em;
      color: var(--accent);
      white-space: nowrap;
    }
    .logos-list {
      display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    }
    .logo-badge {
      display: flex; align-items: center; justify-content: center;
      background: #fff;
      border-radius: 8px;
      padding: 8px 16px;
      height: 72px;
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }
    .logo-badge:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
    .logo-badge img { height: 56px; width: auto; object-fit: contain; display: block; transform: scale(1.45); }

    /* ─── STATS ─── */
    .stats-section { padding: 80px 0; }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px;
      overflow: hidden;
    }
    .stat-card {
      background: var(--navy);
      padding: 40px 32px;
      text-align: center;
      transition: background .2s;
    }
    .stat-card:hover { background: var(--navy2); }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 3.2rem;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: .9rem;
      color: rgba(255,255,255,.55);
      line-height: 1.4;
    }

    /* ─── HOW IT WORKS ─── */
    .how-section { padding: 80px 0; }
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-header h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: clamp(2rem, 4vw, 3rem);
      text-transform: uppercase; letter-spacing: .02em;
      margin-bottom: 12px; margin-top: 12px;
    }
    .section-header p { color: rgba(255,255,255,.55); font-size: 1rem; max-width: 500px; margin: 0 auto; }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .step-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px;
      padding: 36px 28px;
      position: relative;
      transition: border-color .3s, background .3s;
    }
    .step-card:hover {
      border-color: rgba(249,115,22,.3);
      background: rgba(249,115,22,.04);
    }
    .step-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 4rem;
      color: rgba(249,115,22,.15);
      line-height: 1;
      margin-bottom: 16px;
    }
    .step-icon {
      width: 48px; height: 48px;
      background: rgba(249,115,22,.12);
      border: 1px solid rgba(249,115,22,.25);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      color: var(--orange);
    }
    .step-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1.3rem;
      text-transform: uppercase; letter-spacing: .03em;
      margin-bottom: 10px;
    }
    .step-card p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.6; }

    /* ─── PRODUCTS ─── */
    .products-section { padding: 80px 0; }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .product-card {
      background: var(--navy2);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 14px;
      padding: 28px 24px;
      display: flex; gap: 20px; align-items: flex-start;
      transition: border-color .25s, transform .2s;
      cursor: default;
    }
    .product-card:hover {
      border-color: rgba(249,115,22,.25);
      transform: translateY(-3px);
    }
    .product-icon {
      width: 52px; height: 52px; flex-shrink: 0;
      background: rgba(249,115,22,.1);
      border: 1px solid rgba(249,115,22,.2);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange);
    }
    .product-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1.2rem;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .product-card p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.5; }

    /* ─── ESPECIALIDADES ─── */
    .esp-section { padding: 0 0 80px; }
    .esp-header { text-align: center; margin-bottom: 48px; padding-top: 0; }
    .esp-proof {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: -40px;
      margin-bottom: 60px;
    }
    .esp-proof-img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid rgba(249,115,22,.4);
      box-shadow: 0 4px 18px rgba(0,0,0,.5);
    }
    .esp-header .esp-sub {
      font-size: .85rem; font-weight: 500;
      color: rgba(255,255,255,.45);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .esp-header h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      text-transform: uppercase;
      letter-spacing: .02em;
      color: #fff;
      margin-top: 8px;
    }
    .esp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .esp-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      height: 220px;
      display: flex;
      align-items: flex-end;
      box-shadow: 0 4px 20px rgba(0,0,0,.35);
      transition: transform .25s, box-shadow .25s;
      cursor: default;
    }
    .esp-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(0,0,0,.5);
    }
    .esp-card-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .4s ease;
    }
    .esp-card:hover .esp-card-bg { transform: scale(1.06); }
    .esp-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.05) 100%);
    }
    .esp-card-body {
      position: relative; z-index: 2;
      padding: 16px 18px;
      width: 100%;
    }
    .esp-card-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem; font-weight: 700;
      letter-spacing: .12em;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .esp-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 1.05rem;
      text-transform: uppercase; letter-spacing: .02em;
      color: #fff; margin-bottom: 3px;
      line-height: 1.2;
    }
    .esp-card p {
      font-size: .78rem;
      color: rgba(255,255,255,.65);
    }
    @media (max-width: 900px) { .esp-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 500px) { .esp-grid { grid-template-columns: 1fr; } }

    /* ─── BRANDS MARQUEE ─── */
    .brands-section { padding: 80px 0; }
    .brands-track-wrap {
      overflow: hidden;
      position: relative;
      width: 100%;
    }
    /* fade edges */
    .brands-track-wrap::before,
    .brands-track-wrap::after {
      content: '';
      position: absolute; top: 0; bottom: 0; z-index: 2;
      width: 120px;
      pointer-events: none;
    }
    .brands-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--navy), transparent);
    }
    .brands-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--navy), transparent);
    }
    .brands-track {
      display: flex;
      align-items: center;
      gap: 16px;
      width: max-content;
      animation: marquee 32s linear infinite;
    }
    .brands-track:hover { animation-play-state: paused; }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .brand-pill {
      background: #fff;
      border-radius: 12px;
      padding: 16px 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 88px;
      min-width: 160px;
      flex-shrink: 0;
      box-shadow: 0 2px 12px rgba(0,0,0,.12);
      transition: transform .2s, box-shadow .2s;
    }
    .brand-pill:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,.22);
    }
    .brand-pill img {
      max-height: 48px;
      max-width: 140px;
      width: auto;
      object-fit: contain;
    }

    /* ─── PISOS BANNER ─── */
    .pisos-banner {
      width: 100%;
      padding: 60px 0 0;
    }
    .pisos-banner-img {
      width: 100%;
      height: auto;
      display: block;
    }
    .pisos-cta-strip {
      background: #111827;
      border-top: 3px solid var(--orange);
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .pisos-cta-strip p {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: rgba(255,255,255,.85);
    }
    .pisos-cta-strip p span { color: var(--orange); }

    /* ─── PROJECTS ─── */
    .projects-section { padding: 80px 0; }
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .project-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      min-height: 260px;
      display: flex;
      align-items: flex-end;
      cursor: default;
      box-shadow: 0 4px 20px rgba(0,0,0,.3);
      transition: transform .25s, box-shadow .25s;
    }
    .project-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(0,0,0,.45);
    }
    .project-card-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .4s ease;
    }
    .project-card:hover .project-card-bg { transform: scale(1.05); }
    .project-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
    }
    .project-card-body {
      position: relative; z-index: 2;
      padding: 20px;
      width: 100%;
    }
    .project-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 1.15rem;
      text-transform: uppercase; letter-spacing: .03em;
      color: #fff; margin-bottom: 4px;
    }
    .project-card p { font-size: .78rem; color: rgba(255,255,255,.65); line-height: 1.4; }
    .project-tag {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-size: .65rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .08em;
      padding: 2px 8px; border-radius: 4px;
      margin-bottom: 8px;
    }
    @media (max-width: 900px) {
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .projects-grid { grid-template-columns: 1fr; }
    }

    /* ─── CTA BAND ─── */
    .cta-band {
      margin: 40px 0;
      background: linear-gradient(135deg, var(--orange) 0%, #c2410c 100%);
      border-radius: 20px;
      padding: 56px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute; right: -60px; top: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
    }
    .cta-band::after {
      content: '';
      position: absolute; right: 40px; bottom: -80px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
    }
    .cta-band-text { position: relative; z-index: 1; }
    .cta-band-text h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.6rem);
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .cta-band-text p { font-size: 1rem; opacity: .85; }
    .cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: #fff; color: var(--orange2);
      font-family: 'DM Sans', sans-serif;
      font-weight: 700; font-size: 1rem;
      padding: 15px 24px;
      border-radius: 10px;
      text-decoration: none;
      transition: transform .15s, box-shadow .15s;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

    .btn-dark {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,0,0,.2);
      border: 1.5px solid rgba(255,255,255,.3);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600; font-size: 1rem;
      padding: 15px 24px;
      border-radius: 10px;
      text-decoration: none;
      transition: background .2s;
    }
    .btn-dark:hover { background: rgba(0,0,0,.35); }

    /* ─── GRUPO BAND ─── */
    .grupo-band {
      width: 100%;
      background: var(--navy2);
      border-top: 1px solid rgba(255,255,255,.07);
      border-bottom: 1px solid rgba(255,255,255,.07);
      padding: 52px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .grupo-band::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 100% at 50% 50%, rgba(26,58,122,.5) 0%, transparent 70%);
      pointer-events: none;
    }
    .grupo-band-inner { position: relative; z-index: 1; }
    .grupo-band-label {
      font-size: .75rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: .14em;
      color: rgba(255,255,255,.35);
      margin-bottom: 16px;
    }
    .grupo-band h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(2rem, 5vw, 3.2rem);
      text-transform: uppercase;
      letter-spacing: .04em;
      color: #fff;
      text-shadow: 0 2px 24px rgba(0,0,0,.4);
      margin-bottom: 28px;
    }
    .grupo-band h2 span {
      color: var(--orange);
    }
    .grupo-logo-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 14px;
      padding: 18px 40px;
    }
    .grupo-logo-wrap img {
      height: 70px;
      width: auto;
      max-width: 320px;
      object-fit: contain;
      background: #fff;
      padding: 10px 24px;
      border-radius: 10px;
    }

    /* ─── MAPA ─── */
    .map-section { background: var(--navy); }
    .map-header { padding: 64px 0 40px; text-align: center; }
    .map-header h2 { font-size: clamp(2rem,4vw,2.8rem); margin: 8px 0 12px; }
    .map-header p { color: rgba(255,255,255,.5); font-size: 1rem; }
    .map-frame { line-height: 0; }
    .map-frame iframe { display: block; width: 100%; height: 420px; filter: grayscale(20%) contrast(1.05); }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 48px 0 28px;
      color: rgba(255,255,255,.4);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 28px;
    }
    .footer-logo img {
      height: 48px;
      width: 120px;
      object-fit: cover;
      object-position: center;
      background: #fff;
      border-radius: 8px;
      opacity: .9;
    }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: .9rem; transition: color .2s; }
    .footer-links a:hover { color: var(--white); }
    .footer-copy { font-size: .8rem; text-align: center; }

    /* ─── FAQ ─── */
    .faq-section { padding: 80px 0; }
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color .25s;
    }
    .faq-item.open { border-color: rgba(249,115,22,.3); }
    .faq-question {
      width: 100%; background: none; border: none; color: #fff;
      font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
      text-align: left; padding: 22px 24px;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      cursor: pointer; transition: color .2s;
    }
    .faq-item.open .faq-question { color: var(--orange); }
    .faq-icon {
      flex-shrink: 0; width: 22px; height: 22px;
      border: 1.5px solid rgba(255,255,255,.2); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: transform .3s, border-color .2s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--orange); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .3s ease;
      padding: 0 24px;
      color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.7;
    }
    .faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 22px; }

    /* ─── AVISO DE PRIVACIDAD MODAL ─── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 500;
      background: rgba(0,0,0,.75); backdrop-filter: blur(4px);
      align-items: center; justify-content: center; padding: 24px;
    }
    .modal-overlay.active { display: flex; }
    .modal-box {
      background: var(--navy2);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      width: 100%; max-width: 680px;
      max-height: 80vh;
      display: flex; flex-direction: column;
      box-shadow: 0 40px 80px rgba(0,0,0,.5);
    }
    .modal-header {
      display: flex; justify-content: space-between; align-items: center;
      padding: 24px 28px 20px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      flex-shrink: 0;
    }
    .modal-header h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 1.5rem;
      text-transform: uppercase; letter-spacing: .03em;
    }
    .modal-close {
      background: none; border: none; color: rgba(255,255,255,.5);
      cursor: pointer; padding: 4px; border-radius: 6px;
      transition: color .2s; line-height: 1;
    }
    .modal-close:hover { color: #fff; }
    .modal-body {
      overflow-y: auto; padding: 24px 28px;
      color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.8;
    }
    .modal-body h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1.1rem;
      text-transform: uppercase; color: var(--orange);
      margin: 20px 0 8px;
    }
    .modal-body h4:first-child { margin-top: 0; }
    .modal-body p { margin-bottom: 10px; }
    .modal-body ul { padding-left: 20px; margin-bottom: 10px; }
    .modal-body ul li { margin-bottom: 4px; }


    /* ─── MOBILE ─── */
    @media (max-width: 768px) {
      /* Ocultar banner-pisos en móvil: banner panorámico no apto para móvil */
      .pisos-banner {
        display: none;
      }
      /* Ocultar segunda pasada del carrusel: 16 imágenes duplicadas innecesarias */
      .brands-track > .brand-pill:nth-child(n+17) {
        display: none;
      }
    }

    /* ─── MÓVIL: stats ─── */
    @media (max-width: 600px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .stat-card { padding: 28px 16px; }
      .stat-num { font-size: 2.4rem; }
      .cta-band { padding: 36px 24px; }
      .cta-band-text h2 { font-size: 1.8rem; }
    }

    /* ─── MÓVIL: pasos y productos ─── */
    @media (max-width: 600px) {

      /* ¿Cómo Funciona? — 1 columna */
      .steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .step-card {
        padding: 20px;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 16px;
        row-gap: 8px;
      }
      .step-num {
        font-size: 1.8rem;
        margin-bottom: 0;
        line-height: 1;
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
      }
      .step-icon {
        width: 40px; height: 40px;
        margin-bottom: 0;
        grid-column: 2;
        grid-row: 1;
      }
      .step-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0;
        grid-column: 2;
        grid-row: 2;
        align-self: center;
      }
      .step-card p {
        font-size: .85rem;
        grid-column: 1 / -1;
        grid-row: 3;
      }

      /* Productos — 1 columna */
      .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .product-card {
        padding: 20px 18px;
        gap: 16px;
        align-items: center;
      }
      .product-icon {
        width: 44px; height: 44px;
        flex-shrink: 0;
      }
      .product-card h3 { font-size: 1.05rem; }
      .product-card p { font-size: .82rem; }
    }