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

    :root {
      --navy:      #0d1f3c;
      --navy-mid:  #1a3460;
      --blue:      #1e4d8c;
      --blue-light:#2a6abf;
      --gold:      #c9a84c;
      --gold-light:#e8c96e;
      --off-white: #f5f3ef;
      --white:     #ffffff;
      --text:      #1a1a2e;
      --text-muted:#5a6278;
      --border:    rgba(30,77,140,0.12);
      --shadow:    0 4px 32px rgba(13,31,60,0.10);
      --max-w:     1280px;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      overflow-x: hidden;
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 16px; left: 24px; right: 24px; z-index: 100;
      height: 64px;
      background: rgba(255,255,255,0.70);
      border: 1px solid rgba(255,255,255,0.45);
      border-radius: 20px;
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      box-shadow: 0 4px 20px rgba(13,31,60,0.08);
      transform: translateY(0);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
    }
    nav.nav--scrolled {
      box-shadow: 0 8px 32px rgba(13,31,60,0.14);
    }
    nav.nav--hidden {
      transform: translateY(calc(-100% - 20px));
    }
    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      height: 100%;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 40px;
    }

    .nav-logo {
      display: flex; align-items: baseline; gap: 6px;
      text-decoration: none;
    }
    .nav-logo-vr {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: -0.5px;
    }
    .nav-logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-bottom: 2px; }
    .nav-logo-tag {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .nav-links {
      display: flex; align-items: center; gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--navy); }

    .nav-cta {
      background: var(--navy);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 6px;
      font-size: 0.875rem !important;
      font-weight: 500 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--blue) !important; color: var(--white) !important; }

    /* ── HERO ── */
    .hero {
      margin-top: 0;
      padding-top: 96px;
      background: var(--navy);
    }
    .hero-inner {
      width: 100%;
      min-height: calc(100vh - 96px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 60px 20px;
    }
    .hero-content {
      width: 100%;
      max-width: 680px;
      margin: 0 auto;
    }

    .hero-pretag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.75rem;
    }
    .hero-pretag::before,
    .hero-pretag::after {
      content: '';
      display: block;
      width: 20px; height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 6vw, 4rem);
      font-weight: 500;
      line-height: 1.12;
      color: var(--white);
      margin-bottom: 1.25rem;
      max-width: 720px;
    }
    .hero-title em {
      font-style: normal;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: clamp(0.95rem, 2vw, 1.05rem);
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,0.6);
      max-width: 520px;
      margin: 0 auto 2.5rem;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      max-width: 360px;
      margin: 0 auto 3rem;
    }

    .btn-primary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--gold);
      color: var(--navy);
      text-decoration: none;
      padding: 18px 24px;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: background 0.2s, transform 0.15s;
      cursor: pointer;
      border: none;
      width: 100%;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-primary .btn-price {
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .btn-secondary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: transparent;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      padding: 14px 24px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.15);
      font-size: 0.875rem;
      font-weight: 500;
      transition: border-color 0.2s, color 0.2s;
      cursor: pointer;
      width: 100%;
    }
    .btn-secondary:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

    .hero-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .hero-trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-trust-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--white);
    }
    .hero-trust-label {
      font-size: 0.72rem;
      font-weight: 400;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.06em;
    }
    .hero-trust-sep {
      width: 1px;
      height: 32px;
      background: rgba(255,255,255,0.12);
    }

    /* service cards keep but hidden in new hero */
    .hero-right { display: none; }
    .service-card { display: none; }
    .service-icon { display: none; }
    .service-info { display: none; }
    .service-arrow { display: none; }

    @keyframes slideIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── PRICING ── */
    .pricing-section {
      padding: 100px 40px;
      background: var(--white);
    }

    .section-header {
      text-align: center;
      max-width: 580px;
      margin: 0 auto 4rem;
      padding: 0 40px;
    }
    .section-pretag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 500;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 860px;
      margin: 0 auto;
    }

    .pricing-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px;
      position: relative;
      transition: box-shadow 0.2s;
    }
    .pricing-card:hover { box-shadow: var(--shadow); }

    .pricing-card.featured {
      background: var(--navy);
      border-color: var(--navy);
    }
    .pricing-badge {
      position: absolute;
      top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .pricing-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }
    .pricing-card.featured .pricing-label { color: rgba(255,255,255,0.5); }

    .pricing-amount {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 0.5rem;
    }
    .pricing-amount .currency {
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--navy);
    }
    .pricing-card.featured .currency { color: var(--gold); }

    .pricing-amount .price {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 600;
      line-height: 1;
      color: var(--navy);
    }
    .pricing-card.featured .price { color: var(--white); }

    .pricing-note {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      line-height: 1.5;
    }
    .pricing-card.featured .pricing-note { color: rgba(255,255,255,0.55); }

    .pricing-consultation-credit {
      font-size: 0.8rem;
      background: rgba(201,168,76,0.15);
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 6px;
      padding: 8px 12px;
      margin-bottom: 1.25rem;
      line-height: 1.5;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 2.5rem;
    }
    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.7); }

    .pricing-features li::before {
      content: '';
      display: block;
      width: 16px; height: 16px;
      border-radius: 50%;
      background: rgba(30,77,140,0.1);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%231e4d8c' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      flex-shrink: 0;
      margin-top: 1px;
    }
    .pricing-card.featured .pricing-features li::before {
      background-color: rgba(201,168,76,0.2);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%23c9a84c' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .btn-pricing-primary {
      display: block;
      width: 100%;
      text-align: center;
      background: var(--gold);
      color: var(--navy);
      text-decoration: none;
      padding: 16px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      transition: background 0.2s;
      cursor: pointer;
      border: none;
    }
    .btn-pricing-primary:hover { background: var(--gold-light); }

    .btn-pricing-secondary {
      display: block;
      width: 100%;
      text-align: center;
      background: transparent;
      color: var(--navy);
      text-decoration: none;
      padding: 16px;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      font-size: 0.9rem;
      font-weight: 600;
      transition: border-color 0.2s;
      cursor: pointer;
    }
    .btn-pricing-secondary:hover { border-color: var(--blue); }

    .pricing-connector {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 2.5rem;
      padding: 20px;
      background: var(--off-white);
      border-radius: 10px;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }
    .pricing-connector-icon {
      width: 36px; height: 36px;
      background: var(--navy);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .pricing-connector-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; }
    .pricing-connector p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .pricing-connector strong { color: var(--navy); }

    /* ── HOW IT WORKS ── */
    .process-section {
      padding: 100px 40px;
      background: var(--off-white);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      max-width: 1200px;
      margin: 0 auto;
      background: var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .process-step {
      background: var(--white);
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: background 0.2s;
    }
    .process-step:hover { background: #f0f4fa; }

    .process-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 600;
      color: var(--border);
      line-height: 1;
    }
    .process-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--navy);
    }
    .process-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ── SERVICIOS ── */
    .services-section {
      padding: 100px 40px;
      background: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-full-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px;
      transition: box-shadow 0.2s, transform 0.15s;
      cursor: pointer;
      position: relative;
    }
    .service-full-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
    }

    .sfcard-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }
    .sfcard-icon {
      width: 48px; height: 48px;
      background: var(--navy);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .sfcard-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 1.8; }

    .sfcard-tag {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      background: rgba(30,77,140,0.06);
      padding: 5px 12px;
      border-radius: 20px;
    }

    .sfcard-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .sfcard-desc {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .sfcard-cta {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--blue);
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
    }
    .sfcard-cta::after {
      content: '';
      position: absolute;
      inset: 0;
    }

    /* ── GARANTIAS ── */
    .guarantee-section {
      padding: 80px 40px;
      background: var(--navy);
    }

    .guarantee-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .guarantee-item {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .guarantee-icon {
      width: 52px; height: 52px;
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .guarantee-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 1.8; }

    .guarantee-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--white);
    }
    .guarantee-desc {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
    }

    /* ── FAQ ── */
    .faq-section {
      padding: 100px 40px;
      background: var(--off-white);
    }

    .faq-list {
      max-width: 680px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .faq-item {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      text-align: left;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--navy);
    }
    .faq-question .icon {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--off-white);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.2s;
      font-size: 1.1rem;
      color: var(--blue);
    }
    .faq-item.open .faq-question .icon {
      background: var(--navy);
      color: var(--gold);
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer-inner {
      padding: 0 24px 20px;
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── CTA FINAL ── */
    .cta-section {
      padding: 100px 40px;
      background: var(--white);
      text-align: center;
    }

    .cta-box {
      max-width: 640px;
      margin: 0 auto;
    }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 500;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .cta-sub {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }
    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-cta-gold {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--navy);
      color: var(--white);
      text-decoration: none;
      padding: 18px 32px;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: background 0.2s;
      cursor: pointer;
      border: none;
    }
    .btn-cta-gold:hover { background: var(--blue); }

    .btn-cta-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--navy);
      text-decoration: none;
      padding: 18px 32px;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      font-size: 0.95rem;
      font-weight: 600;
      transition: border-color 0.2s;
      cursor: pointer;
    }
    .btn-cta-outline:hover { border-color: var(--navy); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 60px 40px 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      max-width: var(--max-w);
      margin: 0 auto 32px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-brand .nav-logo-vr { font-size: 1.6rem; color: var(--white); }
    .footer-tagline {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      margin-top: 12px;
      line-height: 1.6;
      max-width: 260px;
    }

    .footer-col-title {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 1.2rem;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .footer-copy {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.3);
    }
    .footer-legal {
      display: flex;
      gap: 20px;
    }
    .footer-legal a {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-legal a:hover { color: rgba(255,255,255,0.6); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: 1fr; }
      .guarantee-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .nav-inner { padding: 0 24px; }
    }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }

    @media (max-width: 600px) {
      nav {
        top: 12px; left: 12px; right: 12px;
        height: 56px;
        border-radius: 16px;
      }
      .hero { padding-top: 84px; }
      .page-hero { padding-top: 144px; }
      .nav-hamburger { display: flex; }
      .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 46px; left: 6px; right: 6px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 10px 20px 16px;
        border-radius: 14px;
        gap: 0;
        box-shadow: 0 6px 24px rgba(13,31,60,0.14);
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0.35s;
      }
      .nav-links.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
        transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
      }
      .nav-links li { border-bottom: 1px solid var(--border); }
      .nav-links li:last-child { border-bottom: none; }
      .nav-links a { padding: 13px 0; display: block; color: var(--text-muted) !important; }
      .nav-links .nav-cta {
        background: var(--navy) !important;
        color: var(--white) !important;
        text-align: center;
        border-radius: 8px;
        margin: 8px 0 4px;
        padding: 13px !important;
        display: block;
      }
      .nav-links .nav-cta:hover { background: var(--blue) !important; }
      .hero-trust { flex-wrap: wrap; }
      .process-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    /* ── PAGE LOAD ANIMATION ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-pretag { animation: fadeUp 0.5s ease 0.1s both; }
    .hero-title  { animation: fadeUp 0.5s ease 0.2s both; }
    .hero-sub    { animation: fadeUp 0.5s ease 0.3s both; }
    .hero-actions{ animation: fadeUp 0.5s ease 0.4s both; }
    .hero-trust  { animation: fadeUp 0.5s ease 0.5s both; }

    /* ══════════════════════════════════════════
       PÁGINAS DE SERVICIO
    ══════════════════════════════════════════ */

    /* ── Hero ── */
    .page-hero {
      margin-top: 0;
      background: var(--navy);
      padding: 176px 40px 80px;
    }
    .page-hero-inner {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .page-breadcrumb {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.8;
      margin-bottom: 1.5rem;
    }
    .page-breadcrumb a { color: inherit; text-decoration: none; }
    .page-breadcrumb span { margin: 0 8px; opacity: 0.5; }
    .page-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 500;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .page-title em { font-style: normal; color: var(--gold-light); }
    .page-subtitle {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
      max-width: 580px;
    }

    /* ── Contenido ── */
    .page-content {
      max-width: 760px;
      margin: 0 auto;
      padding: 80px 40px;
    }
    .content-block { margin-bottom: 3rem; }
    .content-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1rem;
    }
    .content-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    .content-text {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.8;
    }
    .content-text + .content-text { margin-top: 1rem; }

    /* ── Lista de necesidades ── */
    .needs-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 1.25rem;
    }
    .needs-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .needs-list li::before {
      content: '';
      display: block;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(30,77,140,0.08);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%231e4d8c' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ── Callout ── */
    .callout {
      background: rgba(201,168,76,0.07);
      border-left: 3px solid var(--gold);
      border-radius: 0 10px 10px 0;
      padding: 18px 22px;
      margin-top: 1.5rem;
    }
    .callout-title {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 6px;
    }
    .callout-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

    /* ── Pasos ── */
    .steps {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin-top: 1.5rem;
      border-radius: 12px;
      overflow: hidden;
    }
    .step {
      background: var(--off-white);
      padding: 24px 28px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .step:nth-child(even) { background: var(--white); border: 1px solid var(--border); }
    .step-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--border);
      line-height: 1;
      flex-shrink: 0;
      width: 32px;
    }
    .step-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
    .step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

    /* ── Timing ── */
    .timing-row {
      display: flex;
      gap: 20px;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }
    .timing-item {
      flex: 1;
      min-width: 140px;
      background: var(--navy);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
    }
    .timing-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 600;
      color: var(--gold);
    }
    .timing-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 6px; line-height: 1.4; }

    /* ── FAQ páginas de servicio ── */
    .svc-faq {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 1.5rem;
    }
    .svc-faq-item {
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 22px 24px;
      cursor: pointer;
    }
    .svc-faq-q {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--navy);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      user-select: none;
    }
    .svc-faq-q::after {
      content: '+';
      font-size: 1.3rem;
      font-weight: 300;
      color: var(--text-muted);
      flex-shrink: 0;
    }
    .svc-faq-item.open .svc-faq-q::after { content: '\2212'; }
    .svc-faq-a {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, margin-top 0.2s ease;
      margin-top: 0;
    }
    .svc-faq-item.open .svc-faq-a { max-height: 500px; margin-top: 10px; }

    /* ── CTA sticky ── */
    .cta-sticky {
      background: var(--off-white);
      border-top: 1px solid var(--border);
      padding: 48px 40px;
    }
    .cta-sticky-inner {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .cta-sticky-text h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }
    .cta-sticky-text p { font-size: 0.9rem; color: var(--text-muted); }
    .cta-sticky-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--navy);
      text-decoration: none;
      padding: 16px 28px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .btn-wa:hover { background: var(--gold-light); }
    .btn-tel {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--navy);
      text-decoration: none;
      padding: 16px 24px;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      font-size: 0.9rem;
      font-weight: 600;
      transition: border-color 0.2s;
      white-space: nowrap;
    }
    .btn-tel:hover { border-color: var(--navy); }

    /* ── NIE/TIE: diff grid, docs grid, cost row ── */
    .diff-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 1.5rem;
    }
    .diff-card { border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
    .diff-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .diff-card-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

    .docs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 1.5rem;
    }
    .doc-item {
      background: var(--off-white);
      border-radius: 8px;
      padding: 14px 18px;
      font-size: 0.875rem;
      color: var(--text-muted);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
    }
    .doc-item::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 6px;
    }

    .cost-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 1.5rem;
    }
    .cost-item { background: var(--off-white); border-radius: 12px; padding: 22px 24px; }
    .cost-type {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 8px;
    }
    .cost-amount {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .cost-detail { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

    /* ── Residencia: vías y arraigo ── */
    .vias-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 1.5rem;
    }
    .via-card { border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
    .via-tag {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      background: rgba(30,77,140,0.06);
      padding: 4px 10px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 10px;
    }
    .via-title { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .via-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
    .via-key { font-size: 0.78rem; color: var(--blue); font-weight: 600; margin-top: 10px; }

    .arraigo-section {
      margin-top: 1.5rem;
      background: rgba(13,31,60,0.03);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
    }
    .arraigo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .arraigo-item {
      background: var(--white);
      border-radius: 8px;
      padding: 14px;
      border: 1px solid var(--border);
    }
    .arraigo-item-title { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .arraigo-item-desc { font-size: 0.77rem; color: var(--text-muted); line-height: 1.5; }

    /* ── Reagrupación: familia y consulado ── */
    .fam-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 1.5rem;
    }
    .fam-item {
      background: var(--off-white);
      border-radius: 10px;
      padding: 20px 16px;
      text-align: center;
    }
    .fam-icon { font-size: 1.6rem; margin-bottom: 8px; }
    .fam-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
    .fam-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }

    .docs-consulate {
      background: var(--off-white);
      border-radius: 10px;
      padding: 20px 22px;
      margin-top: 12px;
    }
    .docs-consulate-title {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
    }
    .docs-consulate ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .docs-consulate ul li {
      font-size: 0.82rem;
      color: var(--text-muted);
      padding-left: 14px;
      position: relative;
      line-height: 1.5;
    }
    .docs-consulate ul li::before {
      content: '\00b7';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 700;
    }

    /* ── Nacionalidad: años, exámenes, después ── */
    .years-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 1.5rem;
    }
    .year-card {
      background: var(--off-white);
      border-radius: 12px;
      padding: 22px 18px;
      text-align: center;
    }
    .year-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--navy);
    }
    .year-label { font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-top: 2px; }
    .year-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; line-height: 1.4; }

    .exams-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 1.5rem;
    }
    .exam-card { border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
    .exam-tag {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(201,168,76,0.1);
      padding: 4px 10px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 10px;
    }
    .exam-title { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .exam-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

    .exemptions {
      background: var(--off-white);
      border-radius: 10px;
      padding: 20px 22px;
      margin-top: 1.5rem;
    }
    .exemptions-title {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }
    .exemptions ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .exemptions ul li {
      font-size: 0.85rem;
      color: var(--text-muted);
      padding-left: 16px;
      position: relative;
      line-height: 1.5;
    }
    .exemptions ul li::before {
      content: '\00b7';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 700;
      font-size: 1.1rem;
      line-height: 1.2;
    }

    .after-steps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 1.5rem;
    }
    .after-item {
      background: var(--off-white);
      border-radius: 10px;
      padding: 18px 20px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .after-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--gold);
      flex-shrink: 0;
    }
    .after-title { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
    .after-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

    /* ── Responsive páginas de servicio ── */
    @media (max-width: 700px) {
      .page-hero { padding: 156px 20px 60px; }
      .page-hero-inner { padding: 0; }
      .page-content { padding: 60px 20px; }
      .diff-grid { grid-template-columns: 1fr; }
      .docs-grid { grid-template-columns: 1fr; }
      .cost-row { grid-template-columns: 1fr; }
      .vias-grid { grid-template-columns: 1fr; }
      .arraigo-grid { grid-template-columns: 1fr; }
      .fam-grid { grid-template-columns: 1fr 1fr; }
      .years-grid { grid-template-columns: 1fr 1fr; }
      .exams-row { grid-template-columns: 1fr; }
      .after-steps { grid-template-columns: 1fr; }
      .cta-sticky { padding: 36px 20px; }
      .cta-sticky-inner { padding: 0; flex-direction: column; align-items: flex-start; }
    }
