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

    :root {
      --navy:   #0D1B2A;
      --navy2:  #0f2238;
      --navy3:  #162b40;
      --blue:   #00AEEF;
      --blue2:  #0093cc;
      --blue-pale: #e6f7fd;
      --gray:   #6B7280;
      --gray2:  #9ca3af;
      --light:  #f3f6f9;
      --white:  #ffffff;
    }

    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:hover { background: var(--blue2) !important; }
    .nav-cta::after { display: none !important; }

    /* ══════════════════════════════════
       HERO — full-bleed split with
       oversized sector count typography
    ══════════════════════════════════ */
    #hero {
      min-height: 100vh;
      background: linear-gradient(rgba(13, 27, 42, 0.89), rgba(13, 27, 42, 0.89)), url('../img/sectores.png') center/cover no-repeat;
      display: grid;
      grid-template-rows: 1fr auto;
      position: relative;
      overflow: hidden;
      padding-top: 72px;
    }

    /* Noise/grain texture overlay */
    #hero::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.4;
    }

    /* Giant background number */
    .hero-bg-count {
      position: absolute;
      font-family: 'DM Serif Display', serif;
      font-size: clamp(280px, 35vw, 520px);
      font-style: italic;
      color: rgba(0,174,239,0.04);
      right: -2vw;
      top: 50%;
      transform: translateY(-50%);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      letter-spacing: -10px;
    }

    /* Thin horizontal rules */
    .hero-hr {
      position: absolute; left: 0; right: 0;
      height: 1px;
      background: rgba(0,174,239,0.07);
    }
    .hero-hr-1 { top: 33.3%; }
    .hero-hr-2 { top: 66.6%; }

    /* Vertical rule */
    .hero-vr {
      position: absolute; top: 0; bottom: 0;
      left: 50%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(0,174,239,0.1) 20%, rgba(0,174,239,0.1) 80%, transparent);
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative; z-index: 2;
      height: calc(100vh - 72px);
    }

    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 60px 6vw 60px 8vw;
      border-right: 1px solid rgba(0,174,239,0.08);
    }

    .hero-breadcrumb {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 32px; color: rgba(255,255,255,0.3);
      font-size: 10px; font-weight: 600; letter-spacing: 2px;
      text-transform: uppercase;
    }
    .hero-breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
    .hero-breadcrumb a:hover { color: var(--blue); }
    .hero-breadcrumb span { color: rgba(0,174,239,0.4); }

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

    .hero-h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(44px, 5.5vw, 80px);
      font-weight: 400;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 32px;
    }
    .hero-h1 em {
      font-style: italic;
      color: var(--blue);
    }

    .hero-lead {
      color: rgba(255,255,255,0.45);
      font-size: 14px; line-height: 1.85;
      max-width: 400px;
      margin-bottom: 48px;
    }

    .hero-scroll {
      display: flex; align-items: center; gap: 12px;
      color: rgba(255,255,255,0.25); font-size: 10px;
      letter-spacing: 2px; text-transform: uppercase;
    }
    .scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.15); }
    .scroll-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--blue);
      animation: sdot 2s ease-in-out infinite;
    }
    @keyframes sdot { 0%,100%{opacity:1;transform:translateY(0)}50%{opacity:.4;transform:translateY(4px)} }

    /* Right — sector tiles preview */
    .hero-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(3, 1fr);
    }

    .hero-tile {
      padding: 28px 24px;
      border-right: 1px solid rgba(255,255,255,0.04);
      border-bottom: 1px solid rgba(255,255,255,0.04);
      display: flex; flex-direction: column; justify-content: flex-end;
      cursor: pointer;
      position: relative; overflow: hidden;
      transition: background 0.3s;
      text-decoration: none;
    }
    .hero-tile:nth-child(even) { border-right: none; }
    .hero-tile:nth-last-child(-n+2) { border-bottom: none; }
    .hero-tile:hover { background: rgba(0,174,239,0.07); }
    .hero-tile::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--blue);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .hero-tile:hover::after { transform: scaleX(1); }

    .ht-icon { font-size: 28px; margin-bottom: 12px; display: block; }
    .ht-name {
      font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.8);
      margin-bottom: 4px; line-height: 1.2;
    }
    .ht-sub { font-size: 10px; color: rgba(255,255,255,0.25); letter-spacing: 0.5px; }
    .ht-arrow {
      position: absolute; top: 20px; right: 20px;
      color: var(--blue); font-size: 14px;
      opacity: 0; transition: opacity 0.2s;
    }
    .hero-tile:hover .ht-arrow { opacity: 1; }

    /* ══════════════════════════════════
       SECTOR SELECTOR — INTERACTIVE TAB
    ══════════════════════════════════ */
    #sector-explorer {
      background: var(--light);
      position: relative;
    }

    /* Tab rail */
    .tab-rail {
      background: var(--navy);
      display: flex; overflow-x: auto;
      scrollbar-width: none;
      border-bottom: 1px solid rgba(0,174,239,0.1);
      position: sticky; top: 72px; z-index: 100;
    }
    .tab-rail::-webkit-scrollbar { display: none; }

    .tab-btn {
      flex: 1; min-width: 120px;
      padding: 16px 12px;
      background: none; border: none;
      display: flex; flex-direction: column; align-items: center; gap: 5px;
      cursor: pointer;
      position: relative;
      border-right: 1px solid rgba(255,255,255,0.04);
      transition: background 0.25s;
    }
    .tab-btn:last-child { border-right: none; }
    .tab-btn::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--blue);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .tab-btn.active { background: rgba(0,174,239,0.08); }
    .tab-btn.active::after { transform: scaleX(1); }
    .tab-btn:hover { background: rgba(0,174,239,0.05); }

    .tb-icon { font-size: 20px; }
    .tb-label {
      font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.45);
      letter-spacing: 0.5px; text-align: center; line-height: 1.3;
      transition: color 0.2s;
    }
    .tab-btn.active .tb-label,
    .tab-btn:hover  .tb-label { color: var(--white); }

    /* Sector panels */
    .sector-panels { position: relative; }

    .sector-panel {
      display: none;
      animation: panelIn 0.4s ease;
    }
    .sector-panel.active { display: block; }
    @keyframes panelIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Panel layout — hero strip + detail grid */
    .sp-hero {
      background: var(--navy);
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      min-height: 480px;
    }

    .sp-hero-left {
      padding: 72px 5vw 72px 8vw;
      display: flex; flex-direction: column; justify-content: center;
      border-right: 1px solid rgba(0,174,239,0.08);
      position: relative; overflow: hidden;
    }
    .sp-hero-left::before {
      content: attr(data-icon);
      position: absolute;
      font-size: 200px; line-height: 1;
      right: -20px; bottom: -20px;
      opacity: 0.04; pointer-events: none;
    }

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

    .sp-sector-num {
      font-family: 'DM Serif Display', serif;
      font-size: 80px; font-style: italic;
      color: rgba(0,174,239,0.1);
      line-height: 1;
    }

    .sp-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(28px, 3.5vw, 52px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.1; margin-bottom: 20px;
    }
    .sp-title em { font-style: italic; color: var(--blue); }

    .sp-lead {
      color: rgba(255,255,255,0.45);
      font-size: 14px; line-height: 1.85;
      margin-bottom: 36px; max-width: 420px;
    }

    .sp-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--blue); color: var(--white);
      padding: 12px 24px; border-radius: 3px;
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      width: fit-content;
      transition: background 0.2s, transform 0.2s;
      box-shadow: 0 4px 16px rgba(0,174,239,0.3);
    }
    .sp-cta:hover { background: var(--blue2); transform: translateY(-2px); }

    .sp-hero-right {
      padding: 72px 8vw 72px 5vw;
      display: flex; flex-direction: column; justify-content: center;
      gap: 0;
    }

    /* Requirements checklist */
    .sp-req-label {
      font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: rgba(0,174,239,0.6);
      margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
    }
    .sp-req-label::before { content: ''; width: 14px; height: 2px; background: var(--blue); }

    .sp-req-list {
      list-style: none;
      display: flex; flex-direction: column; gap: 0;
      margin-bottom: 40px;
    }
    .sp-req-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: padding-left 0.3s;
    }
    .sp-req-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
    .sp-req-item:hover { padding-left: 8px; }
    .sp-req-check {
      width: 22px; height: 22px; border-radius: 50%;
      background: rgba(0,174,239,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
      font-size: 10px; color: var(--blue); font-weight: 900;
    }
    .sp-req-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
    .sp-req-text strong { color: rgba(255,255,255,0.9); display: block; font-size: 13px; margin-bottom: 1px; }

    /* Services for sector */
    .sp-services {
      display: flex; gap: 8px; flex-wrap: wrap;
    }
    .sp-service-tag {
      background: rgba(0,174,239,0.1);
      border: 1px solid rgba(0,174,239,0.2);
      color: var(--blue); font-size: 10px; font-weight: 700;
      letter-spacing: 1px; padding: 5px 12px; border-radius: 2px;
    }

    /* Detail grid below hero */
    .sp-details {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 2px solid var(--navy);
    }

    .sp-detail-card {
      background: var(--white);
      padding: 48px 40px;
      border-right: 1px solid rgba(13,27,42,0.07);
      transition: background 0.3s;
    }
    .sp-detail-card:last-child { border-right: none; }
    .sp-detail-card:hover { background: var(--light); }

    .sp-dc-icon { font-size: 32px; margin-bottom: 20px; display: block; }
    .sp-dc-title {
      font-size: 14px; font-weight: 800; color: var(--navy);
      margin-bottom: 12px;
    }
    .sp-dc-text {
      font-size: 13px; color: var(--gray); line-height: 1.75;
    }
    .sp-dc-text strong { color: var(--navy); }

    /* ══════════════════════════════════
       GOBIERNO SPECIAL SECTION
       (always visible below sector explorer)
    ══════════════════════════════════ */
    #gobierno-especial {
      background: var(--navy2);
      padding: 100px 8vw;
      position: relative; overflow: hidden;
    }
    #gobierno-especial::before {
      content: '';
      position: absolute; top: -200px; right: -200px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,174,239,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

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

    .gov-label {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,174,239,0.12);
      border: 1px solid rgba(0,174,239,0.2);
      color: var(--blue); font-size: 9px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 12px; border-radius: 2px;
      margin-bottom: 24px; width: fit-content;
    }
    .gov-label::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--blue);
      animation: blink 1.5s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

    .gov-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(28px, 3.5vw, 50px);
      font-weight: 400; color: var(--white); line-height: 1.1;
      margin-bottom: 24px;
    }
    .gov-title em { font-style: italic; color: var(--blue); }

    .gov-lead {
      color: rgba(255,255,255,0.45);
      font-size: 14px; line-height: 1.85;
      margin-bottom: 44px;
    }

    .gov-capabilities {
      display: flex; flex-direction: column; gap: 0;
    }
    .gov-cap {
      display: grid; grid-template-columns: 44px 1fr;
      gap: 16px; align-items: start;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: padding-left 0.3s;
    }
    .gov-cap:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
    .gov-cap:hover { padding-left: 10px; }
    .gov-cap-icon {
      width: 44px; height: 44px; border-radius: 4px;
      background: rgba(0,174,239,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .gov-cap-body h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .gov-cap-body p  { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }

    /* Right — positioning cards */
    .gov-right { display: flex; flex-direction: column; gap: 16px; }

    .gov-strength {
      padding: 28px 28px;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 4px;
      transition: background 0.25s, border-color 0.25s;
    }
    .gov-strength:hover { background: rgba(0,174,239,0.06); border-color: rgba(0,174,239,0.2); }

    .gs-top {
      display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
    }
    .gs-icon { font-size: 22px; }
    .gs-title { font-size: 14px; font-weight: 800; color: var(--white); }
    .gs-text { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.65; }

    .gov-quote {
      background: rgba(0,174,239,0.08);
      border-left: 3px solid var(--blue);
      padding: 24px 28px;
      border-radius: 0 4px 4px 0;
    }
    .gov-quote p {
      color: rgba(255,255,255,0.65); font-size: 14px;
      line-height: 1.75; font-style: italic;
    }
    .gov-quote p strong { color: var(--white); font-style: normal; }

    /* ══════════════════════════════════
       MAQUILA COMPANIES SECTION
    ══════════════════════════════════ */
    #maquila-sector {
      background: var(--light);
      padding: 100px 8vw;
    }

    .maq-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }

    .maq-left h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(28px, 3.5vw, 50px);
      font-weight: 400; color: var(--navy); line-height: 1.1;
      margin-bottom: 24px;
    }
    .maq-left h2 em { font-style: italic; color: var(--blue); }
    .maq-left p {
      color: var(--gray); font-size: 14px; line-height: 1.85;
      margin-bottom: 32px;
    }

    .maq-cities {
      display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
    }
    .maq-city {
      background: var(--navy); color: rgba(255,255,255,0.7);
      font-size: 11px; font-weight: 700; letter-spacing: 1px;
      padding: 7px 16px; border-radius: 3px;
      display: flex; align-items: center; gap: 6px;
    }
    .maq-city::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--blue);
    }

    .maq-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--navy); color: var(--white);
      padding: 13px 26px; border-radius: 3px;
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      transition: background 0.2s;
    }
    .maq-cta:hover { background: var(--blue); }

    .maq-right {
      display: flex; flex-direction: column; gap: 14px;
    }
    .maq-benefit {
      display: flex; align-items: flex-start; gap: 16px;
      background: var(--white);
      border: 1px solid rgba(13,27,42,0.07);
      border-radius: 4px;
      padding: 20px 22px;
      transition: border-color 0.25s, transform 0.25s;
    }
    .maq-benefit:hover { border-color: rgba(0,174,239,0.3); transform: translateX(4px); }
    .mb-icon {
      width: 40px; height: 40px; border-radius: 6px;
      background: rgba(0,174,239,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .mb-content h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
    .mb-content p  { font-size: 12px; color: var(--gray); line-height: 1.55; }

    /* ══════════════════════════════════
       CTA FINAL
    ══════════════════════════════════ */
    #cta-final {
      background: var(--navy);
      padding: 100px 8vw;
      text-align: center;
      position: relative; overflow: hidden;
    }
    #cta-final::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,174,239,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

    .cta-tag {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--blue); font-size: 10px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      margin-bottom: 24px; justify-content: center;
    }

    #cta-final h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(32px, 4.5vw, 60px);
      font-weight: 400; color: var(--white); line-height: 1.1;
      margin-bottom: 20px;
    }
    #cta-final h2 em { font-style: italic; color: var(--blue); }
    #cta-final p {
      color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.8;
      margin-bottom: 48px;
    }

    .cta-buttons {
      display: flex; align-items: center; justify-content: center;
      gap: 14px; flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--blue); color: var(--white);
      padding: 14px 28px; border-radius: 3px;
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      box-shadow: 0 4px 20px rgba(0,174,239,0.35);
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--blue2); transform: translateY(-2px); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.75);
      padding: 14px 28px; border-radius: 3px;
      font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

    /* ── 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-content { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .sp-hero { grid-template-columns: 1fr; }
      .sp-details { grid-template-columns: 1fr; }
      .gov-layout, .maq-layout { grid-template-columns: 1fr; }
      #cta-final { text-align: left; }
      .cta-buttons { justify-content: flex-start; }
      nav .nav-links { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .footer-grid  { grid-template-columns: 1fr; }
    }
