         /* ── LOGO PERSONALIZADO ─────────────────── */
    .logo-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      color: var(--accent);
      width: 22px;
      height: 22px;
    }

    @media (max-width: 560px) {
      .logo-icon {
        width: 18px;
        height: 18px;
      }
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .logo-main {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--white);
      display: inline-flex;
      align-items: baseline;
      flex-wrap: wrap;
    }

    .logo-dot {
      color: var(--accent);
      font-size: 26px;
      font-weight: 800;
      margin: 0px 2px;
    }

    .logo-com {
      color: var(--accent);
      font-weight: 700;
    }

    .logo-tagline {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-top: 2px;
    }

    .logo-badge {
      font-size: 8px;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.4);
      margin-top: 3px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .logo-badge::before {
      content: '';
      display: inline-block;
      width: 16px;
      height: 1px;
      background: rgba(255,255,255,0.25);
      vertical-align: middle;
    }

    /* Ajuste responsive para el logo */
    @media (max-width: 560px) {
      .logo-main {
        font-size: 20px;
      }
      
      .logo-dot {
        font-size: 24px;
      }
      
      .logo-tagline {
        font-size: 7px;
        letter-spacing: 0.1em;
      }
      
      .logo-badge {
        font-size: 6px;
      }
    }
     .row{
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }
    .steps{
      color: var(--navy);
      margin-right: 20px;
    }
        /* ── FOOTER ─────────────────────────────────────────────────────── */
    .footer {
      background: #07061f;
      padding: 64px 0 32px;
      border-top: 1px solid rgba(255,255,255,0.05);
      position: relative;
    }

    .footer__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
      margin-bottom: 48px;
    }

    /* Logo y descripción */
    .footer__logo {
      margin-bottom: 20px;
    }

    .footer-logo-img {
      height: 52px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }

    .footer__description {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255,255,255,0.6);
      margin: 0;
    }

    /* Títulos de columnas */
    .footer__title {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--ice);
      margin-bottom: 24px;
      position: relative;
    }

    .footer__title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 32px;
      height: 2px;
      background: var(--accent);
    }

    /* Listas de contacto */
    .footer__contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer__contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 18px;
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      line-height: 1.5;
    }

    .footer__contact-list svg {
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--accent);
    }

    .footer__contact-list a {
      color: rgba(255,255,255,0.7);
      transition: color 0.2s ease;
    }

    .footer__contact-list a:hover {
      color: var(--ice);
    }

    /* Enlaces rápidos */
    .footer__links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer__links li {
      margin-bottom: 12px;
    }

    .footer__links a {
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      transition: all 0.2s ease;
      display: inline-block;
    }

    .footer__links a:hover {
      color: var(--ice);
      transform: translateX(4px);
    }

    /* Redes sociales */
    .footer__social {
      display: flex;
      gap: 16px;
      margin-bottom: 32px;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.06);
      border-radius: 12px;
      color: rgba(255,255,255,0.7);
      transition: all 0.2s ease;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .social-link:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-3px);
      border-color: var(--accent);
    }

    /* Horario */
    .footer__subtitle {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      margin-bottom: 12px;
      letter-spacing: 0.03em;
    }

    .footer__hours p {
      font-size: 13px;
      line-height: 1.6;
      color: rgba(255,255,255,0.5);
      margin: 0;
    }

    /* Divisor */
    .footer__divider {
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
      margin: 32px 0 24px;
    }

    /* Copyright */
    .footer__bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 12px;
      color: rgba(255,255,255,0.4);
    }

    .footer__bottom p {
      margin: 0;
    }

    .footer__legal {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer__legal a {
      color: rgba(255,255,255,0.4);
      transition: color 0.2s ease;
    }

    .footer__legal a:hover {
      color: var(--ice);
    }

    .footer__legal span {
      color: rgba(255,255,255,0.2);
    }

    /* Responsive */
    @media (max-width: 960px) {
      .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }

    @media (max-width: 640px) {
      .footer {
        padding: 48px 0 24px;
      }

      .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer__bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer__legal {
        justify-content: center;
      }

      .footer__title::after {
        left: 0;
        right: auto;
      }
    }
   /* ── TOKENS ─────────────────────────────────────────────────── */
    :root {
      --navy:       #090830;
      --navy-mid:   #2a2779;
      --accent:     #1049c6;
      --ice:        #e4eeff;
      --white:      #ffffff;
      --off-white:  #f5f6fa;
      --text-dark:  #0d0e2a;
      --text-body:  #3a3d5c;
      --text-muted: #8e93b0;
      --border:     rgba(255,255,255,0.08);
      --border-dark: rgba(9,8,48,0.10);

      --font-display: 'Montserrat', sans-serif;
      --font-body:    'Montserrat', sans-serif;

      --section-pad: 100px 0;
      --container:   1100px;
    }

    /* ── RESET ───────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--navy);
      color: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ── UTILITIES ───────────────────────────────────────────────── */
    .container {
      width: 90%;
      max-width: var(--container);
      margin: 0 auto;
    }

    /* Tag pill — white-on-dark variant (hero) */
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid rgba(21,89,237,0.35);
      padding: 6px 14px;
      border-radius: 2px;
      background: rgba(21,89,237,0.06);
    }
    .tag::before {
      content: '';
      display: block;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--accent);
    }

    /* Tag pill — blue-on-white variant (problema) */
    .tag--blue {
      color: var(--accent);
      border-color: rgba(21,89,237,0.30);
      background: rgba(21,89,237,0.06);
    }

    /* ── NAV ─────────────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 22px 0;
      transition: background 0.4s, padding 0.4s;
    }
    .nav.scrolled {
      background: rgba(9,8,48,0.92);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav__logo img {
      height: 72px;
      width: auto;
    }
    .nav__cta {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--accent);
      color: var(--white);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 10px 22px;
      border-radius: 15px;
      transition: background 0.2s, transform 0.2s;
    }
    .nav__cta:hover { background: #1248c5; transform: translateY(-1px); }

    /* ── HERO ────────────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 140px 0 60px;
      overflow: hidden;
    }

    /* Grid background */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
      pointer-events: none;
    }

    .hero__glow {
      position: absolute;
      pointer-events: none;
    }
    .hero__glow--1 {
      top: -120px; right: -80px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(42,39,121,0.55) 0%, transparent 70%);
    }
    .hero__glow--2 {
      bottom: -60px; left: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(21,89,237,0.15) 0%, transparent 70%);
    }

    /* ── Two-column hero grid ── */
    .hero__grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
    }

    .hero__content { max-width: 600px; }

    .hero__tag { margin-bottom: 32px; }

    .hero__headline {
      font-size: clamp(32px, 4.2vw, 58px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 28px;
    }
    .hero__headline em {
      font-style: italic;
      font-weight: 600;
      color: var(--ice);
    }

    .hero__sub {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,0.72);
      max-width: 520px;
      margin-bottom: 44px;
    }
    .hero__sub strong {
      color: var(--white);
      font-weight: 500;
    }

    .hero__bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 18px 0 0;
    }
    .hero__bullets li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,0.80);
    }
    .hero__bullets li strong { color: var(--white); font-weight: 600; }
    .bullet-icon {
      flex-shrink: 0;
      margin-top: 3px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(21,89,237,0.18);
      border: 1px solid rgba(21,89,237,0.4);
      display: flex; align-items: center; justify-content: center;
    }
    .bullet-icon svg { width: 9px; height: 9px; }

    /* Buttons */
    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 15px 28px;
      border-radius: 15px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 8px 32px rgba(21,89,237,0.30);
    }
    .btn-primary:hover {
      background: #1248c5;
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(21,89,237,0.42);
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    /* ── Hero visual card (right column) ── */
    .hero__visual {
      position: relative;
      opacity: 0;
      transform: translateX(30px);
      animation: fadeRight 0.8s ease 0.5s forwards;
    }

    @keyframes fadeRight {
      to { opacity: 1; transform: translateX(0); }
    }

    .hero__visual-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 16px;
      padding: 36px 32px 0;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(12px);
    }

    /* Top gloss line */
    .hero__visual-card::before {
      content: '';
      position: absolute;
      top: 0; left: 20%; right: 20%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
    }

    /* Glow inside card */
    .hero__visual-card::after {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(21,89,237,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hvc__topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 36px;
    }
    .hvc__pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.55);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      padding: 5px 12px;
      border-radius: 20px;
    }
    .hvc__pill-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #25d366;
      animation: pulse 2s ease-in-out infinite;
    }
    .hvc__year {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.25);
    }

    .hvc__stat {
      text-align: center;
      padding: 8px 0 28px;
    }
    .hvc__stat-num {
      font-size: clamp(52px, 7vw, 76px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1;
      color: var(--white);
      margin-bottom: 10px;
    }
    .hvc__stat-label {
      font-size: 13px;
      font-weight: 400;
      color: rgba(255,255,255,0.50);
      line-height: 1.5;
    }

    .hvc__rule {
      height: 1px;
      background: rgba(255,255,255,0.07);
      margin: 0 -32px;
    }

    .hvc__metrics {
      display: flex;
      align-items: stretch;
      padding: 24px 0;
    }
    .hvc__metric {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }
    .hvc__metric-sep {
      width: 1px;
      background: rgba(255,255,255,0.07);
      align-self: stretch;
    }
    .hvc__metric-val {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
    }
    .hvc__metric-key {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.40);
      text-align: center;
    }

    .hvc__strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      margin: 0 -32px;
      padding: 18px 32px;
      background: rgba(21,89,237,0.15);
      border-top: 1px solid rgba(21,89,237,0.20);
      color: rgba(255,255,255,0.75);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: background 0.2s, color 0.2s;
    }
    .hvc__strip:hover {
      background: rgba(21,89,237,0.25);
      color: var(--white);
    }
    .hvc__strip svg:first-child { color: #25d366; flex-shrink: 0; }

    .hvc__corner {
      position: absolute;
      bottom: 56px; right: -20px;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(42,39,121,0.40) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Floating badge */
    .hero__badge {
      position: absolute;
      top: -16px; left: -16px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--navy);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      padding: 8px 14px;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(9,8,48,0.25);
    }
    .hero__badge svg { color: var(--accent); }

    /* Hero scroll indicator */
    .hero__scroll {
      position: absolute;
      bottom: 36px; right: 5%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0.30;
    }
    .hero__scroll span {
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      writing-mode: vertical-rl;
    }
    .hero__scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--white), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%   { transform: scaleY(0); transform-origin: top; }
      50%  { transform: scaleY(1); transform-origin: top; }
      51%  { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    .hero__divider {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--navy-mid), transparent);
    }

    /* Fade-in on load */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.7s ease forwards;
    }
    .fade-up:nth-child(1) { animation-delay: 0.10s; }
    .fade-up:nth-child(2) { animation-delay: 0.22s; }
    .fade-up:nth-child(3) { animation-delay: 0.36s; }
    .fade-up:nth-child(4) { animation-delay: 0.50s; }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── SECCIÓN 2: PROBLEMA — fondo blanco ─────────────────────── */
    .problema {
      background: var(--white);
      padding: var(--section-pad);
      position: relative;
      overflow: hidden;
    }

    /* Subtle top border transition from dark */
    .problema::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(to right, var(--navy-mid), var(--accent), var(--navy-mid));
    }

    /* Soft decorative background circle */
    .problema::after {
      content: '';
      position: absolute;
      bottom: -100px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(21,89,237,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .problema__inner {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .problema__tag { margin-bottom: 28px; }

    .problema__headline {
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--text-dark);
      margin-bottom: 32px;
    }
    .problema__headline strong {
      font-style: italic;
      font-weight: 800;
      color: var(--accent);
    }

    /* Risk list — on white */
    .risk-list {
      list-style: none;
      display: flex;
      flex-direction: column;
    }
    .risk-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border-dark);
      font-size: 16px;
      color: var(--text-body);
      line-height: 1.65;
    }
    .risk-list li:last-child { border-bottom: none; }

    .risk-icon {
      flex-shrink: 0;
      margin-top: 2px;
      width: 22px; height: 22px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 4px;
      background: rgba(21,89,237,0.08);
      color: var(--accent);
    }

    .problema__cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.03em;
      border-bottom: 1.5px solid rgba(21,89,237,0.30);
      padding-bottom: 3px;
      transition: gap 0.2s, border-color 0.2s;
    }
    .problema__cta:hover {
      gap: 14px;
      border-color: var(--accent);
    }

    /* Stat card — dark on white bg */
    .stat-card {
      background: var(--navy);
      border: none;
      border-radius: 16px;
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(9,8,48,0.15);
    }

    /* Top accent line */
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--navy-mid), var(--accent));
    }

    /* Inner glow */
    .stat-card::after {
      content: '';
      position: absolute;
      bottom: -60px; right: -60px;
      width: 220px; height: 220px;
      background: radial-gradient(circle, rgba(21,89,237,0.14) 0%, transparent 70%);
      pointer-events: none;
    }

    .stat-card__number {
      line-height: 1;
      margin-bottom: 16px;
    }
    .stat-card__fraction {
      display: inline-flex;
      align-items: baseline;
    }
    .stat-accent {
      font-size: clamp(72px, 10vw, 108px);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--accent);
    }
    .stat-slash {
      font-size: clamp(36px, 5vw, 54px);
      color: rgba(255,255,255,0.20);
      margin: 0 6px;
    }
    .stat-denom {
      font-size: clamp(36px, 5vw, 54px);
      font-weight: 700;
      color: rgba(255,255,255,0.45);
    }

    .stat-card__label {
      font-size: 15px;
      font-weight: 400;
      color: rgba(255,255,255,0.58);
      line-height: 1.65;
      max-width: 280px;
      margin-bottom: 36px;
    }

    .stat-card__detail {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.28);
    }
    .stat-card__detail::before {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: rgba(255,255,255,0.20);
    }

    /* ── SECCIÓN 3: SOLUCIÓN / SERVICIOS (3 PASOS + BONUS) ─────── */
    .proceso {
      background: var(--off-white);
      padding: var(--section-pad);
      position: relative;
      border-top: 1px solid rgba(9,8,48,0.05);
      border-bottom: 1px solid rgba(9,8,48,0.05);
    }

    .proceso__header {
      text-align: center;
      width: 100%;
      margin: 0 auto 64px auto;
    }

    .proceso__headline {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text-dark);
      margin-bottom: 20px;
    }

    .proceso__steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      margin-bottom: 56px;
    }

    .step-card {
      flex: 1;
      min-width: 240px;
      background: var(--white);
      border-radius: 24px;
      padding: 32px 24px;
      box-shadow: 0 8px 24px rgba(9,8,48,0.06);
      transition: transform 0.2s ease, box-shadow 0.2s;
      border: 1px solid rgba(9,8,48,0.05);
    }
    .step-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 32px rgba(9,8,48,0.08);
    }

    .step-icon {
      background: rgba(21,89,237,0.08);
      width: 64px;
      height: 64px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }
    .step-icon svg {
      width: 32px;
      height: 32px;
      stroke-width: 1.5;
    }

    .step-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }

    .step-desc {
      font-size: 15px;
      line-height: 1.55;
      color: var(--text-body);
      font-weight: 400;
    }
    .step-desc strong {
      font-weight: 600;
      color: var(--navy);
    }

    /* Bonus card */
    .bonus-wrapper {
      max-width: 100%;
      margin: 0 auto 48px auto;
    }
    .bonus-card {
      background: linear-gradient(135deg, var(--white) 0%, #ffffff 100%);
      border-radius: 28px;
      border-left: 6px solid var(--accent);
      padding: 42px 36px;
      display: flex;
      width: 100%;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: space-between;
      box-shadow: 0 12px 24px rgba(9,8,48,0.06);
    }
    .bonus-content {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .bonus-icon {
      background: rgba(21,89,237,0.12);
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }
    .bonus-icon svg {
      width: 28px;
      height: 28px;
    }
    .bonus-text h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }
    .bonus-text p {
      font-size: 15px;
      color: var(--text-body);
      margin: 0;
    }
    .cta-gratis {
      background: var(--accent);
      color: var(--white);
      border: none;
      padding: 14px 32px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      box-shadow: 0 4px 12px rgba(21,89,237,0.3);
    }
    .cta-gratis:hover {
      background: #1248c5;
      transform: translateY(-2px);
    }

    /* Responsive proceso */
    @media (max-width: 860px) {
      .bonus-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
      }
      .bonus-content {
        justify-content: center;
      }
      .cta-gratis {
        justify-content: center;
      }
      .step-card {
        min-width: 100%;
      }
    }

    /* Scroll-reveal */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.12s; }
    .reveal-delay-2 { transition-delay: 0.24s; }
    .reveal-delay-3 { transition-delay: 0.36s; }

    /* ── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 960px) {
      .hero__grid {
        grid-template-columns: 1fr;
        gap: 52px;
      }
      .hero__visual {
        max-width: 460px;
        margin: 0 auto;
      }
    }

    @media (max-width: 860px) {
      .problema__inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .hero__actions {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 560px) {
      .stat-card { padding: 36px 28px; }
      .nav__cta span { display: none; }
      .hero__badge { display: none; }
    }
        /* ── SECCIÓN 4: PORTAFOLIO (fondo oscuro elegante) ─────────── */
    .portafolio {
      background: #0b0b1a;  /* fondo más oscuro que el nav, elegante y sobrio */
      padding: var(--section-pad);
      position: relative;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .portafolio__header {
      text-align: center;
      margin-bottom: 64px;
    }
    .portafolio__headline {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-top: 20px;
    }
    .portafolio__headline em {
      font-style: italic;
      font-weight: 600;
      color: #b9c8ff;
    }
    /* tag dorado/académico */
    .tag--gold {
      color: var(--ice);
      border-color: rgba(34, 132, 230, 0.35);
      background: rgba(34, 129, 230, 0.08);
    }
    .tag--gold::before {
      background: var(--ice);
    }

    /* Stats grid */
    .portafolio__stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 48px;
      margin-bottom: 80px;
    }
    .stat-block {
      text-align: center;
      min-width: 180px;
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(2px);
      padding: 32px 24px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,0.08);
      transition: transform 0.2s ease;
    }
    .stat-block:hover {
      transform: translateY(-6px);
      border-color: rgba(34, 155, 230, 0.3);
      background: rgba(255,255,255,0.05);
    }
    .stat-block__number {
      font-size: clamp(44px, 7vw, 68px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--ice);
      line-height: 1.1;
      margin-bottom: 12px;
    }
    .stat-block__unit {
      font-size: 24px;
      font-weight: 500;
      color: rgba(255,255,255,0.65);
    }
    .stat-block__label {
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.55);
    }

    /* Mapa tipográfico */
    .portafolio__mapa {
      text-align: center;
      margin-bottom: 48px;
      background: rgba(255,255,255,0.02);
      padding: 36px 24px;
      border-radius: 56px;
      border: 1px solid rgba(255,255,255,0.05);
    }
    .mapa__grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: baseline;
      gap: 12px 20px;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.75);
      margin-bottom: 28px;
    }
    .mapa__grid span {
      font-size: 1.1rem;
    }
    .mapa__grid span:nth-child(even) {
      color: var(--ice);
      font-size: 1.2rem;
      opacity: 0.7;
    }
    .mapa__caption {
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      font-weight: 500;
    }

    .portafolio__footer-line {
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(34, 168, 230, 0.4), transparent);
      width: 80%;
      margin: 20px auto 0;
    }

    @media (max-width: 700px) {
      .portafolio__stats {
        gap: 24px;
      }
      .stat-block {
        min-width: 140px;
        padding: 24px 16px;
      }
      .mapa__grid {
        gap: 8px 14px;
      }
    }

        /* ── SECCIÓN 5: TESTIMONIOS ───────────────────────────────────── */
    .testimonios {
      background: var(--off-white);
      padding: var(--section-pad);
      position: relative;
      border-top: 1px solid rgba(9,8,48,0.05);
    }

    .testimonios__header {
      text-align: center;
      margin-bottom: 64px;
    }

    .testimonios__headline {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text-dark);
      margin-top: 20px;
    }

    .testimonios__headline em {
      font-style: italic;
      font-weight: 600;
      color: var(--accent);
    }

    /* Tag versión ice (coherente con paleta) */
    .tag--ice {
      color: var(--accent);
      border-color: rgba(21,89,237,0.30);
      background: rgba(21,89,237,0.06);
    }

    /* Grid de testimonios */
    .testimonios__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-bottom: 64px;
    }

    .testimonio-card {
      background: var(--white);
      border-radius: 24px;
      padding: 28px;
      display: flex;
      gap: 20px;
      box-shadow: 0 4px 16px rgba(9,8,48,0.05);
      transition: transform 0.2s ease, box-shadow 0.2s;
      border: 1px solid rgba(9,8,48,0.05);
    }

    .testimonio-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(9,8,48,0.08);
    }

    .testimonio__avatar {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      background: rgba(21,89,237,0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }

    .testimonio__avatar svg {
      width: 28px;
      height: 28px;
    }

    .testimonio__content {
      flex: 1;
    }

    .testimonio__quote {
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-body);
      font-style: italic;
      margin-bottom: 16px;
      quotes: "“" "”" "‘" "’";
    }

    .testimonio__quote::before {
      content: "“";
      font-size: 24px;
      line-height: 1;
      color: var(--accent);
      opacity: 0.5;
      margin-right: 4px;
    }

    .testimonio__author {
      display: flex;
      flex-direction: column;
    }

    .testimonio__author strong {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
    }

    .testimonio__author span {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* CTA final */
    .testimonios__cta-wrapper {
      text-align: center;
    }

    .testimonios__cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--accent);
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 14px 32px;
      border-radius: 40px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(21,89,237,0.3);
    }

    .testimonios__cta:hover {
      background: #1248c5;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(21,89,237,0.4);
    }

    /* Responsive */
    @media (max-width: 860px) {
      .testimonios__grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .testimonio-card {
        padding: 24px;
      }
    }

    @media (max-width: 560px) {
      .testimonio-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .testimonio__quote::before {
        display: inline;
      }
    }
        /* ── SECCIÓN 6: SOBRE NOSOTROS ─────────────────────────────────── */
    .about {
      background: var(--navy);
      padding: var(--section-pad);
      position: relative;
      overflow: hidden;
    }

    /* Decoración de fondo sutil */
    .about::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(42,39,121,0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .about::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(21,89,237,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .about__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .about__tag {
      margin-bottom: 28px;
    }

    .about__headline {
      font-size: clamp(32px, 3.8vw, 48px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 24px;
    }

    .about__headline em {
      font-style: italic;
      font-weight: 600;
      color: var(--ice);
    }

    .about__description {
      font-size: 16px;
      line-height: 1.65;
      color: rgba(255,255,255,0.75);
      margin-bottom: 40px;
      max-width: 500px;
    }

    .about__cta-wrapper {
      margin-top: 8px;
    }

    .about__cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 14px 32px;
      border-radius: 40px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(21,89,237,0.3);
    }

    .about__cta:hover {
      background: #1248c5;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(21,89,237,0.4);
    }

    /* Stats grid - lado derecho */
    .about__stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 32px;
      padding: 40px;
    }

    .about-stat {
      text-align: center;
      padding: 20px 12px;
      border-radius: 20px;
      transition: transform 0.2s ease;
    }

    .about-stat:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,0.03);
    }

    .about-stat--full {
      grid-column: span 2;
    }

    .about-stat__number {
      font-size: clamp(42px, 6vw, 64px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--ice);
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .about-stat__label {
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.6);
    }

    .about__footer {
      margin-top: 80px;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    }

    /* Responsive */
    @media (max-width: 860px) {
      .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .about__description {
        max-width: 100%;
      }

      .about__stats-grid {
        padding: 32px 24px;
      }
    }

    @media (max-width: 560px) {
      .about__stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .about-stat--full {
        grid-column: span 1;
      }

      .about__cta {
        width: 100%;
        justify-content: center;
      }
    }
        /* ── SECCIÓN 7: PREGUNTAS FRECUENTES ───────────────────────────── */
    .faq {
      background: var(--white);
      padding: var(--section-pad);
      position: relative;
    }

    .faq__header {
      text-align: center;
      margin-bottom: 64px;
    }

    .faq__headline {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text-dark);
      margin-top: 20px;
      margin-bottom: 12px;
    }

    .faq__headline em {
      font-style: italic;
      font-weight: 600;
      color: var(--accent);
    }

    .faq__subhead {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    .faq__grid {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    /* Acordeón items - animación suave */
    .faq-item {
      background: var(--off-white);
      border-radius: 16px;
      border: 1px solid rgba(9,8,48,0.08);
      transition: all 0.25s ease;
    }

    .faq-item:hover {
      border-color: rgba(21,89,237,0.25);
      box-shadow: 0 2px 8px rgba(9,8,48,0.05);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-dark);
      text-align: left;
      transition: all 0.2s ease;
      font-family: var(--font-body);
    }

    .faq-question:hover {
      background: rgba(21,89,237,0.02);
    }

    .faq-question span {
      flex: 1;
      line-height: 1.4;
    }

    .faq-icon {
      flex-shrink: 0;
      color: var(--accent);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    /* Animación suave para la respuesta */
    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.active .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer-inner {
      overflow: hidden;
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity 0.25s ease 0.1s, transform 0.3s ease 0.05s;
    }

    .faq-item.active .faq-answer-inner {
      opacity: 1;
      transform: translateY(0);
    }

    .faq-answer-inner p {
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-body);
      margin: 0;
      padding: 0 24px 24px 24px;
    }

    /* Responsive */
    @media (max-width: 640px) {
      .faq-question {
        padding: 16px 20px;
        font-size: 15px;
      }

      .faq-answer-inner p {
        padding: 0 20px 20px 20px;
        font-size: 14px;
      }
    }




    /* ── SECCIÓN 8: LLAMADA A LA ACCIÓN FINAL ───────────────────────── */
    .cta-final {
      background: linear-gradient(135deg, var(--navy) 0%, #0a0938 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    /* Efectos de fondo */
    .cta-final::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(21,89,237,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-final::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(42,39,121,0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-final__card {
      max-width: 680px;
      margin: 0 auto;
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 32px;
      padding: 56px 48px;
      position: relative;
      z-index: 2;
      transition: transform 0.3s ease;
    }

    .cta-final__card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,0.2);
    }

    .cta-final__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(21,89,237,0.2);
      border: 1px solid rgba(21,89,237,0.3);
      padding: 6px 14px;
      border-radius: 40px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ice);
      margin-bottom: 32px;
    }

    .cta-final__badge svg {
      width: 14px;
      height: 14px;
    }

    .cta-final__headline {
      font-size: clamp(32px, 4.5vw, 48px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 20px;
    }

    .cta-final__headline em {
      font-style: italic;
      font-weight: 600;
      color: var(--ice);
    }

    .cta-final__subtext {
      font-size: 16px;
      line-height: 1.6;
      color: rgba(255,255,255,0.7);
      margin-bottom: 40px;
    }

    .cta-final__subtext strong {
      color: var(--white);
      font-weight: 600;
    }

    /* Formulario */
    .cta-final__form {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 32px;
    }

    .form-group {
      width: 100%;
    }

    .form-group input {
      width: 100%;
      padding: 16px 20px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 16px;
      font-size: 15px;
      font-family: var(--font-body);
      color: var(--white);
      transition: all 0.2s ease;
    }

    .form-group input:focus {
      outline: none;
      border-color: var(--accent);
      background: rgba(255,255,255,0.12);
      box-shadow: 0 0 0 3px rgba(21,89,237,0.2);
    }

    .form-group input::placeholder {
      color: rgba(255,255,255,0.4);
    }

    .cta-final__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--accent);
      color: var(--white);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 16px 28px;
      border-radius: 16px;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      margin-top: 8px;
    }

    .cta-final__btn:hover {
      background: #1248c5;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(21,89,237,0.4);
    }

    /* WhatsApp urgente */
    .cta-final__whatsapp {
      text-align: center;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .whatsapp-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(37,211,102,0.12);
      padding: 12px 24px;
      border-radius: 60px;
      color: rgba(255,255,255,0.9);
      font-size: 14px;
      transition: all 0.2s ease;
      border: 1px solid rgba(37,211,102,0.25);
    }

    .whatsapp-link:hover {
      background: rgba(37,211,102,0.2);
      transform: translateY(-2px);
      border-color: rgba(37,211,102,0.5);
    }

    .whatsapp-link svg:first-child {
      color: #25d366;
    }

    .whatsapp-link strong {
      font-weight: 700;
      color: #25d366;
    }

    /* Responsive */
    @media (max-width: 680px) {
      .cta-final__card {
        padding: 40px 28px;
        margin: 0 20px;
      }

      .cta-final__btn {
        width: 100%;
      }

      .whatsapp-link {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        gap: 8px;
      }
    }

    @media (max-width: 480px) {
      .cta-final__card {
        padding: 32px 20px;
      }

      .cta-final__headline {
        font-size: 28px;
      }

      .form-group input {
        padding: 14px 18px;
      }
    }

/* ══════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════ */
.wpp-fab {
  text-decoration: none;
  position: fixed;
  z-index: 99999;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wpp-fab::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: wppPulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes wppPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wpp-fab .fa-whatsapp {
  font-size: 1.9rem;
  color: #fff;
  line-height: 1;
}
.wpp-fab:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.wpp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--navy);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s;
}
.wpp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
}
.wpp-fab:hover .wpp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
