  /* ============ FUENTE (auto-alojada — sin terceros, sin cookies) ============ */
  @font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  }

  /* ============ RESET ============ */
  *,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  img, svg { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }
  button { font: inherit; cursor: pointer; border: none; background: none; }
  ul { list-style: none; }

  /* ============ TOKENS ============ */
  :root {
    --navy:        #1a3a5c;
    --navy-deep:   #122b42;
    --navy-soft:   #25527d;
    --accent:      #cf5b34;
    --accent-dark: #b54a27;
    --accent-soft: #f6e1d8;
    --ink:         #1c2a38;
    --muted:       #5d6e80;
    --line:        #e4eaf1;
    --bg:          #ffffff;
    --bg-alt:      #f3f7fb;
    --gold:        #e3b341;
    --radius:      18px;
    --radius-lg:   26px;
    --shadow-sm:   0 4px 18px rgba(18,43,66,.06);
    --shadow-md:   0 18px 44px rgba(18,43,66,.12);
    --shadow-lg:   0 34px 70px rgba(18,43,66,.20);
    --maxw:        1180px;
  }

  /* ============ BASE ============ */
  body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  section { padding: 96px 0; }

  h1,h2,h3 { line-height: 1.18; letter-spacing: -.02em; font-weight: 800; }
  h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
  h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
  h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -.01em; }
  p  { color: var(--muted); }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 16px;
  }
  .eyebrow::before { content:""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }

  .section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
  .section-head.left { margin-left: 0; text-align: left; }
  .section-head p { margin-top: 14px; font-size: 1.08rem; }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 26px; border-radius: 999px;
    font-weight: 700; font-size: .98rem; letter-spacing: -.01em;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
    white-space: nowrap;
  }
  .btn svg { width: 18px; height: 18px; }
  .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px rgba(207,91,52,.32); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(207,91,52,.42); }
  .btn-navy { background: var(--navy); color: #fff; }
  .btn-navy:hover { transform: translateY(-2px); background: var(--navy-deep); }
  .btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
  .btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-ghost { background: transparent; color: var(--navy); border: 1.6px solid var(--line); }
  .btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
  .btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border: 1.6px solid rgba(255,255,255,.32); }
  .btn-outline-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

  /* ============ LOGO ============ */
  .logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; }
  .logo-badge {
    width: 40px; height: 40px; border-radius: 11px;
    background: var(--navy); display: grid; place-items: center;
    box-shadow: 0 6px 16px rgba(26,58,92,.28);
  }
  .logo-badge svg { width: 26px; height: 26px; }
  .logo-text { font-size: 1.32rem; letter-spacing: -.03em; color: var(--navy); }
  .logo-text .pro { color: var(--accent); }

  /* ============ HEADER ============ */
  header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.82);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(18,43,66,.06); }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
  .nav-links { display: flex; align-items: center; gap: 30px; }
  .nav-links a { font-weight: 600; font-size: .96rem; color: var(--ink); transition: color .15s; }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta { display: flex; align-items: center; gap: 12px; }
  .nav-cta .btn { padding: 11px 20px; font-size: .92rem; }
  .burger { display: none; width: 44px; height: 44px; border-radius: 12px; }
  .burger span { display: block; width: 22px; height: 2.2px; background: var(--navy); margin: 5px auto; border-radius: 2px; transition: .25s; }

  /* ============ HERO ============ */
  .hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
  .hero::before {
    content:""; position: absolute; top: -340px; right: -260px;
    width: 760px; height: 760px; border-radius: 50%;
    background: radial-gradient(circle, rgba(26,58,92,.10), transparent 62%);
    z-index: -1;
  }
  .hero::after {
    content:""; position: absolute; bottom: -300px; left: -240px;
    width: 620px; height: 620px; border-radius: 50%;
    background: radial-gradient(circle, rgba(207,91,52,.10), transparent 64%);
    z-index: -1;
  }
  .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .hero-pill {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--accent-soft); color: var(--accent-dark);
    padding: 7px 15px; border-radius: 999px;
    font-size: .82rem; font-weight: 700; margin-bottom: 22px;
  }
  .hero-pill .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
  .hero h1 span { color: var(--accent); }
  .hero p.lead { font-size: 1.16rem; margin: 22px 0 32px; max-width: 540px; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
  .hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; }
  .hero-trust li { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--ink); }
  .hero-trust svg { width: 18px; height: 18px; color: #2f9e5f; flex-shrink: 0; }

  /* ============ PHONE MOCKUP ============ */
  .phone-stage { position: relative; display: flex; justify-content: center; }
  .phone {
    width: 304px; background: #fff; border-radius: 42px;
    padding: 13px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--line); position: relative; z-index: 2;
  }
  .phone-screen { background: var(--bg-alt); border-radius: 32px; overflow: hidden; }
  .phone-notch {
    position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
    width: 116px; height: 26px; background: #fff; border-radius: 0 0 16px 16px; z-index: 3;
  }
  .app-top {
    background: var(--navy); color: #fff;
    padding: 38px 18px 18px; border-radius: 32px 32px 0 0;
  }
  .app-top .row { display: flex; align-items: center; gap: 10px; }
  .app-icn { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.12); display: grid; place-items: center; }
  .app-icn svg { width: 22px; height: 22px; }
  .app-top small { color: rgba(255,255,255,.62); font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
  .app-top strong { display: block; font-size: 1.02rem; font-weight: 700; }
  .app-body { padding: 16px 14px 14px; display: flex; flex-direction: column; gap: 11px; }
  .app-card {
    background: #fff; border: 1px solid var(--line); border-radius: 15px;
    padding: 12px 13px; display: flex; gap: 11px; align-items: flex-start;
    box-shadow: 0 4px 14px rgba(18,43,66,.05);
  }
  .app-card .ic {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    display: grid; place-items: center;
  }
  .app-card .ic svg { width: 19px; height: 19px; }
  .ic.blue   { background: #e6effa; color: var(--navy-soft); }
  .ic.orange { background: var(--accent-soft); color: var(--accent); }
  .ic.green  { background: #e3f5ea; color: #2f9e5f; }
  .ic.purple { background: #ece8fb; color: #6a4fd0; }
  .app-card .tx { min-width: 0; }
  .app-card .tx b { font-size: .8rem; font-weight: 700; color: var(--ink); display: block; }
  .app-card .tx span { font-size: .7rem; color: var(--muted); }
  .app-tag {
    display: inline-block; margin-top: 4px; font-size: .6rem; font-weight: 700;
    padding: 2px 8px; border-radius: 999px; letter-spacing: .03em;
  }
  .tag-open  { background: #e3f5ea; color: #2f9e5f; }
  .tag-curso { background: var(--accent-soft); color: var(--accent-dark); }
  .app-nav {
    display: flex; justify-content: space-around; padding: 12px 8px 16px;
    background: #fff; border-top: 1px solid var(--line);
  }
  .app-nav i { width: 21px; height: 21px; color: #c2cdda; display: block; }
  .app-nav i.on { color: var(--accent); }

  .float-card {
    position: absolute; background: #fff; border-radius: 14px;
    box-shadow: var(--shadow-md); padding: 11px 14px;
    display: flex; align-items: center; gap: 9px; z-index: 3;
    font-size: .82rem; font-weight: 700;
  }
  .float-card svg { width: 26px; height: 26px; padding: 5px; border-radius: 8px; }
  .float-1 { top: 60px; left: -36px; }
  .float-1 svg { background: #e3f5ea; color: #2f9e5f; }
  .float-2 { bottom: 86px; right: -42px; }
  .float-2 svg { background: var(--accent-soft); color: var(--accent); }
  .float-2 small { display: block; font-weight: 500; color: var(--muted); font-size: .7rem; }

  /* ============ LOGOS / TRUST STRIP ============ */
  .strip { background: var(--navy); color: #fff; padding: 30px 0; }
  .strip-grid { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 24px; text-align: center; }
  .strip-item .num { font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; }
  .strip-item .num em { color: var(--gold); font-style: normal; }
  .strip-item p { color: rgba(255,255,255,.62); font-size: .88rem; font-weight: 600; }

  /* ============ PRIVACIDAD TOTAL ============ */
  .trust-bar {
    background: linear-gradient(180deg, #f3f7fb 0%, #ffffff 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
  }
  .trust-grid {
    display: flex; align-items: center; gap: 22px;
    max-width: 980px; margin: 0 auto;
  }
  .trust-icn {
    flex: 0 0 56px; width: 56px; height: 56px; border-radius: 14px;
    background: var(--navy); color: #fff;
    display: grid; place-items: center;
  }
  .trust-icn svg { width: 28px; height: 28px; }
  .trust-grid h3 {
    font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em;
    color: var(--ink); margin-bottom: 4px;
  }
  .trust-grid p { font-size: .95rem; color: var(--muted); }
  @media (max-width: 640px) {
    .trust-grid { flex-direction: column; align-items: flex-start; text-align: left; }
  }

  /* ============ PROBLEM ============ */
  .problem { background: var(--bg-alt); }
  .problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 14px; }
  .pain {
    background: #fff; border-radius: var(--radius); padding: 26px 24px;
    border: 1px solid var(--line);
  }
  .pain .x { width: 38px; height: 38px; border-radius: 11px; background: #fbe9e6; display: grid; place-items: center; margin-bottom: 14px; }
  .pain .x svg { width: 20px; height: 20px; color: #d0432f; }
  .pain h3 { margin-bottom: 6px; }
  .pain p { font-size: .94rem; }
  .problem-bridge { text-align: center; margin-top: 44px; font-size: 1.22rem; font-weight: 700; color: var(--ink); }
  .problem-bridge span { color: var(--accent); }

  /* ============ FEATURES ============ */
  .feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  .feat {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  }
  .feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
  .feat .ficon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(150deg, var(--navy), var(--navy-soft));
    display: grid; place-items: center; margin-bottom: 18px;
  }
  .feat:nth-child(3n+2) .ficon { background: linear-gradient(150deg, var(--accent), var(--accent-dark)); }
  .feat .ficon svg { width: 26px; height: 26px; color: #fff; }
  .feat h3 { margin-bottom: 8px; }
  .feat p { font-size: .95rem; }

  /* ============ SPLIT FEATURE ============ */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .split.alt .split-visual { order: -1; }
  .split-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
  .split-list li { display: flex; gap: 13px; align-items: flex-start; }
  .split-list .chk {
    width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
    background: var(--accent-soft); display: grid; place-items: center;
  }
  .split-list .chk svg { width: 15px; height: 15px; color: var(--accent); }
  .split-list b { color: var(--ink); font-weight: 700; }
  .split-list span { display: block; font-size: .92rem; color: var(--muted); }

  /* visual: providers card */
  .visual-box {
    background: var(--bg-alt); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm);
  }
  .prov-card {
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    padding: 16px; margin-bottom: 13px; display: flex; gap: 13px; align-items: center;
  }
  .prov-card:last-child { margin-bottom: 0; }
  .prov-logo {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
    display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 1.1rem;
  }
  .prov-card .meta { flex: 1; min-width: 0; }
  .prov-card .meta b { font-size: .95rem; }
  .prov-card .meta p { font-size: .8rem; }
  .stars { display: flex; gap: 2px; align-items: center; }
  .stars svg { width: 14px; height: 14px; color: var(--gold); }
  .stars span { font-size: .8rem; font-weight: 700; color: var(--ink); margin-left: 4px; }

  /* visual: voting */
  .vote-box { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
  .vote-row { margin-bottom: 13px; }
  .vote-row:last-child { margin-bottom: 0; }
  .vote-row .vr-top { display: flex; justify-content: space-between; font-size: .84rem; font-weight: 700; margin-bottom: 6px; }
  .vote-row .vr-top span:last-child { color: var(--navy-soft); }
  .vbar { height: 10px; background: var(--bg-alt); border-radius: 999px; overflow: hidden; }
  .vbar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--navy-soft), var(--navy)); }
  .vote-row:nth-child(2) .vbar i { background: linear-gradient(90deg, var(--accent), var(--accent-dark)); }
  .vote-secure {
    margin-top: 16px; display: flex; align-items: center; gap: 9px;
    background: #e3f5ea; border-radius: 12px; padding: 11px 13px;
    font-size: .82rem; font-weight: 700; color: #1f7a45;
  }
  .vote-secure svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ============ CATEGORY CHIPS ============ */
  .cat-intro { text-align: center; margin: 58px auto 0; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
  .cat-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
  .cat-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px;
    padding: 11px 18px; font-weight: 700; font-size: .92rem; color: var(--ink);
    transition: transform .16s ease, border-color .16s ease;
  }
  .cat-chip:hover { transform: translateY(-3px); border-color: var(--accent); }
  .cat-chip .em { font-size: 1.1rem; }

  /* ============ STEPS ============ */
  .steps { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
  .steps::before {
    content:""; position: absolute; top: -200px; right: -160px; width: 480px; height: 480px;
    border-radius: 50%; background: radial-gradient(circle, rgba(207,91,52,.22), transparent 65%);
  }
  .steps .section-head h2 { color: #fff; }
  .steps .section-head p { color: rgba(255,255,255,.68); }
  .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
  .step {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 26px 22px; position: relative;
  }
  .step .n {
    width: 40px; height: 40px; border-radius: 11px; background: var(--accent);
    display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
    margin-bottom: 16px;
  }
  .step h3 { color: #fff; margin-bottom: 7px; }
  .step p { color: rgba(255,255,255,.66); font-size: .92rem; }

  /* ============ AUDIENCE / ROLES ============ */
  .roles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  .role {
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; background: #fff;
  }
  .role .remoji { font-size: 1.7rem; margin-bottom: 10px; }
  .role h3 { margin-bottom: 8px; }
  .role p { font-size: .94rem; }

  /* ============ PRO BANNER ============ */
  .pro {
    background: linear-gradient(160deg, var(--navy), var(--navy-deep));
    color: #fff; border-radius: var(--radius-lg); overflow: hidden;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
    padding: 56px; position: relative;
  }
  .pro::after {
    content:""; position: absolute; right: -120px; bottom: -120px;
    width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(207,91,52,.26), transparent 66%);
  }
  .pro .eyebrow { color: var(--gold); }
  .pro .eyebrow::before { background: var(--gold); }
  .pro h2 { color: #fff; }
  .pro p { color: rgba(255,255,255,.72); margin: 14px 0 26px; }
  .pro-actions { display: flex; flex-wrap: wrap; gap: 13px; }
  .pro-side { position: relative; z-index: 1; }
  .pro-feature {
    display: flex; gap: 12px; align-items: flex-start;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px; padding: 15px 16px; margin-bottom: 12px;
  }
  .pro-feature:last-child { margin-bottom: 0; }
  .pro-feature svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
  .pro-feature b { font-size: .94rem; }
  .pro-feature span { font-size: .82rem; color: rgba(255,255,255,.62); }

  /* ============ PRICING ============ */
  .pricing { background: var(--bg-alt); }
  .price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1140px; margin: 0 auto; align-items: stretch; }
  .price-card {
    background: #fff; border: 1.6px solid var(--line); border-radius: var(--radius-lg);
    padding: 38px 34px; position: relative;
    display: flex; flex-direction: column;
  }
  .price-card.featured { border-color: var(--accent); box-shadow: 0 26px 56px rgba(207,91,52,.16); }
  .price-flag {
    position: absolute; top: -14px; left: 34px;
    background: var(--accent); color: #fff; font-size: .74rem; font-weight: 700;
    padding: 6px 14px; border-radius: 999px; letter-spacing: .03em;
  }
  .price-card h3 { font-size: 1.05rem; color: var(--muted); font-weight: 700; }
  .price-amt { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 4px; }
  .price-amt .big { font-size: 3.1rem; font-weight: 800; letter-spacing: -.04em; color: var(--ink); }
  .price-amt .per { font-size: .98rem; color: var(--muted); font-weight: 600; }
  .price-sub { font-size: .9rem; margin-bottom: 22px; }
  .price-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
  .price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--ink); font-weight: 500; }
  .price-list svg { width: 19px; height: 19px; color: #2f9e5f; flex-shrink: 0; margin-top: 2px; }
  .price-card .btn { width: 100%; margin-top: auto; }
  .price-note { text-align: center; margin-top: 30px; font-size: .9rem; }

  /* ============ ACCESS / FINAL CTA ============ */
  .access-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; align-items: stretch; }
  .access-card {
    border-radius: var(--radius-lg); padding: 42px 38px; position: relative; overflow: hidden;
    /* Flex column con la URL y el botón anclados abajo — así los
       dos botones quedan a la misma altura aunque el texto del
       cuerpo tenga distinta longitud. */
    display: flex; flex-direction: column; height: 100%;
  }
  .access-card > p { flex-grow: 1; }
  .access-card.vecinos { background: linear-gradient(155deg, #eef3f9, #dfe9f3); }
  .access-card.prof { background: linear-gradient(155deg, var(--navy), var(--navy-deep)); color: #fff; }
  .access-card .acc-icn {
    width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
    margin-bottom: 18px;
  }
  .access-card.vecinos .acc-icn { background: var(--navy); }
  .access-card.prof .acc-icn { background: rgba(255,255,255,.1); }
  .access-card .acc-icn svg { width: 32px; height: 32px; color: #fff; }
  .access-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
  .access-card.prof h3 { color: #fff; }
  .access-card p { font-size: .96rem; margin-bottom: 20px; }
  .access-card.prof p { color: rgba(255,255,255,.72); }
  .access-card .url { font-size: .86rem; font-weight: 700; margin-bottom: 18px; opacity: .8; }
  .access-card.vecinos .url { color: var(--navy-soft); }
  .access-card.prof .url { color: var(--gold); }
  .access-card .btn { width: 100%; }

  /* ============ FAQ ============ */
  .faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  details.faq {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 4px 22px; transition: border-color .2s, box-shadow .2s;
  }
  details.faq[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
  details.faq summary {
    list-style: none; cursor: pointer; padding: 18px 0;
    font-weight: 700; font-size: 1rem; color: var(--ink);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary .plus {
    width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px;
    background: var(--bg-alt); display: grid; place-items: center;
    transition: transform .25s, background .2s;
  }
  details.faq summary .plus svg { width: 14px; height: 14px; color: var(--accent); }
  details.faq[open] summary .plus { transform: rotate(45deg); background: var(--accent-soft); }
  details.faq .faq-body { padding: 0 0 20px; font-size: .96rem; color: var(--muted); }

  /* ============ FOOTER ============ */
  footer { background: var(--navy-deep); color: #fff; padding: 70px 0 30px; }
  /* ─────── Store badges (Google Play / iOS) ─────── */
  .store-badge {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    width: 220px; padding: 12px 18px;
    background: #000; color: #fff; font-weight: 700; font-size: .95rem;
    border-radius: 10px; text-decoration: none;
    transition: opacity .15s, transform .15s;
  }
  .store-badge:hover { opacity: .85; transform: translateY(-1px); }
  .store-badge.badge-disabled {
    background: #aab2bd; color: #fff; cursor: not-allowed;
    opacity: .85;
  }
  .store-badge.badge-disabled:hover { transform: none; opacity: .85; }
  /* En móvil, ocultar el badge del OTRO sistema (no quieres ver iOS en Android) */
  body[data-comunya-os="android"] .store-ios { display: none; }
  body[data-comunya-os="ios"] .store-android { display: none; }
  @media (max-width: 720px) {
    #descarga > .wrap > div[style*="grid-template-columns: 1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }
  }

  .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
  .foot-brand .logo-text { color: #fff; }
  .foot-brand p { color: rgba(255,255,255,.55); font-size: .92rem; margin-top: 16px; max-width: 290px; }
  .foot-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 16px; font-weight: 700; }
  .foot-col a { display: block; color: rgba(255,255,255,.78); font-size: .93rem; padding: 6px 0; transition: color .15s; }
  .foot-col a:hover { color: var(--accent); }
  .foot-bottom {
    margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: .85rem; color: rgba(255,255,255,.5);
  }

  /* ============ REVEAL ============ */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 940px) {
    section { padding: 72px 0; }
    .hero-grid, .split, .pro, .foot-grid { grid-template-columns: 1fr; gap: 44px; }
    .split.alt .split-visual { order: 0; }
    .feat-grid, .problem-grid, .roles-grid, .steps-grid { grid-template-columns: repeat(2,1fr); }
    .price-grid { grid-template-columns: 1fr; max-width: 440px; }
    .pro { padding: 40px 30px; }
    .foot-grid { gap: 32px; }
    .nav-links, .nav-cta .btn-ghost { display: none; }
    .burger { display: block; }
    .mobile-menu.open { display: flex; }
  }
  @media (max-width: 600px) {
    .wrap { padding: 0 18px; }
    section { padding: 60px 0; }
    .feat-grid, .problem-grid, .roles-grid, .steps-grid, .price-grid, .access-grid { grid-template-columns: 1fr; }
    .hero { padding: 44px 0 70px; }
    .hero-actions .btn, .pro-actions .btn { flex: 1; }
    .float-1, .float-2 { display: none; }
    .pro { padding: 34px 22px; }
    .price-card, .access-card { padding: 32px 26px; }
    .foot-bottom { flex-direction: column; }
  }

  /* mobile menu */
  .mobile-menu {
    display: none; position: fixed; inset: 76px 0 auto 0;
    background: #fff; flex-direction: column; padding: 22px;
    box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line); z-index: 99; gap: 4px;
  }
  .mobile-menu a { padding: 13px 8px; font-weight: 700; border-bottom: 1px solid var(--line); }
  .mobile-menu a:last-of-type { border: none; }
  .mobile-menu .btn { margin-top: 10px; }

  @media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
  }


/* ===== Selector de idioma flotante (globo) ===== */
.lang-fab{position:fixed;right:18px;bottom:18px;z-index:1000}
.lang-fab>summary{list-style:none;cursor:pointer;width:50px;height:50px;border-radius:50%;background:var(--navy);color:#fff;display:grid;place-items:center;box-shadow:0 10px 30px rgba(0,0,0,.28);transition:transform .15s,background .15s}
.lang-fab>summary::-webkit-details-marker{display:none}
.lang-fab>summary:hover{transform:translateY(-2px)}
.lang-fab>summary svg{width:25px;height:25px}
.lang-fab[open]>summary{background:var(--accent)}
.lang-menu{position:absolute;right:0;bottom:62px;background:#fff;border-radius:14px;padding:7px;box-shadow:0 16px 44px rgba(0,0,0,.2);border:1px solid var(--line);min-width:186px;display:flex;flex-direction:column;gap:2px;animation:langPop .14s ease}
@keyframes langPop{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.lang-menu a{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:11px 14px;border-radius:9px;color:var(--ink);font-weight:600;font-size:.95rem;transition:background .12s}
.lang-menu a:hover{background:#f1f5f9}
.lang-menu a[aria-current="true"]{background:var(--navy);color:#fff}
.lang-menu a .code{font-size:.72rem;font-weight:800;letter-spacing:.05em;opacity:.55}
.lang-menu a[aria-current="true"] .code{opacity:.85}
@media (max-width:860px){.lang-fab{right:14px;bottom:14px}}
