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

    :root {
      /* Brand colors from logo */
      --orange-500: #E8532A;
      --orange-400: #F5832A;
      --orange-300: #F5A623;
      --orange-grad: linear-gradient(135deg, #E8532A, #F5A623);
      --blue-900: #0f1f3d;
      --blue-800: #163060;
      --blue-700: #1B4B8A;   /* exact blue from logo text */
      --blue-500: #2563EB;
      --blue-100: #EFF6FF;
      --white: #ffffff;
      --gray-50: #F9FAFB;
      --gray-100: #F3F4F6;
      --gray-200: #E5E7EB;
      --gray-400: #9CA3AF;
      --gray-500: #6B7280;
      --gray-700: #374151;
      --text: #111827;
      --radius: 16px;
      --radius-sm: 10px;
      --shadow: 0 4px 24px rgba(15,31,61,0.09);
      --shadow-lg: 0 20px 60px rgba(15,31,61,0.15);
    }

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

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 300;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 6%;
      height: 72px;
      background: rgba(15,31,61,0.15);
      border-bottom: 1px solid transparent;
      transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }
    nav.scrolled {
      background: var(--blue-900);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 2px 24px rgba(0,0,0,0.35);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .nav-logo img { height: 48px; width: auto; max-width: 58px; object-fit: contain; }
    .nav-links {
      display: flex; align-items: center; gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.88rem; font-weight: 500;
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--orange-400); }
    .nav-cta {
      background: var(--orange-grad) !important;
      color: white !important;
      padding: 9px 20px;
      border-radius: 50px;
      font-weight: 600 !important;
      font-size: 0.85rem !important;
      box-shadow: 0 2px 12px rgba(232,83,42,0.35);
      transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s !important;
    }
    .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,83,42,0.5) !important; }

    /* ── HERO ── */
    .hero {
      min-height: calc(100vh - 114px);
      display: flex; align-items: center;
      padding: 110px 6% 48px;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: linear-gradient(150deg, #0a1628 0%, #0f1f3d 45%, #122040 100%);
    }
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 55% at 65% 55%, rgba(232,83,42,0.12) 0%, transparent 65%),
                  radial-gradient(ellipse 50% 40% at 20% 20%, rgba(27,75,138,0.25) 0%, transparent 60%);
    }
    /* Subtle hex grid pattern */
    .hero-pattern {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 52px 52px;
    }

    .hero-content {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1.1fr 0.9fr;
      gap: 64px; align-items: center;
      width: 100%;
    }

    .hero-text { color: white; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(232,83,42,0.15);
      border: 1px solid rgba(232,83,42,0.35);
      color: var(--orange-300);
      padding: 5px 14px; border-radius: 50px;
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.6px; text-transform: uppercase;
      margin-bottom: 26px;
    }
    .eyebrow-dot {
      width: 6px; height: 6px;
      background: var(--orange-400);
      border-radius: 50%;
      animation: blink 2.2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

    .hero-title {
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      font-weight: 900;
      line-height: 1.06;
      letter-spacing: -2px;
      margin-bottom: 22px;
    }
    .hero-title .grad {
      background: var(--orange-grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 1.05rem; font-weight: 400;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
      max-width: 500px;
      margin-bottom: 40px;
    }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-orange {
      background: var(--orange-grad);
      color: white;
      padding: 14px 28px; border-radius: 50px;
      font-size: 0.93rem; font-weight: 600;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 4px 20px rgba(232,83,42,0.38);
      transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-orange:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,83,42,0.5); }
    .btn-ghost {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      color: white;
      padding: 14px 28px; border-radius: 50px;
      font-size: 0.93rem; font-weight: 500;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

    /* Hero visual card */
    .hero-visual { display: flex; justify-content: center; align-items: center; }
    /* ── APP WINDOW MOCKUP ── */
    .app-window {
      width: 100%; max-width: 420px;
      background: #d0d4dc;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
      animation: floatY 4s ease-in-out infinite;
      font-family: 'Inter', sans-serif;
    }
    @keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

    /* Title bar */
    .app-titlebar {
      background: #1a2a4a;
      padding: 8px 12px;
      display: flex; align-items: center; gap: 10px;
    }
    .app-titlebar-dots { display: flex; gap: 6px; }
    .dot { width: 11px; height: 11px; border-radius: 50%; }
    .dot-red    { background: #ff5f57; }
    .dot-yellow { background: #febc2e; }
    .dot-green  { background: #28c840; }
    .app-titlebar-title {
      flex: 1; text-align: center;
      font-size: 0.7rem; font-weight: 600;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.02em;
    }
    .app-titlebar-spacer { width: 42px; }

    /* Menu bar */
    .app-menubar {
      background: #e8eaed;
      padding: 4px 12px;
      display: flex; gap: 20px;
      border-bottom: 1px solid #c0c4cc;
    }
    .app-menubar span {
      font-size: 0.72rem; font-weight: 500;
      color: #333; cursor: default;
    }
    .app-menubar span:hover { color: #1a2a4a; }

    /* Status bar */
    .app-statusbar {
      background: #f0f2f5;
      padding: 6px 14px;
      display: flex; justify-content: space-between;
      border-bottom: 1px solid #c8ccd4;
    }
    .app-statusbar span {
      font-size: 0.68rem; color: #444;
      letter-spacing: 0.01em;
    }
    .app-statusbar span b { color: #1a2a4a; }

    /* Module grid */
    .app-grid {
      background: #c8ccd4;
      padding: 10px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .app-module {
      background: var(--blue-700);
      border-radius: 4px;
      padding: 14px 10px 12px;
      display: flex; flex-direction: column;
      align-items: center; gap: 10px;
      cursor: default;
      transition: background 0.15s, transform 0.15s;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .app-module:hover {
      background: var(--blue-500);
      transform: scale(1.02);
    }
    .app-module-icon {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.15);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .app-module-icon svg {
      width: 22px; height: 22px;
      color: white; stroke: white;
    }
    .app-module span {
      font-size: 0.72rem; font-weight: 700;
      color: white; letter-spacing: 0.06em;
    }

    /* Bottom brand */
    .app-brand {
      background: #e8eaed;
      border-top: 1px solid #c0c4cc;
      padding: 5px 14px;
      text-align: right;
      font-size: 0.65rem; font-weight: 700;
      color: #1a2a4a; letter-spacing: 0.05em;
    }

    /* ── TRUST ── */
    /* trust-bar removed */

    /* ── TIPOS DE NEGOCIO ── */
    .tipos-section { background: var(--gray-50); }
    .tipos-hd { text-align: center; margin-bottom: 52px; }
    .tipos-hd .sec-sub { max-width: 560px; margin: 0 auto; }

    .tipos-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 52px;
    }
    .tipo-card {
      background: white;
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 28px 16px 22px;
      display: flex; flex-direction: column;
      align-items: center; gap: 14px;
      cursor: default;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .tipo-card:hover {
      border-color: var(--orange-500);
      box-shadow: 0 8px 28px rgba(232,83,42,0.12);
      transform: translateY(-4px);
    }
    .tipo-icon {
      width: 56px; height: 56px;
      background: var(--blue-100);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .tipo-card:hover .tipo-icon { background: var(--orange-grad); }
    .tipo-icon svg {
      width: 26px; height: 26px;
      stroke: var(--blue-700);
      transition: stroke 0.2s;
    }
    .tipo-card:hover .tipo-icon svg { stroke: white; }
    .tipo-card span {
      font-size: 0.82rem; font-weight: 600;
      color: var(--gray-700);
      text-align: center; line-height: 1.35;
    }

    /* CTA row below grid */
    .tipos-cta {
      background: white;
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 28px 36px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 24px;
      flex-wrap: wrap;
    }
    .tipos-cta p {
      font-size: 1rem; color: var(--gray-700);
      line-height: 1.5;
    }
    .tipos-cta strong { color: var(--text); }

    /* ── SECTION COMMON ── */
    section { padding: 96px 6%; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .tag {
      display: inline-block;
      font-size: 0.75rem; font-weight: 700;
      color: var(--orange-500);
      letter-spacing: 0.8px; text-transform: uppercase;
      margin-bottom: 12px;
    }
    .sec-title {
      font-size: clamp(1.9rem, 3.8vw, 2.9rem);
      font-weight: 800; letter-spacing: -1.2px;
      line-height: 1.1; color: var(--blue-900);
      margin-bottom: 14px;
    }
    .sec-sub {
      font-size: 1rem; color: var(--gray-500); line-height: 1.75;
      max-width: 540px;
    }

    /* ── PRODUCTS ── */
    #productos { background: white; }
    .products-hd { text-align: center; margin-bottom: 56px; }
    .products-hd .sec-sub { margin: 0 auto; }

    .products-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .pcard {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--gray-200);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex; flex-direction: column;
    }
    .pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .pcard.dark { background: var(--blue-900); border-color: transparent; }
    .pcard.light { background: var(--gray-50); }
    .pcard.custom {
      background: linear-gradient(145deg, #0f1f3d 0%, #1B4B8A 100%);
      border-color: transparent; position: relative; overflow: hidden;
    }
    .pcard.custom::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/g%3E%3C/svg%3E") repeat;
      pointer-events: none;
    }

    .pcard-top { padding: 36px 36px 28px; flex: 1; }
    .pcard-pill {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 4px 12px; border-radius: 50px;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
      margin-bottom: 18px;
    }
    .dark .pcard-pill { background: rgba(232,83,42,0.18); color: var(--orange-300); border: 1px solid rgba(232,83,42,0.3); }
    .light .pcard-pill { background: var(--blue-100); color: var(--blue-700); }
    .custom-pill { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.18); }

    .pcard-logo { margin-bottom: 16px; }
    .pcard-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
    .light .pcard-logo img { filter: none; }

    /* Product icon box — same style as custom-icon */
    .prod-icon {
      width: 56px; height: 56px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .prod-icon img {
      height: 30px; width: auto; max-width: 36px; object-fit: contain;
    }
    /* POS: dark blue bg, white icon */
    .pos-icon {
      background: rgba(255,255,255,0.12);
    }
    .pos-icon img { filter: brightness(0) invert(1); opacity: 0.9; }
    /* Parking: green tint bg, green icon */
    .parking-icon {
      background: rgba(34, 197, 94, 0.12);
    }
    .parking-icon img { filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(400%) hue-rotate(100deg) brightness(95%); }

    /* Custom card icon */
    .custom-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .custom-icon svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.85); }

    .pcard-name {
      font-size: 1.65rem; font-weight: 800; letter-spacing: -0.6px;
      line-height: 1.18; margin-bottom: 10px;
    }
    .dark .pcard-name { color: white; }
    .light .pcard-name { color: var(--blue-900); }
    .custom-name { color: white; font-size: 1.45rem; }

    .pcard-desc { font-size: 0.92rem; line-height: 1.7; }
    .dark .pcard-desc { color: rgba(255,255,255,0.5); }
    .light .pcard-desc { color: var(--gray-500); }
    .custom-desc { color: rgba(255,255,255,0.6); }

    .pcard-bot {
      padding: 24px 36px 34px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .light .pcard-bot { border-color: var(--gray-200); }
    .custom .pcard-bot { border-color: rgba(255,255,255,0.1); }

    .feat-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
    .feat-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.88rem; }
    .dark .feat-list li { color: rgba(255,255,255,0.6); }
    .light .feat-list li { color: var(--gray-700); }
    .custom-list li { color: rgba(255,255,255,0.65); }
    .chk {
      width: 17px; height: 17px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
      display: flex; align-items: center; justify-content: center;
    }
    .dark .chk { background: rgba(232,83,42,0.2); }
    .light .chk { background: var(--blue-100); }
    .chk.dark { background: var(--blue-100); }
    .chk.custom-chk { background: rgba(255,255,255,0.15); }
    .chk svg { width: 9px; height: 9px; stroke-width: 2.5; stroke-linecap: round; }
    .dark .chk svg { stroke: var(--orange-300); fill: none; }
    .light .chk svg { stroke: var(--blue-700); fill: none; }
    .chk.dark svg { stroke: var(--blue-700); fill: none; }
    .chk.custom-chk svg { stroke: rgba(255,255,255,0.9); fill: none; }

    .price-block { margin-bottom: 22px; }
    .price-lbl { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 3px; }
    .dark .price-lbl { color: rgba(255,255,255,0.3); }
    .light .price-lbl { color: var(--gray-400); }
    .price-val { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.4px; }
    .dark .price-val { color: white; }
    .light .price-val { color: var(--blue-900); }
    .price-note { font-size: 0.8rem; }
    .dark .price-note { color: rgba(255,255,255,0.35); }
    .light .price-note { color: var(--gray-400); }

    .pcard-btn {
      display: block; text-align: center;
      padding: 12px 22px; border-radius: 50px;
      font-size: 0.88rem; font-weight: 600;
      text-decoration: none; transition: all 0.2s;
    }
    .dark .pcard-btn { background: var(--orange-grad); color: white; box-shadow: 0 3px 14px rgba(232,83,42,0.35); }
    .dark .pcard-btn:hover { opacity: 0.9; transform: translateY(-1px); }
    .light .pcard-btn { background: var(--blue-900); color: white; }
    .light .pcard-btn:hover { background: var(--blue-700); }
    .pcard-btn.outline {
      background: transparent; color: var(--blue-700);
      border: 1.5px solid var(--blue-200);
    }
    .pcard-btn.outline:hover { background: var(--blue-100); }
    .custom-btn {
      background: rgba(255,255,255,0.12) !important;
      color: white !important; border: 1px solid rgba(255,255,255,0.25) !important;
      backdrop-filter: blur(6px);
    }
    .custom-btn:hover { background: rgba(255,255,255,0.2) !important; }

    .coming-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: #FFFBEB; color: #92600A;
      border: 1px solid #FDE68A; border-radius: 50px;
      padding: 4px 11px; font-size: 0.73rem; font-weight: 700;
      margin-bottom: 12px;
    }
    /* ── AFILIADOS ── */
    #afiliados { background: white; }
    .aff-hd { text-align: center; margin-bottom: 52px; }
    .aff-hd .sec-sub { margin: 0 auto; }
    .aff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

    .aff-card {
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius); padding: 38px;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .aff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gray-200); }

    .aff-logo-area { margin-bottom: 20px; }
    .aff-logo-box {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 12px 18px;
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
    }
    .aff-logo-icon {
      width: 36px; height: 36px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .aff-logo-name { font-size: 1rem; font-weight: 800; color: var(--blue-900); }
    .aff-role {
      font-size: 0.73rem; font-weight: 700; color: var(--orange-500);
      text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 6px;
    }
    .aff-title { font-size: 1.2rem; font-weight: 800; color: var(--blue-900); margin-bottom: 10px; }
    .aff-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.72; margin-bottom: 18px; }
    .aff-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.84rem; font-weight: 600; color: var(--blue-700);
      text-decoration: none; transition: color 0.2s;
    }
    .aff-link:hover { color: var(--orange-500); }
/* ── FOOTER ── */
    footer {
      background: var(--blue-900);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 40px 6% 32px;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 24px;
    }
    /* Top row */
    .footer-top {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 18px;
    }
    .footer-logo img {
      height: 34px; width: auto; max-width: 200px; object-fit: contain;
      opacity: 0.88;
    }
    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-links a {
      color: rgba(255,255,255,0.4); text-decoration: none;
      font-size: 0.85rem; transition: color 0.2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.85); }
    /* Divider */
    .footer-divider {
      width: 100%; height: 1px;
      background: rgba(255,255,255,0.06);
    }
    /* Bottom row */
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-copy { color: rgba(255,255,255,0.22); font-size: 0.8rem; }


    /* ── CONTACTO ── */
    .contacto-section { background: var(--blue-900); }
    .contacto-hd { text-align: center; margin-bottom: 60px; }
    .contacto-hd .sec-title { color: white; }
    .contacto-hd .sec-sub { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; }

    .contacto-body {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 32px; align-items: start;
    }

    /* WhatsApp card */
    .wa-card {
      background: #25D366;
      border-radius: var(--radius);
      padding: 40px 36px;
      color: white;
      position: relative; overflow: hidden;
    }
    .wa-card::before {
      content: ''; position: absolute;
      width: 220px; height: 220px; border-radius: 50%;
      background: rgba(255,255,255,0.08);
      top: -60px; right: -60px;
      pointer-events: none;
    }
    .wa-card-icon {
      width: 60px; height: 60px; border-radius: 18px;
      background: rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px;
    }
    .wa-card-icon svg { width: 32px; height: 32px; color: white; }
    .wa-card-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
    .wa-card-desc { font-size: 0.92rem; line-height: 1.7; opacity: 0.85; margin-bottom: 28px; }
    .wa-card-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: white; color: #128c4f;
      font-weight: 700; font-size: 0.95rem;
      padding: 13px 26px; border-radius: 50px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
      margin-bottom: 24px;
    }
    .wa-card-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,0.2); }
    .wa-card-meta {
      display: flex; gap: 20px; flex-wrap: wrap;
      font-size: 0.82rem; opacity: 0.8;
    }

    /* Contact form */
    .contacto-form {
      background: white;
      border-radius: var(--radius);
      padding: 40px 36px;
    }
    .form-hd { font-size: 1.15rem; font-weight: 700; color: var(--blue-900); margin-bottom: 6px; }
    .form-sub { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 26px; line-height: 1.6; }
    .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .fg label { font-size: 0.8rem; font-weight: 600; color: var(--gray-600); }
    .fg input, .fg select, .fg textarea {
      padding: 10px 14px; border-radius: 10px;
      border: 1.5px solid var(--gray-200);
      font-size: 0.88rem; color: var(--text);
      background: var(--gray-50);
      transition: border-color 0.2s;
      font-family: inherit;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      outline: none; border-color: var(--blue-700);
      background: white;
    }
    .fg textarea { resize: vertical; min-height: 90px; }
    .form-btn {
      width: 100%; padding: 13px;
      background: #25D366; color: white;
      border: none; border-radius: 50px;
      font-size: 0.92rem; font-weight: 700;
      cursor: pointer; transition: background 0.2s, transform 0.2s;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      font-family: inherit;
    }
    .form-btn:hover { background: #1ebe5d; transform: translateY(-1px); }

    /* ── WA FLOAT ── */
    .wa {
      position: fixed; bottom: 28px; right: 28px; z-index: 500;
      width: 56px; height: 56px;
      background: #25D366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.38);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
    .wa svg { width: 28px; height: 28px; fill: white; }
    .wa-tip {
      position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
      background: var(--blue-900); color: white;
      padding: 5px 12px; border-radius: 8px;
      font-size: 0.78rem; font-weight: 600; white-space: nowrap;
      opacity: 0; pointer-events: none; transition: opacity 0.2s;
    }
    .wa:hover .wa-tip { opacity: 1; }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

    /* ── RESPONSIVE ── */
    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column; justify-content: center; gap: 5px;
      width: 40px; height: 40px;
      background: none; border: none; cursor: pointer; padding: 4px;
      z-index: 999;
    }
    .nav-hamburger span {
      display: block; height: 2px; width: 24px;
      background: white; border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile panel — always in DOM, always outside nav */
    .nav-mobile-panel {
      display: none;
      position: fixed; top: 0; right: 0;
      width: 75vw; max-width: 300px; height: 100vh;
      background: #0f1f3d;
      border-left: 1px solid rgba(255,255,255,0.1);
      padding: 88px 32px 40px;
      list-style: none;
      transform: translateX(110%);
      transition: transform 0.3s ease;
      z-index: 900;
      box-shadow: -8px 0 32px rgba(0,0,0,0.4);
      margin: 0;
    }
    .nav-mobile-panel.open { transform: translateX(0); }
    .nav-mobile-panel li { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-mobile-panel a {
      display: block; padding: 16px 0;
      font-size: 1rem; font-weight: 500;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
    }
    .nav-mobile-panel a:hover { color: var(--orange-400); }
    .nav-mobile-panel .nav-cta {
      margin-top: 20px;
      display: block; text-align: center;
      padding: 12px 20px; border-radius: 50px;
      color: white;
    }

    .nav-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.55); z-index: 850;
    }
    .nav-overlay.open { display: block; }

    @media(max-width:900px){
      .tipos-grid { grid-template-columns: repeat(2, 1fr); }
      .contacto-body { grid-template-columns: 1fr; }
      .frow { grid-template-columns: 1fr; }
      .tipos-cta { flex-direction: column; text-align: center; }
      .hero-content, .aff-grid, .contact-wrap { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .plans-grid { grid-template-columns: 1fr; }
      .nav-links-desktop { display: none; }
      .nav-hamburger { display: flex; }
      .nav-mobile-panel { display: block; }
    }

    @media(max-width:600px){
      .tipos-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
      .footer-links { flex-direction: column; gap: 10px; }
    }

    /* ── CLIENTS CAROUSEL ── */
    .carousel-section {
      background: var(--blue-900);
      padding: 22px 0 26px;
      overflow: hidden;
    }
    .carousel-label {
      text-align: center;
      font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 18px;
    }
    .carousel-track-wrap {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    }
    .carousel-track {
      display: flex; gap: 56px; align-items: center;
      width: max-content;
      animation: marquee 30s linear infinite;
    }
    .carousel-track:hover { animation-play-state: paused; }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .carousel-item {
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      height: 48px;
    }
    .carousel-item img {
      height: 36px; width: auto; max-width: 120px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: 0.65;
      transition: opacity 0.3s, filter 0.3s;
    }
    .carousel-item img:hover { opacity: 1; filter: brightness(1) invert(0); }