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

    :root {
      --navy:      #0D1B2A;
      --navy2:     #0f2035;
      --navy3:     #162b40;
      --blue:      #00AEEF;
      --blue2:     #0093cc;
      --blue-pale: #e6f7fd;
      --blue-dim:  rgba(0,174,239,0.1);
      --gray:      #6B7280;
      --gray2:     #9ca3af;
      --light:     #f3f6f9;
      --warm:      #f8f6f3;
      --white:     #ffffff;

      /* Path accent colors */
      --color-cliente:  #00AEEF;
      --color-empresa:  #0f8a6e;
      --color-gobierno: #7c4dbe;
      --color-urgente:  #d97706;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 72px;
      background: rgba(13,27,42,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,174,239,0.12);
      transition: box-shadow 0.3s;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-mark {
      width: 40px; height: 40px; background: var(--blue);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 900; color: var(--white); letter-spacing: -1px;
    }
    .nav-brand { display: flex; flex-direction: column; line-height: 1; }
    .nav-brand strong { color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: 1px; }
    .nav-brand span   { color: var(--blue); font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.6); text-decoration: none;
      font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
      transition: color 0.2s; position: relative;
    }
    .nav-links a.active, .nav-links a:hover { color: var(--white); }
    .nav-links a.active::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--blue); border-radius: 1px;
    }
    .nav-cta {
      background: var(--blue) !important; color: var(--white) !important;
      padding: 9px 18px; border-radius: 3px;
      font-size: 11px !important; font-weight: 700 !important;
    }
    .nav-cta::after { display: none !important; }

    /* ══════════════════════════════════════
       HERO — split layout, warm left panel
       Unforgettable: path selector UI that
       morphs the form based on who you are
    ══════════════════════════════════════ */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 45% 1fr;
      padding-top: 72px;
    }

    /* Left — warm off-white, typographic */
    .hero-left {
      background: var(--warm);
      padding: 80px 5vw 80px 8vw;
      display: flex; flex-direction: column;
      justify-content: center;
      position: relative; overflow: hidden;
      border-right: 1px solid rgba(13,27,42,0.06);
    }

    /* Large background quote mark */
    .hero-left::before {
      content: '';
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      background-image:
        radial-gradient(rgba(0,174,239,0.04) 1.5px, transparent 1.5px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    .hero-left::after {
      content: '"';
      font-family: 'Fraunces', serif;
      font-size: 360px; font-weight: 900; font-style: italic;
      color: rgba(13,27,42,0.04);
      position: absolute;
      bottom: -80px; right: -20px;
      line-height: 1; pointer-events: none;
      user-select: none;
    }

    .hl-inner { position: relative; z-index: 2; }

    .hl-eyebrow {
      display: flex; align-items: center; gap: 10px;
      color: var(--blue); font-size: 10px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      margin-bottom: 28px;
    }
    .hl-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--blue); }

    .hl-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 700; font-style: italic;
      line-height: 1.02;
      color: var(--navy);
      margin-bottom: 32px;
      letter-spacing: -1px;
    }
    .hl-title em {
      font-style: normal;
      color: var(--blue);
      position: relative;
      display: inline-block;
    }

    .hl-promise {
      background: var(--white);
      border-left: 3px solid var(--blue);
      padding: 20px 24px;
      margin-bottom: 48px;
      border-radius: 0 4px 4px 0;
    }
    .hl-promise p {
      font-size: 14px; color: var(--navy);
      line-height: 1.7; font-weight: 500;
    }
    .hl-promise p span { color: var(--blue); font-weight: 700; }

    /* Contact channels */
    .contact-channels {
      display: flex; flex-direction: column; gap: 0;
    }
    .channel {
      display: flex; align-items: center; gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(13,27,42,0.07);
      text-decoration: none;
      transition: padding-left 0.25s;
    }
    .channel:first-child { border-top: 1px solid rgba(13,27,42,0.07); }
    .channel:hover { padding-left: 6px; }
    .ch-icon {
      width: 44px; height: 44px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .ch-icon.blue   { background: rgba(0,174,239,0.1); }
    .ch-icon.green  { background: rgba(37,211,102,0.1); }
    .ch-icon.navy   { background: rgba(13,27,42,0.07); }
    .ch-body { flex: 1; }
    .ch-label { font-size: 10px; font-weight: 700; color: var(--gray2); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2px; }
    .ch-value { font-size: 15px; font-weight: 700; color: var(--navy); }
    .ch-sub   { font-size: 11px; color: var(--gray); margin-top: 1px; }
    .ch-arrow { color: var(--blue); font-size: 14px; opacity: 0; transition: opacity 0.2s; }
    .channel:hover .ch-arrow { opacity: 1; }

    /* Response time badge */
    .response-badge {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 32px;
      background: rgba(0,174,239,0.08);
      border: 1px solid rgba(0,174,239,0.2);
      border-radius: 4px; padding: 10px 16px;
      width: fit-content;
    }
    .rb-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--blue);
      animation: rbPulse 1.5s ease-in-out infinite;
    }
    @keyframes rbPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
    .rb-text { font-size: 12px; font-weight: 700; color: var(--navy); }
    .rb-text span { color: var(--blue); }

    /* ── Hero Right — Smart form ── */
    .hero-right {
      background: var(--white);
      padding: 60px 8vw 60px 5vw;
      display: flex; flex-direction: column;
      justify-content: center;
    }

    /* Path selector */
    .path-selector {
      margin-bottom: 36px;
    }
    .ps-label {
      font-size: 11px; font-weight: 700; color: var(--gray);
      letter-spacing: 1.5px; text-transform: uppercase;
      margin-bottom: 14px; display: block;
    }
    .ps-options {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
    .ps-option {
      padding: 14px 16px;
      border: 1.5px solid rgba(13,27,42,0.1);
      border-radius: 6px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
      display: flex; align-items: center; gap: 10px;
      background: none;
      text-align: left;
    }
    .ps-option:hover { border-color: rgba(0,174,239,0.4); background: rgba(0,174,239,0.03); }
    .ps-option.selected {
      border-color: var(--blue);
      background: rgba(0,174,239,0.06);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,174,239,0.12);
    }
    .ps-option.selected-empresa  { --sel-color: var(--color-empresa);  border-color: var(--color-empresa);  background: rgba(15,138,110,0.05); }
    .ps-option.selected-gobierno { --sel-color: var(--color-gobierno); border-color: var(--color-gobierno); background: rgba(124,77,190,0.05); }
    .ps-option.selected-urgente  { --sel-color: var(--color-urgente);  border-color: var(--color-urgente);  background: rgba(217,119,6,0.05); }

    .pso-icon { font-size: 20px; flex-shrink: 0; }
    .pso-text { display: flex; flex-direction: column; }
    .pso-title { font-size: 12px; font-weight: 800; color: var(--navy); line-height: 1.2; }
    .pso-sub   { font-size: 10px; color: var(--gray); margin-top: 2px; }

    /* Accent bar on path selection */
    .path-accent-bar {
      height: 3px; border-radius: 2px;
      margin-bottom: 28px;
      transition: background 0.4s;
      background: rgba(13,27,42,0.07);
    }
    .path-accent-bar.cliente  { background: var(--color-cliente); }
    .path-accent-bar.empresa  { background: var(--color-empresa); }
    .path-accent-bar.gobierno { background: var(--color-gobierno); }
    .path-accent-bar.urgente  { background: var(--color-urgente); }

    /* Form heading (changes with path) */
    .form-heading { margin-bottom: 28px; }
    .form-heading h2 {
      font-family: 'Fraunces', serif;
      font-size: 26px; font-weight: 700; font-style: italic;
      color: var(--navy); line-height: 1.2; margin-bottom: 6px;
    }
    .form-heading p { font-size: 13px; color: var(--gray); }

    /* Form fields */
    .form-grid { display: flex; flex-direction: column; gap: 0; }
    .form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    .field {
      margin-bottom: 16px;
      position: relative;
    }
    .field label {
      display: block; font-size: 10px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gray); margin-bottom: 7px;
      transition: color 0.2s;
    }
    .field:focus-within label { color: var(--navy); }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid rgba(13,27,42,0.12);
      border-radius: 5px;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px; color: var(--navy);
      background: var(--white); outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }
    .field input::placeholder,
    .field textarea::placeholder { color: var(--gray2); }
    .field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
    .field select option { color: var(--navy); }
    .field textarea { resize: vertical; min-height: 90px; }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
    }

    /* Path-specific fields that show/hide */
    .path-field { display: none; }
    .path-field.visible { display: block; }
    .path-field-row { display: none; }
    .path-field-row.visible { display: grid; }

    /* Submit button */
    .submit-wrap { margin-top: 8px; }
    .form-submit {
      width: 100%;
      background: var(--navy); color: var(--white);
      border: none; border-radius: 5px;
      padding: 15px 24px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .form-submit:hover {
      background: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,174,239,0.3);
    }
    .form-submit .btn-icon { font-size: 14px; }

    .submit-note {
      text-align: center; margin-top: 12px;
      color: var(--gray2); font-size: 11px;
      display: flex; align-items: center; justify-content: center; gap: 6px;
    }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 48px 24px;
      animation: fadeUp 0.5s ease;
    }
    @keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
    .form-success.visible { display: block; }
    .success-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: rgba(0,174,239,0.1);
      border: 2px solid var(--blue);
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; margin: 0 auto 24px;
    }
    .form-success h3 {
      font-family: 'Fraunces', serif;
      font-size: 28px; font-weight: 700; font-style: italic;
      color: var(--navy); margin-bottom: 12px;
    }
    .form-success p { font-size: 14px; color: var(--gray); line-height: 1.7; }

    /* ══════════════════════════════════════
       LOCATION SECTION
    ══════════════════════════════════════ */
    #ubicacion {
      background: var(--light);
      padding: 80px 8vw;
    }

    .ubi-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 64px;
      align-items: center;
    }

    .ubi-info h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 700; font-style: italic;
      color: var(--navy); line-height: 1.1;
      margin-bottom: 28px;
    }
    .ubi-info h2 em { font-style: normal; color: var(--blue); }

    .ubi-details {
      display: flex; flex-direction: column; gap: 0;
      margin-bottom: 36px;
    }
    .ubi-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(13,27,42,0.07);
    }
    .ubi-item:first-child { border-top: 1px solid rgba(13,27,42,0.07); }
    .ui-icon {
      width: 40px; height: 40px; border-radius: 6px;
      background: rgba(0,174,239,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }
    .ui-body { }
    .ui-label { font-size: 10px; font-weight: 700; color: var(--gray2); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
    .ui-value { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.4; }
    .ui-sub   { font-size: 12px; color: var(--gray); margin-top: 2px; }

    .ubi-cta-strip {
      display: flex; gap: 10px; flex-wrap: wrap;
    }
    .ubi-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 20px; border-radius: 4px;
      font-size: 11px; font-weight: 700; letter-spacing: 1px;
      text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    }
    .ubi-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
    .ubi-btn.primary { background: var(--navy); color: var(--white); }
    .ubi-btn.primary:hover { background: var(--blue); box-shadow: 0 4px 16px rgba(0,174,239,0.3); }
    .ubi-btn.wa { background: #25d366; color: var(--white); }

    /* Map placeholder */
    .ubi-map {
      border-radius: 12px; overflow: hidden;
      position: relative;
      background: var(--navy);
      min-height: 380px;
      display: flex; align-items: center; justify-content: center;
    }

    /* Abstract Puebla map SVG */
    .map-visual {
      width: 100%; height: 100%;
      position: absolute; inset: 0;
    }

    /* Grid overlay */
    .map-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(0,174,239,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,174,239,0.06) 1px, transparent 1px);
      background-size: 32px 32px;
    }

    /* Map decoration elements */
    .map-center-mark {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      display: flex; flex-direction: column; align-items: center;
      gap: 8px; z-index: 5;
    }
    .mcm-pin {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--blue);
      box-shadow:
        0 0 0 6px rgba(0,174,239,0.2),
        0 0 0 12px rgba(0,174,239,0.1),
        0 0 24px rgba(0,174,239,0.4);
      animation: pinPulse 2.5s ease-in-out infinite;
    }
    @keyframes pinPulse {
      0%,100%{ box-shadow: 0 0 0 6px rgba(0,174,239,0.2), 0 0 0 12px rgba(0,174,239,0.1), 0 0 24px rgba(0,174,239,0.4); }
      50%    { box-shadow: 0 0 0 10px rgba(0,174,239,0.15), 0 0 0 20px rgba(0,174,239,0.06), 0 0 36px rgba(0,174,239,0.5); }
    }
    .mcm-label {
      background: var(--blue); color: var(--white);
      font-size: 11px; font-weight: 800; letter-spacing: 1px;
      padding: 6px 14px; border-radius: 3px;
      white-space: nowrap;
    }
    .mcm-sub {
      font-size: 10px; color: rgba(255,255,255,0.5);
      letter-spacing: 1.5px; text-transform: uppercase;
    }

    /* Decorative road lines */
    .map-roads {
      position: absolute; inset: 0; pointer-events: none;
    }

    /* Zone circles */
    .map-zone {
      position: absolute;
      top: 50%; left: 50%;
      border-radius: 50%;
      border: 1px solid rgba(0,174,239,0.12);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .mz-1 { width: 120px; height: 120px; border-color: rgba(0,174,239,0.2); }
    .mz-2 { width: 220px; height: 220px; }
    .mz-3 { width: 340px; height: 340px; border-style: dashed; }
    .mz-4 { width: 460px; height: 460px; border-color: rgba(0,174,239,0.05); }

    /* Zone labels */
    .zone-label {
      position: absolute;
      font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
      color: rgba(0,174,239,0.5); text-transform: uppercase;
    }

    /* Coverage info strip below map */
    .map-strip {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: rgba(13,27,42,0.85);
      backdrop-filter: blur(8px);
      padding: 14px 24px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
      z-index: 10;
    }
    .ms-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.65);
    }
    .ms-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--blue);
    }

    /* ══════════════════════════════════════
       FAQ SECTION
    ══════════════════════════════════════ */
    #faq {
      background: var(--white);
      padding: 80px 8vw;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
    }

    .faq-left { position: sticky; top: 100px; }
    .faq-left h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 700; font-style: italic;
      color: var(--navy); line-height: 1.1;
      margin-bottom: 16px;
    }
    .faq-left h2 em { font-style: normal; color: var(--blue); }
    .faq-left p { font-size: 13px; color: var(--gray); line-height: 1.8; }

    .faq-list { display: flex; flex-direction: column; gap: 0; }

    .faq-item {
      border-bottom: 1px solid rgba(13,27,42,0.08);
      overflow: hidden;
    }
    .faq-item:first-child { border-top: 1px solid rgba(13,27,42,0.08); }

    .faq-q {
      width: 100%; background: none; border: none;
      padding: 22px 0;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      text-align: left;
    }
    .faq-q-text {
      font-size: 14px; font-weight: 700; color: var(--navy);
      line-height: 1.4;
      transition: color 0.2s;
    }
    .faq-q:hover .faq-q-text { color: var(--blue); }
    .faq-q-icon {
      width: 28px; height: 28px; border-radius: 50%;
      border: 1.5px solid rgba(13,27,42,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 14px; color: var(--gray);
      transition: background 0.2s, border-color 0.2s, transform 0.3s, color 0.2s;
    }
    .faq-item.open .faq-q-icon {
      background: var(--blue); border-color: var(--blue);
      color: var(--white); transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0;
    }
    .faq-item.open .faq-a {
      max-height: 300px;
      padding-bottom: 20px;
    }
    .faq-a p {
      font-size: 13px; color: var(--gray); line-height: 1.8;
    }
    .faq-a p strong { color: var(--navy); }
    .faq-a a { color: var(--blue); text-decoration: none; font-weight: 600; }

    /* ══════════════════════════════════════
       GOBIERNO ANCHOR
    ══════════════════════════════════════ */
    #gobierno {
      background: var(--navy);
      padding: 72px 8vw;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative; overflow: hidden;
    }
    #gobierno::before {
      content: '';
      position: absolute; top: -150px; right: -150px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(124,77,190,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .gov-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(124,77,190,0.15);
      border: 1px solid rgba(124,77,190,0.3);
      color: #a78bfa;
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; padding: 5px 12px; border-radius: 2px;
      margin-bottom: 20px; width: fit-content;
    }

    #gobierno h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(24px, 3vw, 40px);
      font-weight: 700; font-style: italic;
      color: var(--white); line-height: 1.1;
      margin-bottom: 16px;
    }
    #gobierno h2 em { font-style: normal; color: #a78bfa; }
    #gobierno p {
      color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.85;
    }

    .gov-contact-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px; padding: 36px 32px;
    }
    .gcc-title {
      font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5);
      letter-spacing: 1.5px; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .gcc-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    .gcc-item {
      display: flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 4px; padding: 14px 18px;
    }
    .gcc-icon { font-size: 16px; }
    .gcc-text { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; }
    .gcc-cta {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      background: #7c4dbe; color: var(--white);
      padding: 13px 24px; border-radius: 4px;
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none; width: 100%;
      transition: background 0.2s;
    }
    .gcc-cta:hover { background: #6d3daf; }

    /* ── REVEAL DISABLED ── */
    .reveal, .reveal-l, .reveal-r {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 60px 8vw 32px;
      border-top: 1px solid rgba(0,174,239,0.15);
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand { display: flex; flex-direction: column; gap: 16px; }
    .footer-brand .tagline {
      color: rgba(255,255,255,0.4); font-size: 12px; line-height: 1.7; max-width: 260px;
    }
    .footer-col h5 {
      color: var(--white); font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--blue); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 24px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { color: rgba(255,255,255,0.3); font-size: 11px; }
    .footer-certs {
      display: flex; align-items: center; gap: 16px;
    }
    .cert-badge {
      border: 1px solid rgba(0,174,239,0.2);
      border-radius: 4px; padding: 4px 10px;
      color: rgba(255,255,255,0.4); font-size: 10px; font-weight: 600;
      letter-spacing: 1px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      #hero { grid-template-columns: 1fr; }
      .hero-left { min-height: auto; padding: 60px 5vw; }
      .hero-right { padding: 40px 5vw 60px; }
      .ubi-layout, .faq-layout, #gobierno { grid-template-columns: 1fr; gap: 40px; }
      .faq-left { position: static; }
      .ps-options { grid-template-columns: 1fr 1fr; }
      .form-row2 { grid-template-columns: 1fr; }
      nav .nav-links { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .ps-options { grid-template-columns: 1fr; }
      .footer-grid  { grid-template-columns: 1fr; }
    }
