 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --ink: #0e0d0c;
    --paper: #f5f2ec;
    --steel: #2a2e35;
    --copper: #b5622a;
    --copper-light: #d4844d;
    --muted: #6b6760;
    --border: #d0cab8;
    --card-bg: #faf8f4;
    --tag-bg: #ece8e0;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
  }

  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--ink);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem;
    height: 56px;
    border-bottom: 2px solid var(--copper);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--paper);
    letter-spacing: 0.08em;
  }
  .nav-logo span { color: var(--copper); }
  .nav-links { display: flex; gap: 1.5rem; }
  .nav-links a {
    color: #aaa8a2;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--copper); }
  .nav-cta {
    background: var(--copper);
    color: white !important;
    padding: 0.4rem 1rem;
    border-radius: 2px;
  }
  .nav-cta:hover { background: var(--copper-light) !important; }

  .hero {
    background: var(--steel);
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.015) 80px,
      rgba(255,255,255,0.015) 81px
    );
    pointer-events: none;
  }
  .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem 5rem 4rem;
    z-index: 1;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 500;
    margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px; height: 1px;
    background: var(--copper);
  }
  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: var(--paper);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--copper);
    display: block;
  }
  .hero-sub {
    color: #9b9790;
    font-size: 1rem;
    font-weight: 300;
    max-width: 380px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--copper);
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--copper-light); transform: translateY(-1px); }
  .btn-secondary {
    color: var(--paper);
    padding: 0.75rem 1.8rem;
    border-radius: 2px;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    border: 1px solid #4a4e55;
    transition: border-color 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--copper); color: var(--copper); }

  .hero-stats {
    display: flex; gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #3a3e45;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--paper);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b6760;
    margin-top: 0.3rem;
  }

  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
  }
  .laptop-showcase {
    width: 100%;
    max-width: 460px;
    position: relative;
  }
  .laptop-frame {
    background: #1a1d22;
    border-radius: 10px 10px 0 0;
    padding: 20px 20px 10px;
    border: 1px solid #3a3e45;
    position: relative;
    overflow: hidden;
  }
  .laptop-screen {
    background: #0a0c10;
    border-radius: 4px;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .screen-content { text-align: center; z-index: 1; }
  .screen-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    color: var(--copper);
    margin-bottom: 0.5rem;
  }
  .screen-model {
    font-size: 0.7rem;
    color: #4a5060;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .screen-grid {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(181,98,42,0.04) 20px, rgba(181,98,42,0.04) 21px),
                repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(181,98,42,0.04) 20px, rgba(181,98,42,0.04) 21px);
  }
  .product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .badge-certified {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--copper);
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
  }
  .laptop-base {
    background: #22252c;
    height: 14px;
    border-radius: 0 0 4px 4px;
    border: 1px solid #3a3e45;
    border-top: none;
  }
  .laptop-hinge {
    background: #1a1d22;
    height: 6px;
    border-radius: 0 0 8px 8px;
    border: 1px solid #3a3e45;
    border-top: none;
    max-width: 70%;
    margin: 0 auto;
  }
  .laptop-foot {
    background: #12141a;
    height: 12px;
    border-radius: 3px;
    border: 1px solid #2a2d33;
    max-width: 92%;
    margin: 0 auto;
  }
  .spec-pills {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-top: 1.5rem;
    justify-content: center;
  }
  .spec-pill {
    background: rgba(181,98,42,0.12);
    border: 1px solid rgba(181,98,42,0.25);
    color: var(--copper-light);
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
  }

  section { padding: 5rem 4rem; }
  .section-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .section-eyebrow::before {
    content: ''; display: inline-block;
    width: 24px; height: 1px;
    background: var(--copper);
  }
  h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--ink);
  }
  .section-lead {
    color: var(--muted);
    font-size: 1rem;
    max-width: 560px;
    font-weight: 300;
    line-height: 1.75;
  }

  .filosofia {
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
  }
  .filosofia::after {
    content: '"';
    position: absolute;
    right: 4rem; top: 2rem;
    font-family: 'DM Serif Display', serif;
    font-size: 20rem;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
  }
  .filosofia h2 { color: var(--paper); }
  .filosofia .section-lead { color: #7a7772; }
  .analogy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #2a2d35;
    margin-top: 3rem;
    border: 1px solid #2a2d35;
  }
  .analogy-card {
    background: #141720;
    padding: 2rem;
  }
  .analogy-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--copper);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .analogy-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--paper);
    margin-bottom: 0.6rem;
  }
  .analogy-text {
    font-size: 1rem;
    color: #938e87;
    line-height: 1.65;
    font-weight: 300;
  }

  .garantias { background: var(--card-bg); }
  .garantia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .garantia-card {
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 2rem;
    background: white;
    display: flex;
    gap: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .garantia-card:hover {
    border-color: var(--copper);
    box-shadow: 4px 4px 0 var(--tag-bg);
  }
  .garantia-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--copper);
    line-height: 1;
    flex-shrink: 0;
    width: 3rem;
  }
  .garantia-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  .garantia-body p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

  .catalogo { background: var(--paper); }
  .catalogo-tabs {
    display: flex;
    gap: 0;
    margin: 2rem 0;
    border-bottom: 2px solid var(--border);
  }
  .tab-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    padding: 0.8rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .tab-btn.active { color: var(--copper); border-bottom-color: var(--copper); }
  .tab-btn:hover:not(.active) { color: var(--ink); }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .product-card {
    border: 1px solid var(--border);
    background: white;
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .product-img {
    background: #f0ede6;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .product-brand-bg {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(0,0,0,0.06);
    position: absolute;
    bottom: -0.5rem;
    right: 0.5rem;
    letter-spacing: 0.02em;
  }
  .laptop-svg { width: 120px; opacity: 0.7; }
  .product-condition {
    position: absolute;
    top: 0.8rem; left: 0.8rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 1px;
  }
  .cond-a { background: #d4f0e4; color: #0a6640; }
  .cond-b { background: #fde8cc; color: #8a4a00; }
  .product-body { padding: 1.2rem; }
  .product-series {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 0.3rem;
  }
  .product-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    line-height: 1.2;
  }
  .product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--tag-bg);
    padding-bottom: 0.3rem;
  }
  .spec-row .sk { color: var(--muted); }
  .spec-row .sv { font-weight: 500; }
  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--ink);
    letter-spacing: 0.02em;
    line-height: 1;
  }
  .product-price small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .btn-inquire {
    background: var(--ink);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.15s;
    text-decoration: none;
  }
  .btn-inquire:hover { background: var(--copper); }

  .como { background: var(--ink); color: var(--paper); }
  .como h2 { color: var(--paper); }
  .proceso-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    position: relative;
  }
  .proceso-steps::before {
    content: '';
    position: absolute;
    top: 1.5rem; left: 2rem; right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--copper) 0%, #3a3e45 60%);
  }
  .proceso-step { padding: 0 1.5rem; }
  .step-num {
    width: 3rem; height: 3rem;
    border-radius: 50%;
    background: var(--copper);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .step-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--paper);
    margin-bottom: 0.5rem;
  }
  .step-desc { font-size: 1rem; color: #95928d; line-height: 1.65; font-weight: 300; }

  .entrega { background: var(--card-bg); }
  .entrega-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .place-list { margin-top: 1.5rem; }
  .place-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .place-icon { font-size: 1.4rem; flex-shrink: 0; width: 2rem; text-align: center; margin-top: 2px; }
  .place-name { font-family: 'DM Serif Display', serif; font-size: 1rem; margin-bottom: 0.2rem; }
  .place-detail { font-size: 0.8rem; color: var(--muted); font-weight: 300; }
  .trust-box {
    background: var(--ink);
    color: var(--paper);
    padding: 2.5rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .trust-box::before {
    content: '100%';
    position: absolute;
    right: -1rem; bottom: -1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
  }
  .trust-box h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--paper);
  }
  .trust-point {
    display: flex; align-items: flex-start; gap: 0.8rem;
    margin-bottom: 0.9rem;
    font-size: 1rem;
    color: #7a7772;
    line-height: 1.5;
  }

  .trust-dot {
    width: 6px; 
    height: 6px;
    background: var(--copper);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.45rem;
  }

  .contacto { background: var(--paper); }
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
  }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 500;
  }
  .form-input, .form-select, .form-textarea {
    border: 1px solid var(--border);
    background: white;
    padding: 0.65rem 0.9rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
    appearance: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--copper); }
  .form-textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .btn-submit {
    background: var(--copper);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn-submit:hover { background: var(--copper-light); }

  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
  .cinfo-block h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--copper);
    margin-bottom: 0.4rem;
  }
  .cinfo-block p { font-size: 0.9rem; color: var(--muted); font-weight: 300; }
  .cinfo-block strong { color: var(--ink); font-weight: 500; }

  /* ===== CAMBIA ESTE NÚMERO POR EL TUYO ===== */
  .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.15s;
    margin-top: 0.5rem;
  }
  .wa-btn:hover { opacity: 0.9; }

  footer {
    background: var(--ink);
    border-top: 2px solid var(--copper);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--paper);
    letter-spacing: 0.08em;
  }
  .footer-logo span { color: var(--copper); }
  .footer-tagline {
    font-size: 0.72rem;
    color: #4a4845;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
  }
  .footer-right { text-align: right; font-size: 0.75rem; color: #3a3835; }

  .product-img {
    cursor: pointer;
    position: relative;
  }
  .product-img::after {
    content: 'Ver detalles';
    position: absolute;
    inset: auto 0.8rem 0.8rem auto;
    background: rgba(14, 13, 12, 0.9);
    color: white;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
  }
  .product-img:hover::after,
  .product-img:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
  }

  .product-modal {
    position: fixed;
    inset: 0;
    z-index: 250;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .product-modal.is-open {
    display: flex;
  }
  .product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 12, 0.82);
    backdrop-filter: blur(4px);
  }
  .product-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
  }
  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--ink);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 2;
  }
  .modal-carousel {
    background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  .modal-stage {
    flex: 1;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(181,98,42,0.18), rgba(255,255,255,0.05));
  }
  .modal-image {
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
    display: block;
    background: #0f172a;
  }
  .modal-nav {
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .modal-nav:hover {
    background: rgba(255,255,255,0.25);
  }
  .modal-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 1rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  }
  .modal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    padding: 0;
  }
  .modal-dot.active {
    background: var(--copper);
    transform: scale(1.15);
  }
  .modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .modal-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #d4f0e4;
    color: #0a6640;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .modal-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.45rem;
    line-height: 1.2;
    color: var(--ink);
  }
  .modal-body p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
  }
  .modal-spec-list {
    display: grid;
    gap: 0.6rem;
  }
  .modal-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.84rem;
    color: var(--muted);
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--tag-bg);
  }
  .modal-spec-item strong {
    color: var(--ink);
    font-weight: 600;
    text-align: right;
  }
  .modal-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .modal-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--ink);
    line-height: 1;
  }
  .modal-price small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3px;
  }
  body.modal-open {
    overflow: hidden;
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { display: none; }
    section { padding: 3rem 2rem; }
    .analogy-grid, .garantia-grid, .products-grid { grid-template-columns: 1fr; }
    .proceso-steps { grid-template-columns: 1fr 1fr; }
    .proceso-steps::before { display: none; }
    .entrega-inner, .contact-wrap { grid-template-columns: 1fr; }
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-right { text-align: center; }

    .product-modal { padding: 1rem; }
    .product-modal-dialog {
      grid-template-columns: 1fr;
      max-height: 90vh;
      overflow-y: auto;
    }
    .modal-close {
      top: 0.75rem;
      right: 0.75rem;
      width: 38px;
      height: 38px;
    }
    .modal-carousel {
      padding: 0.75rem;
      gap: 0.5rem;
    }
    .modal-stage {
      min-height: 220px;
    }
    .modal-image {
      max-height: 260px;
    }
    .modal-nav {
      width: 36px;
      height: 36px;
      font-size: 1.1rem;
    }
    .modal-body {
      padding: 1.2rem;
      gap: 0.8rem;
    }
    .modal-spec-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.25rem;
    }
    .modal-spec-item strong {
      text-align: left;
    }
    .modal-footer {
      flex-direction: column;
      align-items: flex-start;
    }
  }