  :root {
    color-scheme: light;
    --navy: #26243d;
    --navy-soft: #3a3860;
    --burgundy: #8c2f45;
    --teal: #295a63;
    --sand: #efe6d3;
    --sand-deep: #e5d8bd;
    --paper: #fcfaf5;
    --white: #ffffff;
    --ink: #1f1d30;
    --ink-soft: #5a5769;
    --line: #e2d8c4;
    --line-strong: #cfc1a4;

    --f-display: 'Newsreader', 'Iowan Old Style', Georgia, serif;
    --f-body: 'Manrope', 'Segoe UI', system-ui, sans-serif;
    --f-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

    --gutter: clamp(18px, 5vw, 56px);
    --radius: 12px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  :focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 4px; }

  h1, h2, h3 { margin: 0; text-wrap: balance; color: var(--ink); }
  h1, h2 { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.015em; }
  h3 { font-family: var(--f-body); font-weight: 700; }
  p { margin: 0; }

  .wrap { max-width: 1180px; margin: 0 auto; padding-inline: var(--gutter); }

  .mono {
    font-family: var(--f-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .kicker { color: var(--burgundy); margin-bottom: 14px; display: block; }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  }
  .btn-primary { background: var(--navy); color: var(--white); }
  .btn-primary:hover { background: var(--navy-soft); }
  .btn-outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
  .btn-outline:hover { background: var(--navy); color: var(--white); }
  .btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  .ico { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

  /* ---------- header ---------- */
  header.site {
    position: sticky;
    top: env(safe-area-inset-top, 0px);
    z-index: 50;
    background: rgba(239, 230, 211, .94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line-strong);
  }
  .nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 10px; }
  .brand { display: block; flex-shrink: 0; }
  .brand img { height: 50px; width: auto; }
  nav.links { display: flex; gap: 28px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
  nav.links a { text-decoration: none; padding-block: 8px; transition: color .2s ease; }
  nav.links a:hover { color: var(--navy); }
  .nav-cta { min-height: 44px; padding: 10px 22px; font-size: .88rem; }
  .nav-actions { display: flex; align-items: center; gap: 8px; }
  .menu-btn {
    display: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--navy);
    background: transparent;
    cursor: pointer;
    place-items: center;
    padding: 0;
  }
  .menu-btn svg { width: 20px; height: 20px; stroke: var(--navy); stroke-width: 1.8; fill: none; stroke-linecap: round; }
  .menu-btn[aria-expanded="true"] { background: var(--navy); }
  .menu-btn[aria-expanded="true"] svg { stroke: var(--white); }
  .mnav { border-top: 1px solid var(--line-strong); }
  .mnav .wrap { display: flex; flex-direction: column; padding-block: 8px 16px; }
  .mnav a { text-decoration: none; font-weight: 600; padding: 12px 0; min-height: 44px; border-bottom: 1px solid var(--line); }
  .mnav a:last-child { border-bottom: none; }
  @media (max-width: 900px) {
    nav.links { display: none; }
    .menu-btn { display: grid; }
  }
  @media (min-width: 901px) { .mnav { display: none !important; } }

  .skip {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 100;
    background: var(--navy);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
  }
  .skip:focus { top: 12px; }

  section[id], .panel { scroll-margin-top: 84px; }

  /* ---------- hero ---------- */
  .hero {
    background-color: var(--sand);
    background-image: repeating-radial-gradient(circle at 92% 8%, transparent 0 13px, rgba(38, 36, 61, .045) 13px 14px);
    border-bottom: 1px solid var(--line-strong);
  }
  .hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
    padding-block: clamp(48px, 8vw, 104px);
  }
  @media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }
  .hero .kicker { color: var(--navy); }
  .hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.3rem); line-height: 1.02; margin-bottom: 22px; }
  .hero h1 em { font-style: italic; color: var(--burgundy); }
  .hero .lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 32px; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

  /* airmail envelope */
  .envelope {
    position: relative;
    padding: 12px;
    border-radius: 10px;
    background: repeating-linear-gradient(-45deg,
      var(--burgundy) 0 16px, var(--white) 16px 26px,
      var(--navy) 26px 42px, var(--white) 42px 52px);
    box-shadow: 0 30px 60px -20px rgba(38, 36, 61, .35), 0 2px 6px rgba(38, 36, 61, .08);
    transform: rotate(-2deg);
    max-width: 520px;
    width: 100%;
    justify-self: center;
  }
  .env-inner {
    position: relative;
    background: var(--white);
    border-radius: 4px;
    aspect-ratio: 1.55 / 1;
    padding: clamp(16px, 3vw, 26px);
    overflow: hidden;
  }
  .par-avion {
    position: absolute;
    top: clamp(16px, 3vw, 26px);
    left: clamp(16px, 3vw, 26px);
    border: 1.5px solid var(--navy);
    color: var(--navy);
    padding: 5px 10px;
    border-radius: 3px;
    line-height: 1.25;
    font-size: .62rem;
  }
  .par-avion span { display: block; color: var(--burgundy); }
  .env-stamp {
    position: absolute;
    top: clamp(12px, 2.4vw, 20px);
    right: clamp(12px, 2.4vw, 20px);
    width: 34%;
    transform: rotate(4deg);
    filter: drop-shadow(0 4px 8px rgba(38, 36, 61, .2));
  }
  .postmark {
    position: absolute;
    top: 7%;
    right: 27%;
    width: 36%;
    opacity: .72;
    transform: rotate(-12deg);
    pointer-events: none;
  }
  .env-address {
    position: absolute;
    left: clamp(16px, 3vw, 26px);
    right: 30%;
    bottom: clamp(16px, 3.4vw, 30px);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .env-address .mono { color: var(--ink-soft); font-size: .6rem; }
  .env-to { font-family: var(--f-display); font-style: italic; font-size: clamp(1.3rem, 2.8vw, 1.9rem); line-height: 1.1; color: var(--navy); }
  .env-rule { height: 1px; background: var(--line-strong); margin-block: 4px; }
  .env-line { font-size: clamp(.72rem, 1.4vw, .86rem); color: var(--ink-soft); font-weight: 600; }

  /* ---------- destinos ---------- */
  .destinos { border-bottom: 1px solid var(--line); background: var(--paper); }
  .destinos .wrap { display: flex; align-items: center; gap: clamp(18px, 4vw, 44px); flex-wrap: wrap; padding-block: 26px; }
  .destinos .mono { color: var(--ink-soft); }
  .dest-list { display: flex; flex-wrap: wrap; gap: clamp(14px, 3vw, 32px); align-items: center; }
  .dest {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: .92rem;
    color: var(--ink);
    padding: 6px 4px;
  }
  .dest img { height: 38px; width: auto; transition: transform .25s ease; }
  .dest:hover img { transform: rotate(-6deg) scale(1.06); }
  .dest-more { color: var(--ink-soft); font-weight: 600; }

  /* ---------- section shell ---------- */
  section.block { padding-block: clamp(64px, 9vw, 112px); }
  .head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 52px); }
  .head h2 { font-size: clamp(2rem, 3.8vw, 2.8rem); line-height: 1.1; margin-bottom: 14px; }
  .head p { color: var(--ink-soft); font-size: 1.05rem; max-width: 56ch; }

  /* ---------- por qué ---------- */
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-strong); }
  .why { padding: 28px 24px 8px 0; display: flex; flex-direction: column; gap: 12px; }
  .why + .why { padding-left: 24px; border-left: 1px solid var(--line); }
  .why h3 { font-size: 1.05rem; }
  .why p { color: var(--ink-soft); font-size: .93rem; }
  @media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
    .why, .why + .why { padding: 24px 16px 20px 0; border-left: none; }
    .why:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
    .why:nth-child(n+3) { border-top: 1px solid var(--line); }
  }
  @media (max-width: 520px) {
    .why-grid { grid-template-columns: 1fr; }
    .why:nth-child(even) { padding-left: 0; border-left: none; }
    .why:nth-child(n+2) { border-top: 1px solid var(--line); }
  }

  /* ---------- trámites (tabs) ---------- */
  .tramites { background: var(--sand); border-block: 1px solid var(--line-strong); }
  .tablist {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 8px 18px 8px 10px;
    border-radius: 999px;
    border: 1.5px solid var(--line-strong);
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  }
  @media (max-width: 560px) {
    .tablist { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .tab { justify-content: flex-start; text-align: left; padding-right: 12px; font-size: .88rem; line-height: 1.2; }
    .tab .count { display: none; }
    .tab { flex-shrink: 0; }
  }
  .tab img { height: 28px; width: auto; }
  .tab .globe { width: 28px; height: 28px; display: grid; place-items: center; }
  .tab .count { font-family: var(--f-mono); font-size: .7rem; color: var(--ink-soft); font-weight: 500; }
  .tab:hover { border-color: var(--navy); }
  .tab[aria-selected="true"] { background: var(--navy); border-color: var(--navy); color: var(--white); }
  .tab[aria-selected="true"] .count { color: #c9c6e0; }
  .tab[aria-selected="true"] .globe .ico { stroke: var(--white); }

  .panel-intro { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
  .panel-intro h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.6rem; }
  .panel-intro p { color: var(--ink-soft); max-width: 52ch; }

  .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  @media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
  .svc {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 14px;
    align-content: start;
  }
  .svc .ico, .svc .mini-flag { grid-row: span 2; margin-top: 2px; }
  .svc .mini-flag { height: 24px; width: auto; }
  .svc h4 { margin: 0; font-family: var(--f-body); font-weight: 700; font-size: .98rem; line-height: 1.35; color: var(--ink); text-wrap: balance; }
  .svc p { grid-column: 2; color: var(--ink-soft); font-size: .88rem; line-height: 1.5; }

  .panel-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
  @media (max-width: 760px) { .panel-foot { grid-template-columns: 1fr; } }
  .note {
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    padding: 18px 20px;
    font-size: .92rem;
    color: var(--ink-soft);
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .note b { color: var(--ink); }
  .note .ico { stroke: var(--burgundy); }
  a.jump {
    border-radius: var(--radius);
    padding: 18px 20px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-weight: 600;
    font-size: .95rem;
    transition: background-color .2s ease;
  }
  a.jump:hover { background: var(--navy-soft); }
  a.jump .mono { color: #c9c6e0; white-space: nowrap; }

  .anywhere {
    margin-top: 12px;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1.5px solid var(--navy);
    padding: clamp(20px, 3vw, 28px);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
  }
  .anywhere .ico { width: 36px; height: 36px; }
  .anywhere h3 { margin: 0 0 6px; font-family: var(--f-display); font-weight: 500; font-size: 1.4rem; }
  .anywhere p { color: var(--ink-soft); font-size: .95rem; max-width: 72ch; }
  @media (max-width: 560px) { .anywhere { grid-template-columns: 1fr; } }

  /* ---------- juicios ---------- */
  .juicios .top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: end; margin-bottom: clamp(32px, 5vw, 48px); }
  .juicios .top .head { margin-bottom: 0; }
  .juicios .aside { color: var(--ink-soft); font-size: 1.02rem; border-left: 2px solid var(--burgundy); padding-left: 20px; }
  .juicios .aside b { color: var(--ink); }
  @media (max-width: 900px) { .juicios .top { grid-template-columns: 1fr; } }

  .req-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  @media (max-width: 900px) { .req-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .req-grid { grid-template-columns: 1fr; } }
  .req { background: var(--sand); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 10px; }
  .req .mono { color: var(--burgundy); font-size: .7rem; }
  .req h3 { font-size: 1rem; }
  .req p { color: var(--ink-soft); font-size: .9rem; }

  .proofs { margin-top: clamp(36px, 5vw, 52px); }
  .proofs h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.5rem; margin-bottom: 18px; }
  .proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); }
  @media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .proof-grid { grid-template-columns: 1fr; } }
  .proof { padding: 18px 20px 18px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
  .proof b { font-size: .95rem; }
  .proof span { color: var(--ink-soft); font-size: .88rem; }

  .juicios-cta {
    margin-top: clamp(32px, 5vw, 48px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--line-strong);
  }
  .juicios-cta p { font-family: var(--f-display); font-size: clamp(1.25rem, 2.2vw, 1.55rem); line-height: 1.3; max-width: 38ch; color: var(--navy); }
  .fine { margin-top: 16px; font-size: .84rem; color: var(--ink-soft); }


  /* ---------- proceso ---------- */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; list-style: none; margin: 0; padding: 0; }
  .steps::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 22px;
    right: 22px;
    border-top: 2px dashed var(--line-strong);
  }
  .step { position: relative; display: flex; flex-direction: column; gap: 10px; }
  .step .num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--paper);
    border: 1.5px solid var(--navy);
    color: var(--navy);
    display: grid; place-items: center;
    font-family: var(--f-mono);
    font-size: .8rem;
    margin-bottom: 8px;
    position: relative;
  }
  .step h3 { font-size: 1.02rem; }
  .step p { color: var(--ink-soft); font-size: .92rem; }
  @media (max-width: 900px) {
    .steps { grid-template-columns: 1fr; gap: 26px; }
    .steps::before { top: 22px; bottom: 22px; left: 21px; right: auto; border-top: none; border-left: 2px dashed var(--line-strong); }
    .step { padding-left: 64px; }
    .step .num { position: absolute; left: 0; top: 0; margin: 0; }
  }

  a.more { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
  a.more:hover { color: var(--burgundy); }
  .guide-link { margin-top: 14px; }
  /* ---------- faq ---------- */
  .faq { border-top: 1px solid var(--line); }
  .faq .wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 72px); }
  @media (max-width: 900px) { .faq .wrap { grid-template-columns: 1fr; } }
  .faq-list { border-top: 1px solid var(--line-strong); }
  .faq-list details { border-bottom: 1px solid var(--line-strong); }
  .faq-list summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
    font-weight: 700;
    font-size: 1rem;
    min-height: 48px;
  }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary .pm { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--navy); display: grid; place-items: center; flex-shrink: 0; transition: transform .25s ease, background-color .2s ease; }
  .faq-list summary .pm svg { width: 12px; height: 12px; stroke: var(--navy); stroke-width: 2; fill: none; stroke-linecap: round; }
  .faq-list details[open] .pm { transform: rotate(45deg); background: var(--navy); }
  .faq-list details[open] .pm svg { stroke: var(--white); }
  .faq-list details p { color: var(--ink-soft); padding: 0 44px 22px 0; max-width: 62ch; }

  /* ---------- contacto ---------- */
  .contacto { background: var(--navy); color: var(--white); }
  .contacto .head { max-width: 760px; }
  .contacto .head h2 { color: var(--white); }
  .contacto .slogan-line { font-style: italic; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; max-width: 18ch; margin-bottom: 18px; }
  .contacto .head p { color: #cfcce2; }
  .contacto .kicker { color: #e9c9d1; }
  .contact-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 12px; }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .contact.main { background: var(--white); color: var(--ink); border-color: var(--white); }
  .contact .mono { color: #cfcce2; }
  .contact.main .mono { color: var(--burgundy); }
  .c-top { display: flex; align-items: center; gap: 12px; }
  .c-ico { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .1); flex-shrink: 0; }
  .c-ico svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .contact.main .c-ico { background: var(--navy); }
  .contact .value { font-size: 1.15rem; font-weight: 700; overflow-wrap: break-word; user-select: all; }
  .contact .actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
  .chip-btn {
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--f-body);
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, .45);
    background: transparent;
    color: var(--white);
    transition: background-color .2s ease, color .2s ease;
  }
  .chip-btn:hover { background: var(--white); color: var(--navy); }
  .contact.main .chip-btn { border-color: var(--navy); color: var(--navy); }
  .contact.main .chip-btn.solid { background: var(--navy); color: var(--white); }
  .contact.main .chip-btn:hover { background: var(--navy-soft); color: var(--white); }

  /* ---------- footer ---------- */
  footer { background: var(--navy); color: #bdbad4; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .88rem; }
  footer a { text-decoration: none; }
  footer a:hover { color: var(--white); }
  .f-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 28px 48px; flex-wrap: wrap; padding-block: 40px 28px; }
  .f-brand { display: flex; align-items: center; gap: 18px; max-width: 460px; }
  .f-brand img { width: 96px; height: auto; flex-shrink: 0; }
  .f-brand p { color: #cfcce2; }
  .f-links { display: flex; gap: 12px 24px; flex-wrap: wrap; padding-top: 8px; }
  .f-links a { padding-block: 6px; }
  .f-legal { display: flex; justify-content: space-between; gap: 8px 24px; flex-wrap: wrap; padding-block: 18px 26px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .8rem; color: #a9a6c4; }
  @media (max-width: 560px) { .f-brand { flex-direction: column; align-items: flex-start; } }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; }
  }

  /* ---------- landing pages ---------- */
  .crumbs { font-size: .82rem; color: var(--ink-soft); display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
  .crumbs a { color: var(--navy); font-weight: 600; }
  .page-hero { background-color: var(--sand); background-image: repeating-radial-gradient(circle at 96% 6%, transparent 0 13px, rgba(38, 36, 61, .045) 13px 14px); border-bottom: 1px solid var(--line-strong); }
  .page-hero .wrap { padding-block: clamp(36px, 6vw, 72px); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
  .page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.06; margin-bottom: 18px; max-width: 20ch; }
  .page-hero .lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; margin-bottom: 26px; }
  .page-hero .hero-flag { width: 150px; transform: rotate(4deg); filter: drop-shadow(0 12px 20px rgba(38, 36, 61, .22)); }
  @media (max-width: 760px) { .page-hero .wrap { grid-template-columns: 1fr; } .page-hero .hero-flag { display: none; } }
  .prose { max-width: 68ch; }
  .prose p + p { margin-top: 14px; }
  .prose p { color: var(--ink-soft); font-size: 1.02rem; }
  .prose b { color: var(--ink); }
  .check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
  .check-list li { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
  .check-list li .ico { width: 22px; height: 22px; margin-top: 1px; }
  .check-list li span { color: var(--ink-soft); }
  .check-list li b { color: var(--ink); }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: start; }
  @media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
  .alt { background: var(--sand); border-block: 1px solid var(--line-strong); }
  .alt .req { background: var(--paper); border: 1px solid var(--line); }
  .page-cta { display: flex; flex-wrap: wrap; gap: 12px; }
