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

    :root {
      --navy:   #0D1B2A;
      --navy2:  #112336;
      --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; }

    /* ── STICKY SERVICE NAV ── */
    .service-nav {
      position: sticky; top: 72px; z-index: 100;
      background: var(--navy);
      border-bottom: 1px solid rgba(0,174,239,0.15);
      display: flex; align-items: stretch;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .service-nav::-webkit-scrollbar { display: none; }

    .sn-item {
      flex: 1; min-width: 160px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 4px;
      padding: 14px 20px;
      text-decoration: none;
      border-right: 1px solid rgba(255,255,255,0.05);
      transition: background 0.2s;
      cursor: pointer;
      position: relative;
    }
    .sn-item::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--blue);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .sn-item:hover, .sn-item.active { background: rgba(0,174,239,0.08); }
    .sn-item:hover::after, .sn-item.active::after { transform: scaleX(1); }
    .sn-item:last-child { border-right: none; }
    .sn-num { font-size: 9px; font-weight: 700; color: rgba(0,174,239,0.5); letter-spacing: 1.5px; }
    .sn-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; text-align: center; }
    .sn-item.active .sn-label { color: var(--white); }

    /* ── PAGE HERO ── */
    #hero {
      min-height: 70vh;
      background: linear-gradient(rgba(13, 27, 42, 0.89), rgba(13, 27, 42, 0.89)), url('../img/servicios.png') center/cover no-repeat;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 72px 8vw 0;
      position: relative; overflow: hidden;
    }

    /* Diagonal stripe pattern */
    .hero-stripes {
      position: absolute; inset: 0; pointer-events: none;
      background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 40px,
        rgba(0,174,239,0.018) 40px,
        rgba(0,174,239,0.018) 41px
      );
    }

    .hero-glow {
      position: absolute; top: -80px; right: -80px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,174,239,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: end;
      padding-bottom: 72px;
    }

    .hero-left { }

    .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: 24px;
    }
    .hero-tag::before { content: ''; width: 20px; height: 2px; background: var(--blue); }

    .hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(52px, 7vw, 100px);
      font-weight: 900;
      font-style: italic;
      line-height: 0.92;
      color: var(--white);
      letter-spacing: -1px;
      margin-bottom: 36px;
    }
    .hero-title span { color: var(--blue); }

    .hero-desc {
      color: rgba(255,255,255,0.45);
      font-size: 14px; line-height: 1.85; max-width: 420px;
    }

    /* Service count indicators right side */
    .hero-right {
      display: flex; flex-direction: column; gap: 16px;
      justify-content: flex-end;
    }
    .hero-service-pill {
      display: flex; align-items: center; gap: 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 4px; padding: 16px 20px;
      text-decoration: none;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
    }
    .hero-service-pill:hover {
      background: rgba(0,174,239,0.08);
      border-color: rgba(0,174,239,0.25);
      transform: translateX(-6px);
    }
    .hsp-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px; font-weight: 900; font-style: italic;
      color: rgba(0,174,239,0.3);
      min-width: 32px;
    }
    .hsp-content { flex: 1; }
    .hsp-name { color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 2px; }
    .hsp-sub  { color: rgba(255,255,255,0.35); font-size: 11px; }
    .hsp-arrow { color: var(--blue); font-size: 16px; opacity: 0; transition: opacity 0.2s; }
    .hero-service-pill:hover .hsp-arrow { opacity: 1; }

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

    /* ── SERVICE SECTIONS ── */
    .service-section {
      scroll-margin-top: 130px;
    }

    /* ── 01 FUMIGACIÓN ── */
    #fumigacion {
      background: var(--white);
    }

    .svc-layout-A {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 640px;
    }

    .svc-content-panel {
      padding: 100px 8vw 100px 8vw;
      display: flex; flex-direction: column; justify-content: center;
    }
    .svc-content-panel.right-pad { padding: 100px 8vw 100px 6vw; }

    .svc-number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 120px; font-weight: 900; font-style: italic;
      color: rgba(0,174,239,0.07);
      line-height: 1; margin-bottom: -20px;
      display: block;
    }

    .svc-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(36px, 4vw, 60px);
      font-weight: 900; font-style: italic;
      color: var(--navy); line-height: 1;
      margin-bottom: 20px;
    }
    .svc-title.light { color: var(--white); }

    .svc-tagline {
      font-size: 14px; color: var(--gray); line-height: 1.85;
      margin-bottom: 36px; max-width: 460px;
    }
    .svc-tagline.light { color: rgba(255,255,255,0.5); }

    .svc-process {
      display: flex; flex-direction: column; gap: 0;
      margin-bottom: 40px;
    }
    .svc-step {
      display: grid; grid-template-columns: 44px 1fr;
      gap: 16px; align-items: start;
      padding: 20px 0;
      border-bottom: 1px solid rgba(13,27,42,0.07);
    }
    .svc-step:first-child { border-top: 1px solid rgba(13,27,42,0.07); }
    .svc-step.dark-border { border-color: rgba(255,255,255,0.07); }
    .svc-step.dark-border:first-child { border-top-color: rgba(255,255,255,0.07); }

    .step-marker {
      width: 44px; height: 44px; border-radius: 4px;
      background: rgba(0,174,239,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }
    .step-marker.dark { background: rgba(0,174,239,0.15); }

    .step-body h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .step-body p  { font-size: 12px; color: var(--gray); line-height: 1.65; }
    .step-body.light h4 { color: var(--white); }
    .step-body.light p  { color: rgba(255,255,255,0.45); }

    /* Visual panel — right side dark */
    .svc-visual-panel {
      background: var(--navy2);
      display: flex; flex-direction: column; justify-content: center;
      padding: 80px 6vw 80px 5vw;
      position: relative; overflow: hidden;
    }
    .svc-visual-panel.light-bg {
      background: var(--light);
    }

    /* Pattern overlays */
    .svp-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(0,174,239,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,174,239,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .svp-grid.dark {
      background-image:
        linear-gradient(rgba(13,27,42,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,27,42,0.06) 1px, transparent 1px);
    }

    .svp-corner-accent {
      position: absolute; top: 0; right: 0;
      width: 200px; height: 200px;
      border-bottom: 1px solid rgba(0,174,239,0.12);
      border-left: 1px solid rgba(0,174,239,0.12);
      pointer-events: none;
    }

    /* Big icon display */
    .svp-icon-display {
      position: relative; z-index: 2;
      margin-bottom: 36px;
    }
    .svp-big-icon {
      font-size: 72px; line-height: 1;
      filter: drop-shadow(0 8px 24px rgba(0,174,239,0.3));
      display: block;
    }

    .svp-feature-list {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; gap: 12px;
    }
    .svp-feature {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 18px;
      border: 1px solid rgba(0,174,239,0.12);
      border-radius: 4px;
      transition: background 0.2s, border-color 0.2s;
    }
    .svp-feature:hover { background: rgba(0,174,239,0.06); border-color: rgba(0,174,239,0.25); }
    .svp-feature.dark-item {
      border-color: rgba(13,27,42,0.1);
      background: var(--white);
    }
    .svp-feature.dark-item:hover { background: var(--blue-pale); border-color: rgba(0,174,239,0.3); }

    .svf-icon { font-size: 18px; }
    .svf-text { font-size: 13px; font-weight: 600; }
    .svf-text.light { color: rgba(255,255,255,0.75); }
    .svf-text.dark  { color: var(--navy); }

    /* Tags */
    .svc-tags {
      display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px;
    }
    .svc-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;
    }
    .svc-tag.dark {
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.6);
    }

    /* CTA inline */
    .svc-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--blue); color: var(--white);
      padding: 13px 26px; border-radius: 3px; text-decoration: none;
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      transition: background 0.2s, transform 0.2s;
      box-shadow: 0 4px 16px rgba(0,174,239,0.3);
      margin-top: 36px; width: fit-content;
    }
    .svc-cta:hover { background: var(--blue2); transform: translateY(-2px); }
    .svc-cta.navy-btn {
      background: var(--navy);
      box-shadow: 0 4px 16px rgba(13,27,42,0.25);
    }
    .svc-cta.navy-btn:hover { background: var(--navy3); }

    /* ── 02 SANITIZACIÓN ── */
    #sanitizacion {
      background: var(--navy);
    }

    .svc-layout-B {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 640px;
    }

    /* Left visual, right text */
    .svc-dark-visual {
      position: relative; overflow: hidden;
      background: var(--navy3);
      display: flex; flex-direction: column; justify-content: center;
      padding: 80px 5vw 80px 8vw;
    }

    /* Animated circle rings */
    .ring-container {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
    }
    .ring {
      position: absolute; border-radius: 50%;
      border: 1px solid rgba(0,174,239,0.1);
    }
    .ring-1 { width: 200px; height: 200px; animation: ringPulse 4s ease-in-out infinite; }
    .ring-2 { width: 320px; height: 320px; animation: ringPulse 4s 0.8s ease-in-out infinite; }
    .ring-3 { width: 460px; height: 460px; animation: ringPulse 4s 1.6s ease-in-out infinite; }
    @keyframes ringPulse {
      0%,100%{ opacity: 0.4; transform: scale(1); }
      50%    { opacity: 1;   transform: scale(1.04); }
    }

    .svc-dark-content { position: relative; z-index: 2; }

    .stat-block {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px;
    }
    .stat-cell {
      padding: 24px 20px;
      border: 1px solid rgba(255,255,255,0.06);
      transition: background 0.3s;
    }
    .stat-cell:hover { background: rgba(0,174,239,0.08); }
    .sc-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 36px; font-weight: 900; font-style: italic;
      color: var(--blue); line-height: 1;
    }
    .sc-label { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; letter-spacing: 0.5px; }

    .svc-dark-text-panel {
      background: var(--navy);
      padding: 100px 8vw 100px 6vw;
      display: flex; flex-direction: column; justify-content: center;
    }

    /* ── 03 PREVENTIVO ── */
    #preventivo {
      background: var(--light);
    }

    .svc-layout-C {
      padding: 100px 8vw;
    }

    .prev-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: end;
      margin-bottom: 72px;
    }

    .prev-intro { color: var(--gray); font-size: 14px; line-height: 1.85; margin-top: 20px; }

    /* Timeline-style program cards */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      border: 2px solid var(--navy);
      border-radius: 8px; overflow: hidden;
      margin-bottom: 64px;
    }

    .program-card {
      background: var(--white);
      padding: 44px 36px;
      position: relative; overflow: hidden;
      transition: background 0.3s;
      cursor: default;
    }
    .program-card:hover { background: var(--navy); }
    .program-card:hover .pc-freq   { color: var(--blue); }
    .program-card:hover .pc-title  { color: var(--white); }
    .program-card:hover .pc-desc   { color: rgba(255,255,255,0.5); }
    .program-card:hover .pc-badge  { background: rgba(0,174,239,0.15); color: var(--blue); border-color: rgba(0,174,239,0.3); }
    .program-card:hover .pc-divider { background: rgba(255,255,255,0.08); }
    .program-card:hover .pc-include-item { color: rgba(255,255,255,0.6); }
    .program-card:hover .pci-dot { background: var(--blue); }

    .pc-freq {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 48px; font-weight: 900; font-style: italic;
      color: var(--navy); line-height: 1;
      transition: color 0.3s;
    }
    .pc-title { font-size: 15px; font-weight: 800; color: var(--navy); margin: 8px 0 12px; transition: color 0.3s; }
    .pc-desc  { font-size: 12px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; transition: color 0.3s; }
    .pc-badge {
      display: inline-block;
      background: var(--blue-pale); color: var(--blue2);
      border: 1px solid rgba(0,174,239,0.2);
      font-size: 10px; font-weight: 700; letter-spacing: 1px;
      padding: 4px 10px; border-radius: 2px;
      margin-bottom: 24px;
      transition: background 0.3s, color 0.3s, border-color 0.3s;
    }
    .pc-divider { height: 1px; background: rgba(13,27,42,0.08); margin-bottom: 20px; transition: background 0.3s; }
    .pc-includes-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--blue); text-transform: uppercase; margin-bottom: 12px; }
    .pc-includes { display: flex; flex-direction: column; gap: 8px; }
    .pc-include-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; color: var(--gray);
      transition: color 0.3s;
    }
    .pci-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--gray2); flex-shrink: 0;
      transition: background 0.3s;
    }

    /* How it works — horizontal flow */
    .flow-section { }
    .flow-label {
      font-size: 10px; font-weight: 700; letter-spacing: 3px;
      color: var(--blue); text-transform: uppercase;
      margin-bottom: 36px;
      display: flex; align-items: center; gap: 10px;
    }
    .flow-label::before { content: ''; width: 20px; height: 2px; background: var(--blue); }

    .flow-steps {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 0; position: relative;
    }
    .flow-steps::before {
      content: '';
      position: absolute; top: 28px; left: 14%; right: 14%;
      height: 1px; background: rgba(0,174,239,0.2);
      z-index: 0;
    }
    .flow-step {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: 16px;
      position: relative; z-index: 1;
      padding: 0 8px;
    }
    .fs-bubble {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--navy); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      border: 2px solid rgba(0,174,239,0.25);
      transition: border-color 0.3s, background 0.3s;
    }
    .flow-step:hover .fs-bubble { background: var(--blue); border-color: var(--blue); }
    .fs-label { font-size: 11px; font-weight: 700; color: var(--navy); }
    .fs-sub   { font-size: 10px; color: var(--gray); line-height: 1.5; margin-top: -8px; }

    /* ── 04 MAQUILA ── */
    #maquila-svc {
      background: var(--navy);
      position: relative; overflow: hidden;
    }
    #maquila-svc::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background: repeating-linear-gradient(
        -45deg, transparent, transparent 60px,
        rgba(0,174,239,0.015) 60px, rgba(0,174,239,0.015) 61px
      );
    }

    .svc-layout-D {
      display: grid; grid-template-columns: 1fr 1fr;
      position: relative; z-index: 2;
    }

    .maq-content {
      padding: 100px 5vw 100px 8vw;
      border-right: 1px solid rgba(255,255,255,0.05);
    }

    .maq-advantage-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2px; margin-top: 40px;
    }
    .maq-adv {
      padding: 28px 24px;
      border: 1px solid rgba(255,255,255,0.05);
      transition: background 0.25s, border-color 0.25s;
    }
    .maq-adv:hover { background: rgba(0,174,239,0.07); border-color: rgba(0,174,239,0.2); }
    .maq-adv-icon { font-size: 24px; margin-bottom: 12px; display: block; }
    .maq-adv-title { font-size: 13px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
    .maq-adv-desc  { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }

    .maq-visual {
      padding: 100px 8vw 100px 5vw;
      display: flex; flex-direction: column; justify-content: center;
    }

    /* Network diagram visual */
    .network-diagram {
      position: relative; height: 340px; margin-bottom: 36px;
    }
    .nd-center {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--blue);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      box-shadow: 0 0 0 12px rgba(0,174,239,0.12), 0 0 0 24px rgba(0,174,239,0.06);
      z-index: 2;
    }
    .nd-center span { color: var(--white); font-size: 8px; font-weight: 800; letter-spacing: 1px; text-align: center; line-height: 1.3; }
    .nd-city {
      position: absolute;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(0,174,239,0.2);
      border-radius: 4px; padding: 8px 14px;
      color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 700;
      white-space: nowrap;
    }
    .nd-city::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--blue);
      display: inline-block; margin-right: 6px;
    }
    .nd-line {
      position: absolute; background: rgba(0,174,239,0.15);
      transform-origin: center;
      height: 1px;
      animation: linePulse 3s ease-in-out infinite;
    }
    @keyframes linePulse { 0%,100%{opacity:0.3} 50%{opacity:0.8} }

    .maq-bottom-cta {
      background: rgba(0,174,239,0.08);
      border: 1px solid rgba(0,174,239,0.2);
      border-radius: 4px; padding: 28px 28px;
    }
    .maq-bottom-cta p {
      color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.7;
      margin-bottom: 20px;
    }
    .maq-bottom-cta p strong { color: var(--white); }

    /* ── PROCESS OVERVIEW ── */
    #proceso {
      background: var(--white);
      padding: 100px 8vw;
    }

    .proceso-header { text-align: center; margin-bottom: 72px; }
    .proceso-header .section-tag { justify-content: center; }
    .proceso-header .section-tag::before { display: none; }

    .proceso-timeline {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative;
    }
    .proceso-timeline::before {
      content: '';
      position: absolute; top: 48px; left: 12%; right: 12%;
      height: 2px;
      background: linear-gradient(to right, var(--blue), rgba(0,174,239,0.3));
    }

    .pt-step {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; padding: 0 20px;
      position: relative; z-index: 1;
    }
    .pt-icon-wrap {
      width: 96px; height: 96px; border-radius: 50%;
      background: var(--light);
      border: 2px solid rgba(0,174,239,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 36px; margin-bottom: 28px;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }
    .pt-step:hover .pt-icon-wrap {
      background: var(--blue);
      border-color: var(--blue);
      transform: scale(1.08);
    }
    .pt-num {
      position: absolute; top: 0; right: calc(50% - 52px);
      background: var(--blue); color: var(--white);
      width: 22px; height: 22px; border-radius: 50%;
      font-size: 10px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
    }
    .pt-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
    .pt-desc  { font-size: 12px; color: var(--gray); line-height: 1.65; }

    /* ── FINAL CTA ── */
    #cta-final {
      background: var(--navy);
      padding: 100px 8vw;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      position: relative; overflow: hidden;
    }
    #cta-final::after {
      content: 'KA';
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 280px; font-weight: 900; font-style: italic;
      color: rgba(0,174,239,0.03);
      position: absolute; right: 5vw; bottom: -40px;
      line-height: 1; pointer-events: none;
    }

    #cta-final h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 900; font-style: italic;
      color: var(--white); line-height: 1;
      margin-bottom: 20px;
    }
    #cta-final h2 span { color: var(--blue); }
    #cta-final p {
      color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.8;
    }

    .final-actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }
    .final-btn {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 28px; border-radius: 4px; text-decoration: none;
      transition: transform 0.2s, background 0.2s;
    }
    .final-btn:hover { transform: translateX(6px); }
    .final-btn.primary { background: var(--blue); }
    .final-btn.primary:hover { background: var(--blue2); }
    .final-btn.outline { border: 1px solid rgba(255,255,255,0.1); }
    .final-btn.outline:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.2); }
    .fba-text strong { display: block; color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
    .fba-text span   { color: rgba(255,255,255,0.4); font-size: 11px; }
    .fba-arrow { color: var(--white); font-size: 18px; opacity: 0.6; }

    /* ── 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;
    }

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

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .svc-layout-A, .svc-layout-B, .svc-layout-D { grid-template-columns: 1fr; }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .prev-header, #cta-final { grid-template-columns: 1fr; }
      .programs-grid { grid-template-columns: 1fr; }
      .flow-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
      .flow-steps::before { display: none; }
      .proceso-timeline { grid-template-columns: 1fr 1fr; gap: 40px; }
      .proceso-timeline::before { display: none; }
      .maq-advantage-grid { grid-template-columns: 1fr; }
      nav .nav-links { display: none; }
    }
