﻿    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary:        #00AAF8;
      --primary-mid:    #0090D6;
      --primary-dark:   #0073CC;
      --navy:           #003787;
      --navy-deep:      #001d4e;
      --dark:           #1B1E35;
      --text-secondary: #4F505C;
      --text-muted:     #939397;
      --border:         #E4E8F2;
      --bg-light:       #EEF5FB;
      --bg-soft:        #F4F9FF;
      --white:          #FFFFFF;
      --green:          #7FC34A;
      --green-dark:     #008C42;
      --orange:         #FF9800;
      --yellow:         #ffc107;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      font-weight: 300;
      font-size: 16px;
      color: var(--dark);
      background: var(--white);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      padding-top: 64px;
    }

    h1,h2,h3,h4,h5 {
      font-family: 'Open Sans', sans-serif;
      font-weight: 700;
      line-height: 1.15;
    }

    a { color: var(--primary); text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {width: 80%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }


    /* =============================================
       NAVIGATION
       ============================================= */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--primary);
      border-bottom: 3px solid rgba(0,0,0,0.10);
    }

    .nav__topbar {
      border-bottom: 1px solid rgba(255,255,255,0.18);
      padding: 5px 0;
    }

    .nav__topbar .container {
      display: flex;
      justify-content: flex-end;
    }

    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      height: 58px;
    }

    .nav__logo-img {
      filter: brightness(0) invert(1);
      display: block;
      height: 38px;
      width: auto;
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav__links a {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.90);
      transition: color 0.2s;
      text-decoration: none;
      letter-spacing: 0.2px;
    }

    .nav__links a:hover { color: var(--white); }

    .nav__cta {
      border: 2px solid var(--white);
      color: var(--white) !important;
      padding: 8px 22px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }

    .nav__cta:hover {
      background: var(--white);
      color: var(--primary) !important;
    }

    .nav__portal {
      border: 1.5px solid rgba(255,255,255,0.60);
      color: rgba(255,255,255,0.90) !important;
      padding: 4px 16px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.3px;
      transition: all 0.2s;
    }

    .nav__portal:hover {
      background: rgba(255,255,255,0.15);
      color: var(--white) !important;
    }

    .animar {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

      .animar.visible {
        opacity: 1;
        transform: translateY(0);
      }
    /* =============================================
       HERO
       ============================================= */
    .hero {
      background:
            #4AAFF4;
      position: relative;
      overflow: hidden;
      padding: 0;
    }


    .hero__inner {
      display: grid;
      grid-template-columns: 9fr 11fr;
      gap: 48px;
      align-items: center;
      min-height: 520px;
      padding: 64px 0 80px;
      position: relative;
      z-index: 1;
    }

    /* ---- Left column: text ---- */
    .hero__text {
      color: var(--white);
    }

    .hero h1 {
      font-size: 3rem;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.12;
      letter-spacing: -0.5px;
    }

    .hero__sub {
      font-size: 1.31rem;
      font-weight: 300;
      color: var(--white);
      opacity: 0.92;
      line-height: 1.65;
      margin-bottom: 40px;
      max-width: 480px;
    }

    /* Trust pills â€” horizontal row like the reference */
    .hero__trust-row {
      display: flex;
      gap: 32px;
      margin-bottom: 40px;
    }

    .hero__trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
    }

    .hero__trust-icon {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(0,20,80,0.25);
    }

    .hero__trust-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: white;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero__trust-label {
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.35;
      max-width: 120px;
    }

    .hero__btn {
      display: inline-block;
      padding: 16px 44px;
      border-radius: 40px;
      font-family: 'Open Sans', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      text-decoration: none;
      line-height: 1;
      background: var(--white);
      color: var(--navy);
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }

    .hero__btn:hover {
      background: #e8f5ff;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    }

    /* ---- Right column: software mockup with video play overlay ---- */
    .hero__mockup {
      position: relative;
    }

    .sw-window {
      background: var(--white);
      border-radius: 14px;
      box-shadow: 0 24px 64px rgba(0,30,80,0.30), 0 0 0 1px rgba(255,255,255,0.1);
      overflow: hidden;
      position: relative;
    }

    .sw-titlebar {
      background: linear-gradient(135deg, var(--primary-mid), var(--navy));
      padding: 13px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: white;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.3px;
    }

    .sw-dots {
      display: flex;
      gap: 5px;
    }

    .sw-dots span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      display: block;
    }

    .sw-dots span:nth-child(1) { background: #ff5f57; }
    .sw-dots span:nth-child(2) { background: #ffbd2e; }
    .sw-dots span:nth-child(3) { background: #28c840; }

    .sw-body {
      padding: 14px;
      background: var(--bg-light);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .sw-row {
      background: white;
      border-radius: 8px;
      padding: 13px 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
      border-left: 3px solid var(--primary);
    }

    .sw-row--green  { border-left-color: var(--green-dark); }
    .sw-row--yellow { border-left-color: var(--orange); }

    .sw-row-info { flex: 1; }

    .sw-row-name {
      font-weight: 700;
      font-size: 13px;
      color: var(--dark);
      margin-bottom: 2px;
    }

    .sw-row-meta {
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 400;
    }

    .sw-pill {
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .sw-pill--green  { background: #e8f5e1; color: var(--green-dark); }
    .sw-pill--yellow { background: #fff3cd; color: #856404; }

    .sw-footer {
      background: white;
      border-radius: 8px;
      padding: 13px 14px;
      text-align: center;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .sw-footer-main {
      font-weight: 700;
      font-size: 12px;
      color: var(--green-dark);
      margin-bottom: 3px;
    }

    .sw-footer-sub {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* Play button overlay on top of the mockup */
    .sw-play-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 30, 80, 0.35);
      border-radius: 14px;
      z-index: 5;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .sw-play-overlay:hover {
      background: rgba(0, 30, 80, 0.45);
    }

    .sw-play-overlay:hover .sw-play-btn {
      transform: scale(1.1);
      box-shadow: 0 12px 44px rgba(0,20,60,0.55);
    }

    .sw-play-btn {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--navy);
      border: 3px solid rgba(255,255,255,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(0,20,60,0.4);
      transition: all 0.3s ease;
    }

    .sw-play-btn svg {
      width: 28px;
      height: 28px;
      fill: white;
      margin-left: 4px;
    }

    /* "Video" label below mockup */
    .sw-video-label {
      text-align: center;
      margin-top: 14px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.3px;
    }

    .sw-video-label span {
      background: rgba(255,255,255,0.12);
      padding: 5px 16px;
      border-radius: 20px;
      display: inline-block;
    }


    /* ---- Wave transition ---- */
    .hero__wave {
      background: var(--primary);
      line-height: 0;
      margin-bottom: -2px;
    }

    .hero__wave svg {
      display: block;
      width: 100%;
    }


    /* ---- Decorative floating elements on hero ---- */
    .hero__float {
      position: absolute;
      z-index: 0;
      pointer-events: none;
    }

    .hero__float--1 {
      top: 30px;
      right: 60px;
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: rgba(255,255,255,0.06);
      transform: rotate(20deg);
      animation: float-slow 6s ease-in-out infinite;
    }

    .hero__float--2 {
      bottom: 120px;
      left: 40px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      animation: float-slow 8s ease-in-out infinite reverse;
    }

    .hero__float--3 {
      top: 50%;
      left: 48%;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
      animation: float-slow 5s ease-in-out infinite;
    }

    @keyframes float-slow {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }



    /* =============================================
       SECTION 3: FEATURES (3 formas — zig-zag scroll)
       ============================================= */

    /* Shared intro header */
    .features-intro {
      padding: 100px 0 0;
      background: var(--bg-light);
      text-align: center;
      margin-top: -2px;
    }

    .features-intro h2 {
      font-size: 2.75rem;
      color: var(--dark);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .features-intro p {
      font-size: 1.06rem;
      color: var(--text-secondary);
      font-weight: 300;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Feature section block */
    .feat { padding: 80px 0; }
    .feat--light { background: var(--bg-light); }
    .feat--white { background: var(--white); }

    .feat__inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 56px;
      align-items: center;
    }
    .feat__inner--reverse { grid-template-columns: 1.1fr 1fr; }
    .feat__inner--reverse .feat__text  { order: 2; }
    .feat__inner--reverse .feat__mockup { order: 1; }

    .feat__text { position: relative; }

    .feat__step-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 4px;
    }

    .feat__step-num {
      font-family: 'Open Sans', sans-serif;
      font-weight: 1000;
      font-size: 110px;
      line-height: 1;
      color: var(--primary);
      opacity: 0.18;
      user-select: none;
      flex-shrink: 0;
    }

    .feat__badge {
      display: inline-block;
      font-size: 0.81rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 18px;
    }
    .feat__badge--blue  { background: #e8f5ff; color: var(--primary); }
    .feat__badge--green { background: #e8f5e1; color: var(--green-dark); }
    .feat__badge--beta  { background: #fff3cd; color: #856404; }

    .feat__title {
      font-size: clamp(20px, 2.4vw, 28px);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
      line-height: 1.25;
    }

    .feat__lead {
      font-size: 1.06rem;
      color: var(--text-secondary);
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 24px;
    }

    .feat__list {
      list-style: none;
      padding: 0;
      margin: 0 0 28px 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .feat__list li {
      font-size: 1.06rem;
      color: var(--text-secondary);
      line-height: 1.6;
      padding-left: 28px;
      position: relative;
    }
    .feat__list li::before {
      content: '';
      position: absolute;
      left: 0; top: 5px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--primary);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      background-size: 11px;
      background-repeat: no-repeat;
      background-position: center;
    }

    .feat__beta-note {
      background: #fff8e1;
      border: 1px solid var(--yellow);
      border-radius: 10px;
      padding: 13px 16px;
      margin-bottom: 24px;
      font-size: 13px;
      color: #7d6000;
      line-height: 1.6;
    }

    .feat__btn {
      display: inline-block;
      padding: 14px 40px;
      border-radius: 40px;
      font-family: 'Open Sans', sans-serif;
      font-weight: 700;
      font-size: 1.11rem;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      text-decoration: none;
      line-height: 1;
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 16px rgba(0,170,248,0.25);
      transition: all 0.2s;
    }
    .feat__btn:hover {
      background: var(--primary-mid);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,170,248,0.35);
    }

    /* Mockup window */
    .pm-window {
      background: var(--white);
      border-radius: 14px;
      box-shadow: 0 20px 56px rgba(0,30,80,0.13);
      overflow: hidden;
    }
    .pm-bar {
      padding: 13px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: white;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.3px;
    }
    .pm-bar--blue  { background: linear-gradient(135deg, var(--primary-mid), var(--primary)); }
    .pm-bar--green { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
    .pm-bar--navy  { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); }

    .pm-dots { display: flex; gap: 5px; }
    .pm-dots span { width: 9px; height: 9px; border-radius: 50%; }
    .pm-dots span:nth-child(1) { background: #ff5f57; }
    .pm-dots span:nth-child(2) { background: #ffbd2e; }
    .pm-dots span:nth-child(3) { background: #28c840; }

    .pm-body {
      padding: 14px;
      background: var(--bg-light);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .pm-row {
      background: white;
      border-radius: 8px;
      padding: 13px 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
      border-left: 3px solid var(--primary);
    }
    .pm-row--green { border-left-color: var(--green-dark); }
    .pm-row--navy  { border-left-color: var(--navy); }
    .pm-row-info { flex: 1; }
    .pm-row-name { font-weight: 700; font-size: 13px; color: var(--dark); margin-bottom: 2px; }
    .pm-row-meta { font-size: 11px; color: var(--text-muted); font-weight: 400; }

    .pm-pill {
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .pm-pill--blue   { background: #e8f5ff; color: var(--primary-dark); }
    .pm-pill--green  { background: #e8f5e1; color: var(--green-dark); }
    .pm-pill--yellow { background: #fff3cd; color: #856404; }
    .pm-pill--navy   { background: var(--navy); color: white; }

    .pm-check {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: #e8f5e1;
      color: var(--green-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
    }
    .pm-alert {
      background: #fff8e1;
      border: 1px solid var(--yellow);
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 11px;
      color: #7d6000;
      font-weight: 600;
    }
    .pm-footer {
      background: white;
      border-radius: 8px;
      padding: 13px 14px;
      text-align: center;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    .pm-footer-main { font-weight: 700; font-size: 12px; margin-bottom: 3px; }
    .pm-footer-sub  { font-size: 11px; color: var(--text-muted); }

    /* Wave separator */
    .feat-wave { line-height: 0; }
    .feat-wave svg { display: block; width: 100%; }


    /* =============================================
       STEP VISUAL — paso 2 screenshot + tracker
       ============================================= */
    .step-visual {
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
    }

    .step-visual__arrows {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: visible;
      z-index: 3;
    }

    @media (max-width: 500px) {
      .step-visual__arrows { display: none; }
    }

    .step-visual__header {
      background: var(--white);
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid var(--border);
      border-radius: 12px;
    }

    .step-visual__step {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
    }

    .step-visual__step--active {
      color: var(--primary);
      font-weight: 700;
    }

    .step-visual__num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #E4E8F2;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Mono', monospace;
      font-weight: 700;
      font-size: 12px;
      flex-shrink: 0;
    }

    .step-visual__num--active {
      width: 34px;
      height: 34px;
      background: var(--primary);
      color: var(--white);
      font-size: 14px;
      box-shadow: 0 3px 12px rgba(0,170,248,0.40);
    }

    .step-visual__chevron {
      color: var(--border);
      font-size: 20px;
      line-height: 1;
      font-weight: 300;
    }

    .step-visual__screen {
      position: relative;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: visible;
      box-shadow: 0 6px 32px rgba(0,0,0,0.14);
      line-height: 0;
    }

    .step-visual__img {
      width: 100%;
      display: block;
      border-radius: 11px;
    }

    .step-visual__callout {
      position: relative;
      background: #ffffff;
      color: var(--text-secondary);
      border: 1px solid #f03;
      padding: 10px 14px;
      border-radius: 10px;
      align-self: flex-start;
      max-width: 260px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.50);
    }

    .step-visual__callout--top {
      align-self: flex-end;
    }

    .step-visual__callout p {
      font-size: 12px;
      font-weight: bold;
      font-family: 'DM Sans', sans-serif;
      line-height: 1.4;
      margin: 0;
    }


    .step-visual--paso1 .step-visual__screen {
      height: 340px;
      overflow: hidden;
    }

    .step-visual--paso1 .step-visual__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right top;
    }

    @media (max-width: 500px) {
      .step-visual--paso1 .step-visual__screen {
        height: auto;
        overflow: visible;
      }

      .step-visual--paso1 .step-visual__img {
        object-fit: contain;
        height: auto;
        object-position: center top;
      }
    }

    .step-visual--paso3 .step-visual__screen {
      height: auto;
      overflow: visible;
    }

    .step-visual--paso3 .step-visual__img {
      width: 100%;
      height: auto;
      object-fit: unset;
    }


    /* =============================================
       SECTION 4: BENEFITS â€” 4-card grid
       ============================================= */
    .benefits {
      padding: 100px 0 80px;
      background: var(--white);
    }

    .benefits__header {
      text-align: center;
      margin-bottom: 64px;
    }

    .benefits__header h2 {
      font-size: 2.75rem;
      color: var(--dark);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .benefits__header p {
      font-size: 1.06rem;
      color: var(--text-secondary);
      font-weight: 300;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .benefits__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .benefit-card {
      background: var(--bg-soft);
      border-radius: 16px;
      padding: 36px 28px 32px;
      text-align: center;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      border: 1px solid transparent;
    }

    .benefit-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0,30,80,0.1);
      border-color: var(--border);
    }

    .benefit-card__icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 24px;
    }

    .benefit-card__icon--blue  { background: #dbeffe; }
    .benefit-card__icon--green { background: #ddf3d3; }
    .benefit-card__icon--navy  { background: #d4dfef; }
    .benefit-card__icon--orange { background: #ffecd2; }

    .benefit-card__icon svg {
      width: 26px;
      height: 26px;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .benefit-card h4 {
      font-size: 1.12rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .benefit-card p {
      font-size: 0.87rem;
      color: var(--text-secondary);
      line-height: 1.65;
      font-weight: 300;
    }


    /* =============================================
       CTA BAND â€” mid-page
       ============================================= */
    .cta-band {
      background: var(--primary);
      padding: 72px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      top: -200px;
      right: -100px;
      pointer-events: none;
    }

    .cta-band h2 {
      font-size: 2.75rem;
      color: var(--white);
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .cta-band p {
      font-size: 1.06rem;
      color: rgba(255,255,255,0.88);
      font-weight: 300;
      max-width: 540px;
      margin: 0 auto 32px;
      line-height: 1.65;
      position: relative;
      z-index: 1;
    }

    .cta-band__btn {
      display: inline-block;
      padding: 16px 48px;
      border-radius: 40px;
      font-family: 'Open Sans', sans-serif;
      font-weight: 700;
      font-size: 1.11rem;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      text-decoration: none;
      line-height: 1;
      background: var(--white);
      color: var(--navy);
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
      transition: all 0.2s;
      position: relative;
      z-index: 1;
    }

    .cta-band__btn:hover {
      background: #e8f5ff;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    }

    .cta-wave {
      line-height: 0;
    }

    .cta-wave svg {
      display: block;
      width: 100%;
    }


    /* =============================================
       SECTION 5: FAQ â€” single-column accordion
       ============================================= */
    .faq {
      padding: 100px 0 80px;
      background: var(--bg-soft);
    }

    .faq__header {
      text-align: center;
      margin-bottom: 56px;
    }

    .faq__header h2 {
      font-size: 2.75rem;
      color: var(--dark);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .faq__header p {
      font-size: 1.06rem;
      color: var(--text-secondary);
      font-weight: 300;
      max-width: 1000px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      border-radius: 16px;
      border: 1px solid var(--border);
      overflow: hidden;
      transition: all 0.3s;
    }

    .faq-question {
      width: 100%;
      padding: 24px 30px;
      background: none;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Open Sans', sans-serif;
      font-size: 1.06rem;
      font-weight: 600;
      color: var(--dark);
      cursor: pointer;
      text-align: left;
      outline: none;
      margin: 0;
      line-height: 1.45;
    }

    .faq-icon {
      font-size: 24px;
      color: var(--primary);
      transition: transform 0.3s;
      font-weight: 400;
      flex-shrink: 0;
      margin-left: 16px;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease-out;
    }

    .faq-answer p {
      padding: 0 30px 24px;
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.75;
      font-weight: 300;
    }

    .faq-answer strong {
      font-weight: 600;
      color: var(--dark);
    }


    /* =============================================
       SECTION 6: TESTIMONIALS
       ============================================= */
    .testimonials {
      padding: 100px 0 80px;
    }

    .testimonials__header {
      text-align: center;
      margin-bottom: 56px;
    }

    .testimonials__header h2 {
      font-size: 2.75rem;
      color: var(--dark);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .testimonials__header p {
      font-size: 1.06rem;
      color: var(--text-secondary);
      font-weight: 300;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 64px;
    }

    .testi-card {
      background: var(--white);
      border-radius: 16px;
      padding: 32px 28px 28px;
      position: relative;
      box-shadow: 0 2px 16px rgba(0,30,80,0.07);
      border: 1px solid var(--border);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex;
      flex-direction: column;
    }

    .testi-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,30,80,0.11);
    }

    .testi-card__stars {
      display: flex;
      gap: 4px;
      margin-bottom: 20px;
    }

    .testi-card__stars svg {
      width: 20px;
      height: 20px;
      fill: #F5A623;
    }

    .testi-card__text {
      font-size: 0.81rem;
      color: var(--text-secondary);
      line-height: 1.8;
      font-weight: 300;
      font-style: italic;
      padding-left: 14px;
      border-left: 3px solid var(--border);
      flex: 1;
      margin-bottom: 0;
    }

    .testi-card__divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 24px 0;
    }

    .testi-card__author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testi-card__avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 700;
      flex-shrink: 0;
      letter-spacing: 0.5px;
    }

    .testi-card__name {
      font-size: 0.81rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.3;
    }

    .testi-card__role {
      font-size: 0.81rem;
      color: var(--text-muted);
      font-weight: 400;
      margin-top: 2px;
    }

    /* Metrics band */
    /* Confianza */
    #confiar-2026 {
      background-color: #0f2440;
      padding: 80px 20px;
      color: #FFFFFF;
      position: relative;
      overflow: hidden;
    }

    #confiar-2026::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 10%;
      width: 500px;
      height: 500px;
      background-color: rgba(255,255,255,0.02);
      border-radius: 50%;
      transform: translateY(-50%);
      z-index: 1;
    }

    .confianza-container-2026 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      width: 80%;
      max-width: 1600px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .confianza-item-2026 {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 40px;
      position: relative;
    }

    .confianza-item-2026:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 15%;
      height: 70%;
      width: 1px;
      background-color: rgba(255,255,255,0.1);
    }

    .confianza-icon-box-2026 {
      width: 60px;
      height: 60px;
      background-color: rgba(255,255,255,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .confianza-item-2026:hover .confianza-icon-box-2026 {
      transform: scale(1.15);
      background-color: rgba(0,191,255,0.2);
    }

    .confianza-number-2026 {
      font-size: 48px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .confianza-number-2026.stacked {
      flex-direction: column;
      line-height: 1.1;
      gap: 0;
    }

    .confianza-number-2026 .cyan-text { color: #00BFFF; }
    .confianza-number-2026 .white-text { color: #FFFFFF; }

    .confianza-desc-2026 {
      color: #E2E8F0;
      font-size: 14px;
      line-height: 1.5;
      font-weight: 400;
    }


    /* =============================================
       FINAL CTA
       ============================================= */
    .final-cta {
      background: var(--navy);
      padding: 88px 0 72px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(255,255,255,0.02);
      top: -250px;
      left: -150px;
      pointer-events: none;
    }

    .final-cta::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.02);
      bottom: -180px;
      right: -80px;
      pointer-events: none;
    }

    .final-cta h2 {
      font-size: clamp(22px, 3vw, 38px);
      color: var(--white);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .final-cta__lead {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      font-weight: 300;
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.65;
      position: relative;
      z-index: 1;
    }

    .final-cta__btn {
      display: inline-block;
      padding: 18px 52px;
      border-radius: 40px;
      font-family: 'Open Sans', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      text-decoration: none;
      line-height: 1;
      background: var(--white);
      color: var(--navy);
      box-shadow: 0 4px 24px rgba(0,0,0,0.15);
      transition: all 0.2s;
      position: relative;
      z-index: 1;
    }

    .final-cta__btn:hover {
      background: #e8f5ff;
      transform: translateY(-2px);
      box-shadow: 0 8px 36px rgba(0,0,0,0.22);
    }

    .final-cta__tagline {
      margin-top: 24px;
      font-size: 15px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.5px;
      position: relative;
      z-index: 1;
    }

    .final-cta__note {
      margin-top: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      font-weight: 300;
      position: relative;
      z-index: 1;
    }


    /* =============================================
       FOOTER
       ============================================= */
    .footer {
      background: var(--dark);
      padding: 64px 0 0;
      color: rgba(255,255,255,0.6);
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 48px;
    }

    .footer__logo {
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
    }

    .footer__logo .pyme {
      background: var(--primary);
      color: white;
      padding: 1px 6px 2px;
      border-radius: 4px;
      font-size: 20px;
    }

    .footer__desc {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 20px;
      color: rgba(255,255,255,0.5);
    }

    .footer__contact-line {
      font-size: 13px;
      margin-bottom: 6px;
      color: rgba(255,255,255,0.5);
    }

    .footer__contact-line a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer__contact-line a:hover { color: var(--primary); }

    .footer__social {
      display: flex;
      gap: 8px;
      margin-top: 20px;
    }

    .social-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: all 0.2s;
    }

    .social-btn:hover {
      background: var(--primary);
      color: white;
    }

    .footer__col h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 18px;
    }

    .footer__links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer__links li { margin-bottom: 10px; }

    .footer__links a {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer__links a:hover { color: var(--primary); }

    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer__bottom p {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      margin: 0;
    }

    .footer__bottom a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
    }

    .footer__bottom a:hover { color: var(--primary); }


    /* =============================================
       WHATSAPP FLOATING BUTTON
       ============================================= */
    .wa-btn {
      position: fixed;
      bottom: 72px;
      right: 100px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #34af23;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(52,175,35,0.4);
      z-index: 1001;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .wa-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 32px rgba(52,175,35,0.55);
    }

    .wa-btn svg {
      width: 30px;
      height: 30px;
      fill: white;
    }


    /* =============================================
       CONTACT MODAL / POPUP
       ============================================= */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal {
      background: var(--white);
      border-radius: 18px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      max-width: 820px;
      width: 100%;
      max-height: 90vh;
      box-shadow: 0 32px 80px rgba(0,20,60,0.35);
      transform: translateY(20px) scale(0.97);
      transition: transform 0.35s ease;
    }

    .modal-overlay.active .modal {
      transform: translateY(0) scale(1);
    }

    /* Left panel â€” blue motivational side */
    .modal__left {
      background: var(--primary);
      padding: 78px 40px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      position: relative;
      overflow: hidden;
    }

    .modal__left::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      top: -80px;
      right: -60px;
      pointer-events: none;
    }

    .modal__left::after {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      bottom: -60px;
      left: -40px;
      pointer-events: none;
    }

    .modal__left h2 {
      font-size: clamp(18px, 2.2vw, 26px);
      color: var(--white);
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .modal__left p {
      font-size: 14px;
      color: rgba(255,255,255,0.85);
      font-weight: 300;
      line-height: 1.65;
      position: relative;
      z-index: 1;
      margin-bottom: 24px;
    }

    .modal__left-features {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .modal__left-features li {
      font-size: 13px;
      color: rgba(255,255,255,0.85);
      line-height: 1.5;
      display: flex;
      align-items: center;
      gap: 8px;
      text-align: left;
    }

    .modal__left-features li::before {
      content: '›';
      font-size: 18px;
      font-weight: 700;
      color: white;
      flex-shrink: 0;
      line-height: 1;
    }

    /* Right panel â€” form */
    .modal__right {
      padding: 40px 36px;
      overflow-y: auto;
      position: relative;
    }

    .modal__close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--bg-light);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      z-index: 2;
    }

    .modal__close:hover {
      background: var(--primary);
      border-color: var(--primary);
    }

    .modal__close svg {
      width: 14px;
      height: 14px;
      stroke: var(--text-secondary);
      stroke-width: 2;
      stroke-linecap: round;
      transition: stroke 0.2s;
    }

    .modal__close:hover svg {
      stroke: white;
    }

    .modal__form-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 24px;
    }

    .modal__field {
      margin-bottom: 14px;
    }

    .modal__input,
    .modal__select {
      width: 100%;
      padding: 13px 16px;
      border-radius: 10px;
      border: 1.5px solid var(--border);
      background: var(--bg-soft);
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: var(--dark);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }

    .modal__input::placeholder {
      color: var(--text-muted);
    }

    .modal__input:focus,
    .modal__select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0,170,248,0.12);
    }

    .modal__select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23939397' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-size: 16px;
      padding-right: 40px;
    }

    /* Phone field with flag */
    .modal__phone-row {
      display: flex;
      gap: 8px;
    }

    .modal__phone-prefix {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 13px 12px;
      border-radius: 10px;
      border: 1.5px solid var(--border);
      background: var(--bg-soft);
      font-size: 14px;
      color: var(--dark);
      font-weight: 600;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .modal__phone-prefix img {
      width: 22px;
      height: 15px;
      border-radius: 2px;
      object-fit: cover;
    }

    .modal__phone-row .modal__input {
      flex: 1;
    }

    /* Checkboxes */
    .modal__checkbox {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      cursor: pointer;
    }

    .modal__checkbox input[type="checkbox"] {
      width: 18px;
      height: 18px;
      border-radius: 4px;
      border: 1.5px solid var(--border);
      background: var(--bg-soft);
      flex-shrink: 0;
      margin-top: 2px;
      cursor: pointer;
      accent-color: var(--primary);
    }

    .modal__checkbox span {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .modal__checkbox a {
      color: var(--primary);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* Submit button */
    .modal__submit {
      width: 100%;
      padding: 16px;
      border-radius: 40px;
      border: none;
      background: var(--orange);
      color: var(--white);
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 8px;
      transition: all 0.2s;
      box-shadow: 0 4px 16px rgba(255,152,0,0.3);
    }

    .modal__submit:hover {
      background: #e68900;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255,152,0,0.4);
    }

    /* Modal responsive */
    @media (max-width: 700px) {
      .modal {
        grid-template-columns: 1fr;
        max-height: 95vh;
      }

      .modal__left {
        padding: 32px 28px;
      }

      .modal__left-features { display: none; }

      .modal__right {
        padding: 28px 24px;
      }

      .modal__left h2 { font-size: 20px; }
      .modal__left p { margin-bottom: 0; font-size: 14px; }
    }


    /* =============================================
       KEYFRAME ANIMATIONS
       ============================================= */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(32px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .hero__text {
      animation: fadeInUp 0.7s ease-out both;
    }

    .hero__mockup {
      animation: fadeInRight 0.8s 0.2s ease-out both;
    }

    .hero__trust-item:nth-child(1) { animation: fadeInUp 0.5s 0.4s ease-out both; }
    .hero__trust-item:nth-child(2) { animation: fadeInUp 0.5s 0.55s ease-out both; }
    .hero__trust-item:nth-child(3) { animation: fadeInUp 0.5s 0.7s ease-out both; }


    /* =============================================
       RESPONSIVE
       ============================================= */
    @media (max-width: 1200px) {
      .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 48px 0 64px;
      }

      .hero__sub { margin-left: auto; margin-right: auto; }

      .hero__trust-row {
        justify-content: center;
      }

      .sw-window {
        max-width: 500px;
        margin: 0 auto;
      }

      .feat__inner,
      .feat__inner--reverse {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .feat__inner--reverse .feat__text { order: 1; }
      .feat__inner--reverse .feat__mockup { order: 2; }

      .pm-window {
        max-width: 500px;
        margin: 0 auto;
      }

      .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto 48px;
        gap: 20px;
      }

      .confianza-container-2026 {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
      }

      .confianza-item-2026:not(:last-child)::after { display: none; }

      .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 640px) {
      .container { width: 80%; padding: 0 20px; }

      .hero__inner { padding: 36px 0 48px; }

      .hero__trust-row {
        gap: 20px;
      }

      .hero__trust-icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
      }

      .hero__trust-icon svg { width: 20px; height: 20px; }
      .hero__trust-label { font-size: 12px; max-width: 100px; }

      .hero__btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 16px 32px;
      }

      .nav__links .nav-link-hide { display: none; }
      .nav__inner { height: 56px; }

      /* Flow responsive */
      .flow__line { left: 28px; }
      .step { display: flex; flex-direction: row; }
      .step__node { width: 56px; flex-shrink: 0; padding-top: 20px; }
      .step__card { flex: 1; margin-left: 12px; }
      .step__empty { display: none; }
      .step--left .step__card::before,
      .step--right .step__card::before { left: -7px; right: auto; border-right: none; border-top: none; }
      .step__dot { width: 40px; height: 40px; font-size: 15px; }
      .transversal__card { grid-template-columns: 1fr; padding: 28px 24px; gap: 16px; }
      .transversal__icon { width: 48px; height: 48px; }
      .transversal__icon svg { width: 22px; height: 22px; }
      .flow-summary__card { padding: 32px 24px; }
      .flow-summary__arrow { display: none; }

      .benefits { padding: 64px 0 56px; }
      .benefits__header { margin-bottom: 40px; }

      .benefits__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 16px;
      }

      .benefit-card { padding: 28px 24px 24px; }

      .cta-band { padding: 56px 0; }

      .cta-band__btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
      }

      .faq { padding: 64px 0 56px; }
      .faq__header { margin-bottom: 40px; }

      .faq-question {
        font-size: 15px;
        padding: 20px 24px;
      }

      .faq-answer p {
        padding: 0 24px 20px;
      }

      .testimonials { padding: 64px 0 56px; }
      .testimonials__header { margin-bottom: 40px; }

      .final-cta { padding: 64px 0 56px; }

      .final-cta__btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 16px 36px;
      }

      .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
      }
    }

    @media (max-width: 420px) {
      .hero__trust-row { gap: 14px; }
      .hero__trust-label { font-size: 11px; max-width: 90px; }
    }

    /* YouTube responsive embed */
    .yt-embed {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 14px;
      box-shadow: 0 24px 64px rgba(0,30,80,0.30), 0 0 0 1px rgba(255,255,255,0.1);
    }

    .yt-embed iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }


    /* =============================================
       TOPBAR / NAVBAR (header)
       ============================================= */
    .topbar {
      width: 100%;
      background: var(--primary);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    .topbar__container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    .topbar img {
      height: 42px;
      width: auto;
    }

    .navbar__menu {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 8px;
      align-items: center;
    }

    .navbar__item { margin: 0; }

    .navbar__link {
      display: inline-block;
      padding: 10px 16px;
      color: rgba(255,255,255,0.90);
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      border-radius: 6px;
      transition: all 0.2s ease;
    }

    .navbar__link:hover {
      color: var(--white);
      background: rgba(255,255,255,0.12);
    }

    .navbar__toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .navbar__toggle-icon {
      width: 24px;
      height: 2px;
      background: white;
      border-radius: 2px;
      display: block;
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      .navbar__toggle { display: flex; }

      .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
      }

      .wa-btn{
        right: 35px;
      }

      .navbar__menu[aria-expanded="true"] {
        max-height: 500px;
        opacity: 1;
        pointer-events: all;
      }

      .navbar__item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.12);
      }

      .navbar__item:last-child { border-bottom: none; }

      .navbar__link {
        display: block;
        width: 100%;
        padding: 14px 16px;
        border-radius: 0;
      }
    }


    /* =============================================
       SITE FOOTER (sticky bar)
       ============================================= */
    .site-footer {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background: #000;
      color: #fff;
      text-align: center;
      padding: 14px 20px;
      z-index: 1000;
    }

    .site-footer__content {
      max-width: 1200px;
      margin: 0 auto;
      font-size: 14px;
      line-height: 1.4;
    }

    @media (max-width: 1600px){
      .hero h1{
        font-size: 2.1rem;
      }

      .hero__sub{
        font-size: 1.0rem;
      }

      .hero__trust-label{
        font-size: 0.8rem;
      }

      .hero__btn{
        font-size: 0.9rem;
      }
    }


    /* =============================================
       MODAL IFRAME
       ============================================= */
    .modal__iframe {
      width: 100%;
      height: 540px;
      border: none;
      display: block;
      margin-top: 16px;
    }

    @media (max-width: 700px) {
      .modal__iframe { height: 480px; }
    }


    @media(max-width: 576px){
      .hero h1, .features-intro h2,.benefits__header h2, .cta-band h2, .faq__header h2, .testimonials__header h2{
        font-size: 2rem;
      }

      .hero__sub{
        font-size: 0.88rem;
      }

      .hero__btn, .feat__btn, .cta-band__btn{
        font-size: 0.94rem;
      }

      .confianza-number-2026 .white-text,
      .confianza-number-2026 .cyan-text { font-size: 28px; }

      .confianza-desc-2026 { font-size: 16px; }

      #confiar-2026 { padding: 5% 10%; }

      .confianza-container-2026 { grid-template-columns: 1fr; }
    }

sup {
  font-size: 0.55em;
  position: relative;
  top: -0.45em;
  line-height: 0;
  vertical-align: baseline;
}


/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
  will-change: opacity, transform;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
}
