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

    :root {
      /* Tokens exactos de la app */
      --blue:       #1E40AF;
      --blue-dark:  #1A3480;
      --blue-light: #EBF1FF;
      --blue-mid:   #93C5FD;
      --blue-soft:  #F0F5FF;
      --coral:      #F4634F;
      --coral-soft: #FFF1EF;
      --green:      #10B981;
      --green-dark: #059669;
      --green-light:#D1FAE5;
      --green-text: #065F46;
      --amber:      #D97706;
      --amber-light:#FEF3C7;
      --amber-text: #92400E;
      --g100: #F7F9FC;
      --g200: #EEF2F7;
      --g300: #DDE3EE;
      --g400: #96A3B8;
      --g500: #627289;
      --g600: #475569;
      --g700: #334155;
      --g800: #1A2336;
      --ink:  #0C1526;
      --bg:   #F4F7FC;
      --card: #FFFFFF;
      --r-sm: 10px; --r-md: 14px; --r-lg: 18px; --r-xl: 22px; --r-xxl: 28px; --r-pill: 9999px;
      --font: 'Nunito', sans-serif;
      --shadow-card: 0 4px 16px rgba(12,21,38,.07), 0 1px 3px rgba(12,21,38,.05);
      --shadow-strong: 0 12px 40px rgba(26,52,128,.18);
    }

    html { scroll-behavior: smooth; }
    body  { font-family: var(--font); background: var(--bg); color: var(--ink); overflow-x: hidden; }

    /* ────────────────────── NAV ────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      height: 64px; padding: 0 32px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background .3s, box-shadow .3s, backdrop-filter .3s;
    }
    .nav.scrolled {
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--g200), 0 4px 24px rgba(12,21,38,.08);
    }
    .nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
    .nav-logo-mark {
      width: 36px; height: 36px; border-radius: 50%;
      background: url('/logo-app.png') center / 132% no-repeat;
      box-shadow: 0 4px 12px rgba(30,64,175,.35);
    }
    .nav-logo-mark svg { width: 18px; height: 18px; }
    .nav-logo-text { font-size: 18px; font-weight: 900; color: white; letter-spacing: 2px; transition: color .3s; }
    .nav.scrolled .nav-logo-text { color: var(--blue-dark); }
    .nav-right { display: flex; align-items: center; gap: 10px; }
    .btn-nav-primary {
      padding: 10px 22px; border-radius: var(--r-pill);
      background: var(--coral); color: white;
      font-size: 13px; font-weight: 900; text-decoration: none;
      box-shadow: 0 4px 14px rgba(244,99,79,.45);
      transition: transform .15s, box-shadow .15s;
      animation: heroPulse 2.6s ease-in-out infinite;
    }
    .btn-nav-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,99,79,.55); animation: none; }

    /* ────────────────────── HERO ────────────────────── */
    .hero {
      padding: 92px 32px 68px;
      background: linear-gradient(155deg, var(--blue-dark) 0%, #1a2a6e 45%, #1E40AF 100%);
      position: relative; overflow: hidden;
      display: flex; align-items: center;
    }
    /* Círculos decorativos — mismo patrón que la app */
    .hero-deco { position: absolute; border-radius: 50%; pointer-events: none; }
    .hero-deco-1 { width: 500px; height: 500px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(244,99,79,.18) 0%, transparent 70%); }
    .hero-deco-2 { width: 300px; height: 300px; bottom: -60px; left: 5%; background: radial-gradient(circle, rgba(16,185,129,.12) 0%, transparent 70%); }
    .hero-deco-3 { width: 200px; height: 200px; top: 30%; left: 35%; background: radial-gradient(circle, rgba(147,197,253,.08) 0%, transparent 70%); }

    .hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

    /* Texto hero */
    .hero-text { animation: fadeUp .8s ease both; }
    @keyframes fadeUp { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
    .hero-chip {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
      color: white; padding: 6px 14px; border-radius: var(--r-pill);
      font-size: 11px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
      margin-bottom: 24px; backdrop-filter: blur(8px);
    }
    .hero-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }
    .hero-h1 {
      font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: white;
      line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
    }
    .hero-h1 span { color: var(--coral); }
    .hero-sub {
      font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.72);
      line-height: 1.7; max-width: 440px; margin-bottom: 36px;
    }
    .hero-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
    .hero-actions-sec { display: flex; gap: 12px; flex-wrap: wrap; }
    /* CTA protagonista — Publicá tu necesidad */
    .btn-hero-solicitud {
      display: flex; align-items: center; gap: 14px;
      width: 100%; max-width: 460px;
      background: var(--coral); color: #fff; text-decoration: none;
      padding: 19px 24px; border-radius: 18px;
      box-shadow: 0 14px 44px rgba(244,99,79,.5);
      animation: heroPulse 2.6s ease-in-out infinite;
      transition: transform .15s ease;
    }
    .btn-hero-solicitud:hover { transform: translateY(-2px) scale(1.01); animation: none; }
    .bhs-emoji { font-size: 27px; line-height: 1; }
    .bhs-title { flex: 1; font-size: 15.5px; font-weight: 900; letter-spacing: -.2px; line-height: 1.25; }
    .bhs-sub { display: block; font-size: 12.5px; font-weight: 700; opacity: .92; margin-top: 3px; }
    .bhs-arrow { margin-left: auto; font-size: 24px; font-weight: 900; }
    @keyframes heroPulse {
      0%, 100% { box-shadow: 0 10px 32px rgba(244,99,79,.38); transform: scale(1); }
      50% { box-shadow: 0 22px 66px rgba(244,99,79,.9); transform: scale(1.07); }
    }
    .btn-hero-main {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--coral); color: white;
      padding: 16px 28px; border-radius: var(--r-xl);
      font-size: 15px; font-weight: 900; text-decoration: none;
      box-shadow: 0 8px 28px rgba(244,99,79,.5);
      transition: transform .15s, box-shadow .15s;
    }
    .btn-hero-main:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(244,99,79,.6); }
    .btn-hero-wa {
      display: inline-flex; align-items: center; gap: 10px;
      background: #25D366; color: #fff;
      padding: 16px 28px; border-radius: var(--r-xl);
      font-size: 15px; font-weight: 900; text-decoration: none;
      box-shadow: 0 8px 28px rgba(37,211,102,.45);
      transition: transform .15s, box-shadow .15s;
    }
    .btn-hero-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,.55); }
    /* Botón flotante WhatsApp */
    .wa-float {
      position: fixed; right: 18px; bottom: 96px; z-index: 1500;
      width: 60px; height: 60px; border-radius: 50%;
      background: #25D366; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 20px rgba(37,211,102,.5); text-decoration: none;
      animation: waPulse 2.5s ease-in-out infinite;
    }
    .wa-float svg { width: 32px; height: 32px; }
    @keyframes waPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
    /* CTA fija protagonista — Publicá tu necesidad */
    .cta-fija {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 1450;
      display: flex; justify-content: center;
      padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
      background: linear-gradient(to top, rgba(12,21,38,.94), rgba(12,21,38,.5) 62%, transparent);
      pointer-events: none;
    }
    .cta-fija a {
      pointer-events: auto;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; max-width: 440px;
      background: var(--coral); color: #fff; text-decoration: none;
      padding: 16px 24px; border-radius: 16px;
      font-size: 16px; font-weight: 900; letter-spacing: -.2px;
      box-shadow: 0 10px 34px rgba(244,99,79,.6);
      animation: heroPulse 2.6s ease-in-out infinite;
    }
    body { padding-bottom: 88px; }

    /* ── Reveal al hacer scroll ── */
    .reveal { opacity: 0; transform: translateY(34px); will-change: opacity, transform; }
    .reveal.reveal-in { opacity: 1; transform: none; transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
    .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
    .btn-hero-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.1); color: white;
      border: 1.5px solid rgba(255,255,255,.22);
      padding: 16px 24px; border-radius: var(--r-xl);
      font-size: 15px; font-weight: 800; text-decoration: none;
      backdrop-filter: blur(8px); transition: background .2s;
    }
    .btn-hero-outline:hover { background: rgba(255,255,255,.18); }

    /* Mockup app */
    .hero-mockup { animation: fadeUp .8s .2s ease both; display: flex; justify-content: center; }
    .phone {
      width: 260px; border-radius: 44px;
      background: rgba(255,255,255,.06);
      border: 1.5px solid rgba(255,255,255,.15);
      backdrop-filter: blur(12px);
      padding: 20px 16px 28px;
      box-shadow: 0 32px 80px rgba(12,21,38,.5), inset 0 1px 0 rgba(255,255,255,.1);
    }
    .phone-bar { width: 80px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.2); margin: 0 auto 20px; }
    .phone-search {
      background: rgba(255,255,255,.1); border-radius: 12px; padding: 10px 14px;
      display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
    }
    .phone-search-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }
    .phone-search-text { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 600; }
    .phone-card {
      background: rgba(255,255,255,.9); border-radius: 16px; padding: 14px;
      margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
      box-shadow: 0 4px 16px rgba(12,21,38,.15);
    }
    .phone-card:last-child { margin-bottom: 0; }
    .phone-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
    .phone-card-info { flex: 1; min-width: 0; }
    .phone-card-name { font-size: 12px; font-weight: 900; color: var(--ink); margin-bottom: 2px; }
    .phone-card-job { font-size: 10px; font-weight: 700; color: var(--blue); }
    .phone-card-right { text-align: right; }
    .phone-card-stars { font-size: 9px; color: var(--amber); }
    .phone-card-price { font-size: 10px; font-weight: 900; color: var(--blue-dark); margin-top: 2px; }
    .phone-badge { width: 14px; height: 14px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin-left: auto; margin-top: 4px; }
    .phone-badge svg { width: 8px; height: 8px; }

    /* ────────────────────── STATS ────────────────────── */
    .stats-strip {
      background: white; border-bottom: 1px solid var(--g200);
      padding: 0 32px;
    }
    .stats-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(2,1fr);
      divide-x: 1px solid var(--g200);
    }
    .stat-item {
      padding: 28px 24px; text-align: center;
      border-right: 1px solid var(--g200);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-size: 32px; font-weight: 900; color: var(--blue-dark); letter-spacing: -1px; line-height: 1; }
    .stat-num .stat-accent { color: var(--coral); }
    .stat-lbl { font-size: 12px; font-weight: 700; color: var(--g500); text-transform: uppercase; letter-spacing: .6px; margin-top: 4px; }

    /* ────────────────────── TRUST ────────────────────── */
    .trust-section { background: var(--green-light); border-top: 1px solid #A7F3D0; border-bottom: 1px solid #A7F3D0; padding: 18px 32px; }
    .trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 10px; }
    .trust-icon { width: 32px; height: 32px; border-radius: 10px; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .trust-text { font-size: 14px; font-weight: 700; color: var(--green-text); }
    .trust-text strong { font-weight: 900; }

    /* ────────────────────── FILTROS ────────────────────── */
    .section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
    .filters-section { padding: 40px 32px 0; }
    .filters-inner { max-width: 1200px; margin: 0 auto; }
    .filters-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
    .filters-title { font-size: 22px; font-weight: 900; color: var(--ink); letter-spacing: -.4px; }
    .filters-count { font-size: 13px; font-weight: 700; color: var(--g500); }
    .filters-chips { display: flex; gap: 8px; flex-wrap: wrap; }
    .chip {
      padding: 8px 18px; border-radius: var(--r-pill); border: 1.5px solid var(--g300);
      background: white; font-size: 13px; font-weight: 700; color: var(--g600);
      cursor: pointer; transition: all .18s; font-family: var(--font);
    }
    .chip:hover { border-color: var(--blue-mid); color: var(--blue-dark); transform: translateY(-1px); }
    .chip.active { background: var(--blue-dark); border-color: var(--blue-dark); color: white; box-shadow: 0 4px 12px rgba(26,52,128,.3); }

    /* ────────────────────── GRID ────────────────────── */
    .grid-section { padding: 24px 32px 80px; }
    .grid {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 16px;
    }

    /* Skeleton */
    .skel { background: white; border-radius: var(--r-xxl); border: 1px solid var(--g200); padding: 28px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .skel-circle { width: 76px; height: 76px; border-radius: 50%; }
    .skel-line { height: 12px; border-radius: 6px; }
    .skel-circle, .skel-line { background: linear-gradient(90deg, var(--g100) 25%, var(--g200) 50%, var(--g100) 75%); background-size: 400% 100%; animation: shimmer 1.6s ease-in-out infinite; }
    @keyframes shimmer { 0%{background-position:100% 0} 100%{background-position:-100% 0} }

    /* Card proveedor */
    .prov-card {
      background: white; border-radius: var(--r-xxl); border: 1px solid var(--g200);
      padding: 28px 20px 22px;
      box-shadow: var(--shadow-card);
      display: flex; flex-direction: column; align-items: center; text-align: center;
      cursor: pointer; position: relative; overflow: hidden;
      transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, border-color .2s;
      opacity: 0; transform: translateY(16px);
    }
    .prov-card.visible { opacity: 1; transform: translateY(0); transition: opacity .4s ease, transform .4s ease, box-shadow .2s, border-color .2s; }
    .prov-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(26,52,128,.13); border-color: var(--blue-mid); }
    /* Accent strip top */
    .prov-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--r-xxl) var(--r-xxl) 0 0; }
    .prov-card.verified::before { background: var(--green); }
    .prov-card.pending::before  { background: var(--amber); }
    .prov-card.unverified::before { background: var(--g300); }

    /* Avatar */
    .av-wrap { position: relative; margin-bottom: 14px; }
    .av {
      width: 76px; height: 76px; border-radius: 50%; object-fit: cover;
      border: 3px solid var(--g200); background: var(--blue-soft); display: block;
    }
    .av.blurred { filter: blur(7px); transform: scale(1.05); }
    .av-initial {
      width: 76px; height: 76px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; font-weight: 900; color: white; border: 3px solid var(--g200);
    }
    .av-overlay {
      position: absolute; inset: 0; border-radius: 50%;
      background: rgba(12,21,38,.4); display: flex; align-items: center; justify-content: center;
    }
    .av-badge {
      position: absolute; bottom: 1px; right: 1px;
      width: 24px; height: 24px; border-radius: 50%; border: 2.5px solid white;
      display: flex; align-items: center; justify-content: center;
    }
    .av-badge.v { background: var(--green); }
    .av-badge.p { background: var(--amber); }
    .av-badge.u { background: var(--g400); }

    .prov-name  { font-size: 16px; font-weight: 900; color: var(--ink); margin-bottom: 5px; letter-spacing: -.2px; }
    .prov-job   { display: inline-block; background: var(--blue-soft); color: var(--blue-dark); padding: 3px 11px; border-radius: var(--r-pill); font-size: 11px; font-weight: 800; margin-bottom: 10px; }
    .prov-zona  { font-size: 11px; color: var(--g500); font-weight: 600; display: flex; align-items: center; gap: 3px; justify-content: center; margin-bottom: 10px; }
    .prov-stars { color: var(--amber); font-size: 14px; letter-spacing: 1.5px; margin-bottom: 2px; }
    .prov-rat   { font-size: 12px; font-weight: 800; color: var(--g800); }
    .prov-norat { font-size: 11px; color: var(--g400); font-weight: 600; }
    .prov-verif-label { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; margin-top: 10px; padding: 4px 10px; border-radius: var(--r-pill); }
    .prov-verif-label.v { background: var(--green-light); color: var(--green-text); }
    .prov-verif-label.p { background: var(--amber-light); color: var(--amber-text); }
    .prov-verif-label.u { background: var(--g100); color: var(--g500); }

    /* Empty */
    .empty { grid-column: 1/-1; text-align: center; padding: 64px 24px; color: var(--g400); }
    .empty svg { margin-bottom: 16px; }
    .empty p { font-size: 15px; font-weight: 700; }

    /* ────────────────────── CÓMO FUNCIONA ────────────────────── */
    .how-section { background: white; padding: 80px 32px; }
    .how-inner { max-width: 1200px; margin: 0 auto; }
    .section-label { display: inline-block; background: var(--blue-soft); color: var(--blue-dark); padding: 5px 14px; border-radius: var(--r-pill); font-size: 11px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 12px; }
    .section-title { font-size: clamp(24px,4vw,38px); font-weight: 900; color: var(--ink); letter-spacing: -.5px; margin-bottom: 8px; }
    .section-sub { font-size: 16px; color: var(--g600); line-height: 1.6; max-width: 480px; margin-bottom: 52px; }
    .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
    .steps::before {
      content: ''; position: absolute; top: 28px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
      height: 2px; background: linear-gradient(90deg, var(--blue-mid), var(--green));
    }
    .step { padding: 0 16px; text-align: center; }
    .step-num {
      width: 56px; height: 56px; border-radius: var(--r-xxl);
      background: var(--blue-dark); color: white;
      font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; position: relative; z-index: 1;
      box-shadow: 0 6px 20px rgba(26,52,128,.35);
    }
    .step:nth-child(4) .step-num { background: var(--coral); box-shadow: 0 6px 20px rgba(244,99,79,.35); }
    .step h3 { font-size: 15px; font-weight: 900; color: var(--ink); margin-bottom: 8px; }
    .step p  { font-size: 13px; color: var(--g600); line-height: 1.65; }
    .step { transition: transform .25s ease; }
    .step:hover { transform: translateY(-4px); }

    /* ────────────────────── CTA WORKERS ────────────────────── */
    .cta-section { padding: 48px 32px 80px; }
    .cta-card {
      max-width: 1200px; margin: 0 auto;
      background: linear-gradient(135deg, var(--blue-dark) 0%, #1a2a6e 50%, #1E40AF 100%);
      border-radius: var(--r-xxl); padding: 56px 64px;
      display: flex; align-items: center; justify-content: space-between; gap: 40px;
      position: relative; overflow: hidden;
    }
    .cta-card::before { content: ''; position: absolute; top: -60px; right: -40px; width: 240px; height: 240px; border-radius: 50%; background: rgba(244,99,79,.12); }
    .cta-card::after  { content: ''; position: absolute; bottom: -40px; right: 160px; width: 160px; height: 160px; border-radius: 50%; background: rgba(16,185,129,.1); }
    .cta-text { position: relative; z-index: 1; }
    .cta-chip { display: inline-block; background: rgba(244,99,79,.2); color: #FCA5A5; padding: 4px 12px; border-radius: var(--r-pill); font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 14px; }
    .cta-h2 { font-size: clamp(24px,3.5vw,38px); font-weight: 900; color: white; letter-spacing: -.5px; margin-bottom: 10px; }
    .cta-p  { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.65; max-width: 440px; }
    .cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; position: relative; z-index: 1; }
    .btn-cta-main {
      display: inline-flex; align-items: center; gap: 10px;
      background: white; color: var(--blue-dark);
      padding: 16px 28px; border-radius: var(--r-xl);
      font-size: 15px; font-weight: 900; text-decoration: none; white-space: nowrap;
      box-shadow: 0 8px 28px rgba(12,21,38,.25);
      transition: transform .15s, box-shadow .15s;
    }
    .btn-cta-main:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(12,21,38,.35); }
    .cta-note { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 700; }

    /* ────────────────────── MODAL ────────────────────── */
    .overlay {
      position: fixed; inset: 0; z-index: 1000;
      background: var(--overlay);
      display: flex; align-items: flex-end; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .25s;
    }
    .overlay.open { opacity: 1; pointer-events: all; }
    .modal {
      background: white; border-radius: 32px 32px 0 0;
      width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto;
      transform: translateY(48px);
      transition: transform .35s cubic-bezier(.34,1.4,.64,1);
    }
    .overlay.open .modal { transform: translateY(0); }
    .modal-pill { width: 44px; height: 4px; border-radius: 2px; background: var(--g300); margin: 14px auto; }
    .modal-head {
      background: linear-gradient(135deg, var(--blue-dark) 0%, #1E40AF 100%);
      padding: 28px 28px 36px; position: relative; overflow: hidden;
    }
    .modal-head::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(244,99,79,.15); }
    .modal-close-btn {
      position: absolute; top: 14px; right: 14px;
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(255,255,255,.15); border: none; cursor: pointer;
      color: white; font-size: 16px; display: flex; align-items: center; justify-content: center;
      transition: background .15s;
    }
    .modal-close-btn:hover { background: rgba(255,255,255,.25); }
    .modal-av-wrap { position: relative; width: 84px; height: 84px; margin: 0 auto 12px; }
    .modal-av { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.35); }
    .modal-av.blurred { filter: blur(7px); }
    .modal-av-initial { width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 34px; font-weight: 900; color: white; border: 3px solid rgba(255,255,255,.25); }
    .modal-name { font-size: 24px; font-weight: 900; color: white; text-align: center; letter-spacing: -.3px; }
    .modal-job  { font-size: 14px; color: rgba(255,255,255,.72); font-weight: 700; text-align: center; margin-top: 3px; }
    .modal-body { padding: 20px 24px 8px; }
    .modal-verif-badge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: var(--r-pill); font-size: 12px; font-weight: 800; margin-bottom: 20px; }
    .modal-verif-badge.v { background: var(--green-light); color: var(--green-text); }
    .modal-verif-badge.p { background: var(--amber-light); color: var(--amber-text); }
    .modal-verif-badge.u { background: var(--g100); color: var(--g500); }
    .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
    .info-tile { background: var(--g100); border-radius: var(--r-lg); padding: 14px 16px; }
    .info-tile-label { font-size: 10px; font-weight: 800; color: var(--g500); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
    .info-tile-value { font-size: 14px; font-weight: 800; color: var(--g800); }
    .info-tile.full { grid-column: 1/-1; }
    .desc-box { background: var(--blue-soft); border-radius: var(--r-lg); padding: 14px 16px; margin-bottom: 20px; }
    .desc-box p { font-size: 13px; color: var(--g700); line-height: 1.65; }
    .btn-contratar {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      background: var(--coral); color: white;
      margin: 0 0 8px; padding: 17px; border-radius: var(--r-xl);
      font-size: 16px; font-weight: 900; text-decoration: none;
      box-shadow: 0 6px 20px rgba(244,99,79,.4);
      transition: transform .15s, box-shadow .15s;
    }
    .btn-contratar:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(244,99,79,.5); }
    .contratar-note { text-align: center; font-size: 11px; color: var(--g500); font-weight: 600; margin-bottom: 24px; }

    /* ────────────────────── FOOTER ────────────────────── */
    footer {
      background: var(--ink); padding: 48px 32px;
      display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap;
    }
    .footer-brand { max-width: 260px; }
    .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
    .footer-logo-mark { width: 32px; height: 32px; border-radius: 50%; background: url('/logo-app.png') center / 132% no-repeat; }
    .footer-logo-text { font-size: 16px; font-weight: 900; color: white; letter-spacing: 2px; }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; }
    .footer-links h4 { font-size: 11px; font-weight: 800; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
    .footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 10px; font-weight: 600; transition: color .15s; }
    .footer-links a:hover { color: white; }
    .footer-bottom { width: 100%; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
    .footer-copy { font-size: 11px; color: rgba(255,255,255,.25); }
    .footer-copy a { color: rgba(255,255,255,.35); text-decoration: none; }

    /* ────────────────────── RESPONSIVE ────────────────────── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-mockup { display: none; }
      .steps { grid-template-columns: 1fr 1fr; }
      .steps::before { display: none; }
      .cta-card { flex-direction: column; text-align: center; padding: 40px 28px; }
      .cta-actions { align-items: center; }
      .stats-inner { grid-template-columns: repeat(2,1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      footer { flex-direction: column; gap: 28px; }
    }
    @media (max-width: 600px) {
      .nav { padding: 0 16px; height: 56px; }
      .hero { padding: 74px 16px 40px; }
      .hero-sub { margin-bottom: 26px; }
      .hero-h1 { margin-bottom: 14px; }
      .filters-section, .grid-section, .how-section, .cta-section { padding-left: 16px; padding-right: 16px; }
      .steps { grid-template-columns: 1fr; }
      .info-grid { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
      footer { padding: 40px 16px; }
    }
  
/* ── Destacados: encabezado + botón "Ver todos" ── */
.destacados-head { max-width: 1200px; margin: 0 auto 26px; text-align: center; }
.ver-todos-wrap { text-align: center; margin-top: 34px; }
.btn-ver-todos {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-dark); color: #fff; text-decoration: none;
  padding: 15px 30px; border-radius: 14px; font-weight: 900; font-size: 15px;
  box-shadow: 0 8px 24px rgba(26,52,128,.28); transition: transform .2s ease;
}
.btn-ver-todos:hover { transform: translateY(-2px); }

/* ── Testimonios ── */
.testi-section { background: var(--bg); padding: 80px 32px; }
.testi-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; text-align: left; }
.testi-card { background: #fff; border: 1px solid var(--blue-light); border-radius: 18px; padding: 24px; box-shadow: 0 6px 20px rgba(26,52,128,.06); }
.testi-stars { color: #F5A623; font-size: 17px; letter-spacing: 1px; margin-bottom: 12px; }
.testi-text { font-size: 14.5px; color: var(--g700); line-height: 1.65; margin-bottom: 16px; }
.testi-foot { border-top: 1px solid var(--g200); padding-top: 12px; }
.testi-cliente { font-size: 14px; font-weight: 900; color: var(--ink); }
.testi-meta { font-size: 12px; color: var(--g600); margin-top: 2px; }
@media (max-width: 768px) {
  .testi-section { padding: 56px 16px; }
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
}
