    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    /* Evita zoom por doble tap en mobile (iOS Safari) — pinch-zoom queda intacto */
    button, a, input, select, textarea, label, .btn { touch-action: manipulation; }
    :root {
      --g: #09a832;
      --g-dark: #077a24;
      --g-deep: #055a1b;
      --g-light: #d1fae5;
      --g-soft: #f0fdf4;
      --ink: #0d1117;
      --text: #374151;
      --muted: #6b7280;
      --line: #e5e7eb;
      --surface: #ffffff;
      --bg: #fafafa;
      --radius-sm: 8px;
      --radius: 14px;
      --radius-lg: 22px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
      --shadow: 0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
      --shadow-lg: 0 20px 60px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.05);
      --shadow-green: 0 8px 32px rgba(9,168,50,.22);
    }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ── Layout ── */
    .container {
      width: min(1440px, calc(100% - 32px));
      margin: 0 auto;
    }

    /* ── Scroll reveal ── */
    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }
    [data-reveal="left"] { transform: translateX(-28px); }
    [data-reveal="right"] { transform: translateX(28px); }
    [data-reveal="scale"] { transform: scale(.94); }
    [data-reveal].visible {
      opacity: 1;
      transform: none;
    }
    [data-delay="1"] { transition-delay: .08s; }
    [data-delay="2"] { transition-delay: .16s; }
    [data-delay="3"] { transition-delay: .24s; }
    [data-delay="4"] { transition-delay: .32s; }
    [data-delay="5"] { transition-delay: .40s; }
    [data-delay="6"] { transition-delay: .48s; }

    /* ── Navbar ── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      transition: background .3s, box-shadow .3s, border-color .3s;
    }
    .nav.scrolled {
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,0,0,.06);
      box-shadow: 0 1px 12px rgba(0,0,0,.06);
    }
    .nav-inner {
      height: 72px;
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .brand img { width: 80px; mix-blend-mode: multiply; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      flex: 1;
    }
    .nav-links a {
      padding: 6px 12px;
      border-radius: 8px;
      color: var(--text);
      font-size: 14px;
      font-weight: 600;
      transition: color .18s, background .18s;
    }
    .nav-links a:hover { color: var(--g); background: var(--g-soft); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .nav-login {
      padding: 8px 16px;
      border-radius: 8px;
      color: var(--text);
      font-size: 14px;
      font-weight: 600;
      transition: color .18s, background .18s;
    }
    .nav-login:hover { color: var(--g); background: var(--g-soft); }
    .hamburger {
      display: none;
      margin-left: auto;
      border: 0;
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      padding: 4px;
    }
    .hamburger svg { display: block; }
    .mobile-menu {
      display: none;
      padding: 16px 20px 20px;
      background: #fff;
      border-top: 1px solid var(--line);
    }
    .mobile-menu.open { display: grid; gap: 4px; }
    .mobile-menu a {
      padding: 10px 12px;
      border-radius: 8px;
      color: var(--ink);
      font-weight: 600;
      font-size: 15px;
      transition: background .15s;
    }
    .mobile-menu a:hover { background: var(--g-soft); }
    .mobile-menu .m-sep { height: 1px; background: var(--line); margin: 8px 0; }

    /* ── Buttons ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 24px;
      border-radius: 10px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: #fff;
      background: var(--g);
      box-shadow: var(--shadow-green);
    }
    .btn-primary:hover { background: var(--g-dark); box-shadow: 0 12px 36px rgba(9,168,50,.30); }
    .btn-secondary {
      color: var(--g-dark);
      background: var(--g-soft);
      border-color: rgba(9,168,50,.25);
    }
    .btn-secondary:hover { background: var(--g-light); border-color: rgba(9,168,50,.4); }
    .btn-outline {
      color: var(--text);
      background: transparent;
      border-color: var(--line);
    }
    .btn-outline:hover { background: var(--bg); border-color: #ccc; }
    .btn-lg { min-height: 54px; padding: 0 32px; font-size: 15px; border-radius: 12px; }

    /* ── Eyebrow ── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      color: var(--g-dark);
      background: var(--g-soft);
      border: 1px solid rgba(9,168,50,.2);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .02em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .eyebrow-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--g);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .6; transform: scale(.75); }
    }

    /* ── Section heads ── */
    .section-head { margin-bottom: 56px; }
    .section-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
    .section-head h2 { margin-bottom: 12px; }
    .section-head p { color: var(--text); font-size: 17px; line-height: 1.7; margin: 0; }

    h1 {
      font-size: clamp(44px, 6.5vw, 76px);
      font-weight: 900;
      line-height: .96;
      letter-spacing: -0.04em;
      margin-bottom: 22px;
    }
    h2 {
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 900;
      line-height: 1.03;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }
    h3 {
      font-size: 18px;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 8px;
    }

    /* ── Check items ── */
    .check-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }
    .check-icon {
      flex: 0 0 auto;
      width: 18px; height: 18px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--g-soft);
      border: 1px solid rgba(9,168,50,.25);
      color: var(--g);
      font-size: 10px;
      font-weight: 900;
    }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      position: relative;
      padding: 140px 0 100px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
    }
    .orb-1 {
      width: 600px; height: 600px;
      top: -180px; left: -120px;
      background: radial-gradient(circle, rgba(9,168,50,.12), transparent 70%);
      animation: float-orb 8s ease-in-out infinite;
    }
    .orb-2 {
      width: 400px; height: 400px;
      top: 60px; right: -60px;
      background: radial-gradient(circle, rgba(9,168,50,.07), transparent 70%);
      animation: float-orb 11s ease-in-out infinite reverse;
    }
    .orb-3 {
      width: 300px; height: 300px;
      bottom: -100px; left: 40%;
      background: radial-gradient(circle, rgba(9,168,50,.06), transparent 70%);
      animation: float-orb 14s ease-in-out infinite;
    }
    @keyframes float-orb {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(20px, -30px) scale(1.04); }
      66% { transform: translate(-15px, 20px) scale(.97); }
    }
    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1.08fr;
      gap: 64px;
      align-items: center;
    }
    .hero-content {}
    .hero-lead {
      max-width: 500px;
      color: var(--text);
      font-size: 18px;
      line-height: 1.72;
      margin-bottom: 32px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; align-items: flex-start; }
    .hero-cta-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
    .hero-no-cc { font-size: 11.5px; color: var(--muted); letter-spacing: .01em; }
    .hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }

    /* ── Hero visual ── */
    .hero-visual {
      position: relative;
      animation: float-shell 7s ease-in-out infinite;
    }
    @keyframes float-shell {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .hero-svg {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 24px 48px rgba(0,0,0,.13)) drop-shadow(0 6px 16px rgba(0,0,0,.08));
    }

    /* ── Product carousel below hero ── */
    .product-carousel-section {
      padding: 84px 0 96px;
      background: #fff;
      border-top: 1px solid var(--line);
    }
    .landing-carousel-shell {
      position: relative;
      max-width: 1120px;
      margin: 0 auto;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #f8fafc;
      box-shadow: var(--shadow-lg);
    }
    .landing-carousel-track {
      position: relative;
      width: 100%;
      aspect-ratio: 1583 / 750;
      max-height: 78vh;
      transition: aspect-ratio .35s ease;
    }
    .landing-carousel-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateX(18px);
      transition: opacity .45s ease, transform .45s ease;
      pointer-events: none;
    }
    .landing-carousel-slide.active {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    .landing-carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #f8fafc;
      cursor: zoom-in;
    }
    .landing-carousel-nav {
      position: absolute;
      top: 50%;
      z-index: 8;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.86);
      border-radius: 50%;
      background: rgba(255,255,255,.88);
      color: var(--ink);
      box-shadow: var(--shadow-sm);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transform: translateY(-50%);
    }
    .landing-carousel-nav.prev { left: 10px; }
    .landing-carousel-nav.next { right: 10px; }
    .landing-carousel-nav[hidden],
    .landing-carousel-dots[hidden] { display: none; }
    .landing-carousel-dots {
      position: absolute;
      left: 50%;
      bottom: 14px;
      z-index: 8;
      display: flex;
      gap: 7px;
      padding: 6px 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.84);
      box-shadow: var(--shadow-sm);
      transform: translateX(-50%);
    }
    .landing-carousel-dot {
      width: 8px;
      height: 8px;
      border: 0;
      border-radius: 50%;
      background: rgba(13,17,23,.24);
      cursor: pointer;
    }
    .landing-carousel-dot.active { background: var(--g); }
    .landing-carousel-lightbox {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(13,17,23,.88);
    }
    .landing-carousel-lightbox.open { display: flex; }
    .landing-carousel-lightbox img {
      max-width: min(1180px, 92vw);
      max-height: 86vh;
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 30px 100px rgba(0,0,0,.45);
      cursor: zoom-in;
      transition: transform .2s ease;
    }
    .landing-carousel-lightbox img.zoomed {
      transform: scale(1.65);
      cursor: zoom-out;
    }
    .carousel-lightbox-close,
    .carousel-lightbox-arrow {
      position: absolute;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      color: #fff;
      cursor: pointer;
      backdrop-filter: blur(10px);
    }
    .carousel-lightbox-close {
      top: 18px;
      right: 18px;
      width: 44px;
      height: 44px;
      font-size: 28px;
    }
    .carousel-lightbox-arrow {
      top: 50%;
      width: 48px;
      height: 48px;
      font-size: 32px;
      transform: translateY(-50%);
    }
    .carousel-lightbox-arrow.prev { left: 18px; }
    .carousel-lightbox-arrow.next { right: 18px; }

    /* ── Floating badges ── */
    .hbadge {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,.9);
      border-radius: 14px;
      padding: 10px 14px;
      box-shadow: 0 8px 28px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
      white-space: nowrap;
      pointer-events: none;
    }
    .hbadge-icon {
      width: 34px; height: 34px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .hbadge-icon svg { width: 18px; height: 18px; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
    .hbadge-icon.green { background: var(--g-soft); color: var(--g); stroke: var(--g); }
    .hbadge-icon.green svg { stroke: var(--g); }
    .hbadge-icon.blue  { background: #eff6ff; }
    .hbadge-icon.blue svg  { stroke: #2563eb; }
    .hbadge-icon.amber { background: #fffbeb; }
    .hbadge-icon.amber svg { stroke: #d97706; }
    .hbadge-label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; line-height: 1; margin-bottom: 2px; }
    .hbadge-value { font-size: 13px; font-weight: 800; color: var(--ink); line-height: 1.2; }
    .hbadge-dot {
      width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
      animation: badge-pulse 2s ease-in-out infinite;
    }
    @keyframes badge-pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(.7); }
    }

    /* Badge positions */
    .hb-1 { top: 8%; left: -4%; animation: hb-float1 6s ease-in-out infinite; }
    .hb-2 { bottom: 22%; right: -2%; animation: hb-float2 8s ease-in-out infinite; }
    .hb-3 { bottom: 6%; left: 8%; animation: hb-float1 10s ease-in-out infinite reverse; }

    @keyframes hb-float1 {
      0%,100% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
    }
    @keyframes hb-float2 {
      0%,100% { transform: translateY(0px); }
      50% { transform: translateY(8px); }
    }

    /* Pill (still used in other sections) */
    .pill {
      padding: 2px 8px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 800;
      background: var(--g-soft);
      color: var(--g-dark);
      white-space: nowrap;
    }
    .pill.blue { background: #eff6ff; color: #1d4ed8; }
    .pill.gray { background: #f3f4f6; color: #374151; }

    /* ══════════════════════════════════════
       STATS BAR
    ══════════════════════════════════════ */
    .stats-bar {
      padding: 0;
      background: var(--ink);
      overflow: hidden;
    }
    .stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 32px 20px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .stat-item:last-child { border-right: 0; }
    .stat-number {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 900;
      color: #fff;
      line-height: 1;
      margin-bottom: 6px;
      letter-spacing: -0.03em;
    }
    .stat-number span { color: var(--g); }
    .stat-label {
      font-size: 13px;
      color: rgba(255,255,255,.5);
      font-weight: 500;
    }

    /* ══════════════════════════════════════
       FEATURES
    ══════════════════════════════════════ */
    .features-section { padding: 78px 0; background: var(--bg); }
    .features-carousel {
      position: relative;
    }
    .features-carousel-track {
      display: grid;
      grid-auto-columns: minmax(260px, 31%);
      grid-auto-flow: column;
      gap: 16px;
      overflow-x: auto;
      padding: 4px 4px 18px;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }
    .features-carousel-track::-webkit-scrollbar { display: none; }
    .feature-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(15,23,42,.05);
      cursor: pointer;
      min-height: 220px;
      padding: 24px;
      scroll-snap-align: start;
      transition: border-color .2s, box-shadow .2s, transform .2s;
    }
    .feature-card:hover,
    .feature-card.active {
      border-color: rgba(9,168,50,.32);
      box-shadow: var(--shadow);
      transform: translateY(-3px);
    }
    .feature-card-icon {
      align-items: center;
      background: var(--g-soft);
      border: 1px solid rgba(9,168,50,.18);
      border-radius: 8px;
      color: var(--g);
      display: flex;
      height: 52px;
      justify-content: center;
      margin-bottom: 22px;
      width: 52px;
    }
    .feature-card-icon svg {
      fill: none;
      height: 25px;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 2;
      width: 25px;
    }
    .feature-card-icon.blue { background: #eff6ff; border-color: rgba(37,99,235,.18); color: #2563eb; }
    .feature-card-icon.amber { background: #fffbeb; border-color: rgba(217,119,6,.18); color: #d97706; }
    .feature-card-icon.violet { background: #f5f3ff; border-color: rgba(124,58,237,.18); color: #7c3aed; }
    .feature-card-icon.teal { background: #ecfeff; border-color: rgba(8,145,178,.18); color: #0891b2; }
    .feature-card-icon.rose { background: #fff1f2; border-color: rgba(225,29,72,.18); color: #e11d48; }
    .feature-card h3 {
      font-size: 20px;
      margin: 0 0 10px;
    }
    .feature-card p {
      color: var(--text);
      font-size: 14px;
      line-height: 1.58;
      margin: 0;
    }
    .features-carousel-controls {
      align-items: center;
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 0;
    }
    .features-carousel-btn {
      align-items: center;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--ink);
      cursor: pointer;
      display: flex;
      font-size: 24px;
      font-weight: 700;
      height: 38px;
      justify-content: center;
      line-height: 1;
      transition: border-color .2s, color .2s, box-shadow .2s;
      width: 38px;
    }
    .features-carousel-btn:hover,
    .features-carousel-btn:focus-visible {
      border-color: rgba(9,168,50,.35);
      box-shadow: var(--shadow);
      color: var(--g);
      outline: none;
    }
    .booking-mini {
      background: var(--g-soft);
      border: 1px solid rgba(9,168,50,.2);
      border-radius: var(--radius-sm);
      padding: 14px;
    }
    .booking-mini-title { font-size: 12px; font-weight: 700; color: var(--g-dark); margin-bottom: 10px; }
    .slot-mini {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 10px;
      border-radius: 6px;
      background: #fff;
      border: 1px solid rgba(9,168,50,.15);
      margin-bottom: 6px;
      font-size: 11px;
      font-weight: 600;
      color: var(--text);
    }
    .slot-mini:last-child { margin-bottom: 0; }
    .slot-mini-check { color: var(--g); font-weight: 900; }

    /* ══════════════════════════════════════
       BOOKING
    ══════════════════════════════════════ */
    .booking-section { padding: 100px 0; background: #fff; }
    .split-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 72px;
      align-items: center;
    }
    .booking-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-lg);
    }
    .booking-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }
    .booking-header h3 { font-size: 16px; margin: 0; }
    .slot-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px;
      border-radius: 10px;
      border: 1px solid var(--line);
      margin-bottom: 10px;
      cursor: pointer;
      transition: border-color .18s, background .18s, transform .18s;
    }
    .slot-item:hover { border-color: rgba(9,168,50,.4); background: var(--g-soft); transform: translateX(3px); }
    .slot-item.selected { border-color: var(--g); background: var(--g-soft); }
    .slot-date { text-align: center; min-width: 42px; }
    .slot-day { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
    .slot-num { font-size: 22px; font-weight: 900; line-height: 1; color: var(--ink); }
    .slot-sep { width: 1px; background: var(--line); align-self: stretch; }
    .slot-info { flex: 1; }
    .slot-time { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
    .slot-mode { font-size: 12px; color: var(--muted); font-weight: 500; }
    .check-circle {
      width: 22px; height: 22px;
      border-radius: 50%;
      border: 2px solid var(--line);
      display: grid;
      place-items: center;
      font-size: 11px;
      color: transparent;
      transition: all .18s;
    }
    .slot-item.selected .check-circle { background: var(--g); border-color: var(--g); color: #fff; }
    .split-content .steps-list { display: grid; gap: 18px; margin-top: 32px; }
    .step-item { display: flex; gap: 14px; align-items: flex-start; }
    .step-num {
      flex: 0 0 auto;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--g);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      display: grid;
      place-items: center;
    }
    .step-body h3 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
    .step-body p { font-size: 13px; color: var(--text); line-height: 1.55; margin: 0; }

    /* ══════════════════════════════════════
       TEAMS
    ══════════════════════════════════════ */
    .teams-section {
      padding: 100px 0;
      background: #0d1117;
      color: #fff;
      overflow: hidden;
      position: relative;
    }
    .teams-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(9,168,50,.14), transparent 42%),
        radial-gradient(circle at 82% 20%, rgba(91,164,212,.18), transparent 34%);
      pointer-events: none;
    }
    .teams-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
      gap: 72px;
      align-items: center;
    }
    .teams-kicker {
      display: inline-flex;
      align-items: center;
      height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(9,168,50,.16);
      border: 1px solid rgba(9,168,50,.32);
      color: #b8f7c7;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 18px;
    }
    .teams-content h2 {
      max-width: 720px;
      color: #fff;
      font-size: clamp(32px, 4.2vw, 54px);
      line-height: 1.03;
      margin-bottom: 18px;
    }
    .teams-content > p {
      max-width: 640px;
      color: rgba(255,255,255,.76);
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 30px;
    }
    .teams-highlights {
      display: grid;
      gap: 12px;
      margin-bottom: 32px;
    }
    .team-highlight {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.05);
    }
    .team-highlight-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(9,168,50,.13);
      color: #8df0a5;
    }
    .team-highlight-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .team-highlight h3 {
      color: #fff;
      font-size: 15px;
      margin-bottom: 4px;
    }
    .team-highlight p {
      color: rgba(255,255,255,.68);
      font-size: 13px;
      line-height: 1.55;
      margin: 0;
    }
    .teams-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .teams-actions .btn-outline {
      color: #fff;
      border-color: rgba(255,255,255,.26);
    }
    .teams-actions .btn-outline:hover {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.45);
    }
    .teams-visual { position: relative; }
    .team-panel {
      position: relative;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 18px;
      background: rgba(255,255,255,.92);
      color: var(--ink);
      box-shadow: 0 28px 80px rgba(0,0,0,.36);
    }
    .team-panel::before {
      content: '';
      position: absolute;
      inset: -18px;
      z-index: -1;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(9,168,50,.28), rgba(91,164,212,.22));
      filter: blur(2px);
    }
    .team-panel-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }
    .team-panel-top span {
      display: block;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 3px;
    }
    .team-panel-top strong { font-size: 18px; line-height: 1.2; }
    .team-panel-top button {
      min-height: 38px;
      padding: 0 16px;
      border: 0;
      border-radius: 8px;
      background: var(--g);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
    }
    .team-members {
      display: grid;
      gap: 10px;
      padding: 16px 0;
    }
    .team-member {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fff;
      box-shadow: var(--shadow-sm);
    }
    .team-member.active {
      border-color: rgba(9,168,50,.36);
      background: var(--g-soft);
    }
    .team-avatar {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
    }
    .team-avatar.blue { background: #2563eb; }
    .team-avatar.green { background: var(--g); }
    .team-avatar.amber { background: #d97706; }
    .team-member strong {
      display: block;
      font-size: 14px;
      line-height: 1.2;
    }
    .team-member span {
      color: var(--muted);
      font-size: 12px;
    }
    .team-member em {
      color: var(--g-dark);
      font-size: 11px;
      font-style: normal;
      font-weight: 800;
      white-space: nowrap;
    }
    .team-workflow {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .team-workflow > div {
      padding: 14px;
      border-radius: 10px;
      background: #f8fafc;
      border: 1px solid var(--line);
    }
    .workflow-dot {
      width: 8px;
      height: 8px;
      display: inline-block;
      border-radius: 50%;
      background: var(--g);
      margin-bottom: 10px;
    }
    .team-workflow strong {
      display: block;
      font-size: 13px;
      margin-bottom: 4px;
    }
    .team-workflow small {
      display: block;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.45;
    }

    /* ══════════════════════════════════════
       EMAIL / RECORDATORIOS SECTION
    ══════════════════════════════════════ */
    .wp-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #4338ca 100%);
      position: relative;
      overflow: hidden;
    }
    .wp-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .wp-section .container { position: relative; z-index: 1; }
    .wp-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 72px;
      align-items: center;
    }
    .wp-content { color: #fff; }
    .wp-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
      backdrop-filter: blur(8px);
    }
    .wp-badge svg { width: 14px; height: 14px; fill: #a5b4fc; flex-shrink: 0; }
    .wp-content h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; line-height: 1.15; margin-bottom: 20px; color: #fff; }
    .wp-content h2 span { color: #a5b4fc; }
    .wp-content p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.85); margin-bottom: 36px; }
    .wp-features { display: grid; gap: 16px; margin-bottom: 40px; }
    .wp-feat { display: flex; gap: 14px; align-items: flex-start; }
    .wp-feat-icon {
      width: 38px; height: 38px;
      background: rgba(165,180,252,.15);
      border: 1px solid rgba(165,180,252,.3);
      border-radius: 10px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .wp-feat-icon svg { width: 18px; height: 18px; fill: none; stroke: #a5b4fc; stroke-width: 2; }
    .wp-feat-body h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
    .wp-feat-body p { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.5; margin: 0; }
    .wp-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #6366f1;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 12px;
      transition: transform .18s, box-shadow .18s;
      box-shadow: 0 8px 24px rgba(99,102,241,.4);
    }
    .wp-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(99,102,241,.55); }
    .wp-cta svg { width: 18px; height: 18px; fill: none; stroke: #fff; flex-shrink: 0; }

    .wp-phone {
      background: #e8eaf6;
      border-radius: 28px;
      padding: 20px 16px 28px;
      box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 8px rgba(255,255,255,.08);
      max-width: 340px;
      margin: 0 auto;
    }
    .wp-phone-bar {
      background: #075E54;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      margin: -20px -16px 16px;
      border-radius: 16px 16px 0 0;
    }
    .wp-phone-avatar {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.15);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 16px;
      flex-shrink: 0;
    }
    .wp-phone-name { font-size: 13px; font-weight: 700; color: #fff; }
    .wp-phone-status { font-size: 11px; color: rgba(255,255,255,.65); }
    .wp-bubble {
      background: #fff;
      border-radius: 0 12px 12px 12px;
      padding: 12px 14px;
      font-size: 13px;
      line-height: 1.55;
      color: #111;
      box-shadow: 0 1px 3px rgba(0,0,0,.1);
      position: relative;
      max-width: 88%;
      margin-bottom: 6px;
    }
    .wp-bubble::before {
      content: '';
      position: absolute;
      top: 0; left: -7px;
      border: 7px solid transparent;
      border-top-color: #fff;
      border-left: 0;
    }
    .wp-bubble-time { font-size: 10px; color: #999; text-align: right; margin-top: 6px; }
    .wp-bubble b { color: #075E54; }
    .wp-bubble-sent {
      background: #DCF8C6;
      border-radius: 12px 0 12px 12px;
      padding: 12px 14px;
      font-size: 13px;
      line-height: 1.55;
      color: #111;
      box-shadow: 0 1px 3px rgba(0,0,0,.1);
      margin-left: auto;
      max-width: 80%;
      text-align: right;
      position: relative;
    }
    .wp-bubble-sent::before {
      content: '';
      position: absolute;
      top: 0; right: -7px;
      border: 7px solid transparent;
      border-top-color: #DCF8C6;
      border-right: 0;
    }
    .wp-bubble-sent-time { font-size: 10px; color: #666; }
    .wp-bubbles { display: flex; flex-direction: column; gap: 8px; }
    .wp-new-badge {
      text-align: center;
      font-size: 11px;
      color: #666;
      background: rgba(0,0,0,.07);
      border-radius: 100px;
      padding: 4px 12px;
      display: inline-block;
      margin: 4px auto;
      align-self: center;
    }

    @media (max-width: 860px) {
      .wp-grid { grid-template-columns: 1fr; gap: 48px; }
      .wp-phone { max-width: 320px; }
    }

    /* ══════════════════════════════════════
       HOW IT WORKS
    ══════════════════════════════════════ */
    .how-section { padding: 100px 0; background: var(--bg); }
    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
    }
    .how-connector {
      position: absolute;
      top: 40px;
      left: calc(33.33% + 20px);
      right: calc(33.33% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--g-light), var(--g-soft));
      z-index: 0;
    }
    .how-connector::after {
      content: '';
      position: absolute;
      right: -1px;
      top: -5px;
      width: 0; height: 0;
      border-left: 8px solid var(--g-light);
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
    }
    .how-card {
      position: relative;
      z-index: 1;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: border-color .2s, box-shadow .2s, transform .2s;
    }
    .how-card:hover { border-color: rgba(9,168,50,.3); box-shadow: var(--shadow); transform: translateY(-4px); }
    .how-num {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--g), var(--g-dark));
      color: #fff;
      font-size: 18px;
      font-weight: 900;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      box-shadow: 0 6px 20px rgba(9,168,50,.25);
    }
    .how-card h3 { font-size: 18px; margin-bottom: 8px; }
    .how-card p { color: var(--text); font-size: 14px; line-height: 1.65; margin: 0; }

    /* ══════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════ */
    .testimonials-section { padding: 100px 0; background: #fff; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .testimonial-card {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      transition: border-color .2s, box-shadow .2s, transform .2s;
    }
    .testimonial-card:hover {
      border-color: rgba(9,168,50,.25);
      box-shadow: var(--shadow);
      transform: translateY(-3px);
    }
    .testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .testimonial-stars span { color: #f59e0b; font-size: 15px; }
    .testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 20px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .testimonial-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--g), var(--g-dark));
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      flex-shrink: 0;
    }
    .testimonial-name { font-size: 14px; font-weight: 700; color: var(--ink); }
    .testimonial-role { font-size: 12px; color: var(--muted); margin-top: 1px; }

    /* ══════════════════════════════════════
       PRICING
    ══════════════════════════════════════ */
    .pricing-section { padding: 100px 0; background: var(--bg); }
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: stretch;
      max-width: 820px;
      margin: 0 auto;
    }
    .plan-card {
      border-radius: var(--radius-lg);
      padding: 36px 32px 32px;
      border: 1px solid var(--line);
      background: #fff;
      display: flex;
      flex-direction: column;
      transition: border-color .2s;
    }
    .plan-card:hover { border-color: #c8c8c8; }
    .plan-card .plan-features { flex: 1; }
    .plan-card.featured { border-color: var(--g); border-width: 1.5px; }
    /* banner eliminado — reemplazado por indicador inline */
    .plan-popular-banner { display: none; }
    .plan-header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    .plan-tag {
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--muted);
      background: none;
      border: none;
      padding: 0;
    }
    .plan-tag.green { color: var(--g-dark); }
    .plan-popular-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 700;
      color: var(--g-dark);
      background: var(--g-soft);
      border: 1px solid rgba(9,168,50,.22);
      border-radius: 999px;
      padding: 3px 9px;
      white-space: nowrap;
    }
    .plan-popular-pill::before { content: '●'; font-size: 6px; }
    .plan-name { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
    .plan-price {
      font-size: 48px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--ink);
      margin: 4px 0 0;
      transition: font-size .2s;
    }
    .plan-price small { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
    .plan-price.consultar-mode { font-size: 28px; color: var(--g-dark); }
    .plan-desc { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 14px 0 0; }
    .plan-divider { height: 1px; background: var(--line); margin: 20px 0; }
    .plan-features { list-style: none; display: grid; gap: 11px; margin-bottom: 28px; }
    .plan-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13.5px; font-weight: 500; color: var(--text);
    }
    .plan-features li .check-icon { margin-top: 1px; flex-shrink: 0; }
    .team-calc {
      margin: 0 0 16px;
      padding: 14px;
      border-radius: var(--radius-sm);
      background: #fafafa;
      border: 1px solid var(--line);
    }
    .team-calc-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 10px;
    }
    .team-stepper {
      display: grid;
      grid-template-columns: 38px 1fr 38px;
      gap: 8px;
      align-items: center;
    }
    .stepper-btn {
      height: 38px;
      border: 1px solid rgba(9,168,50,.25);
      border-radius: 8px;
      background: #fff;
      color: var(--g-dark);
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      transition: background .15s, border-color .15s;
    }
    .stepper-btn:hover:not(:disabled) { background: var(--g-light); border-color: var(--g); }
    .stepper-btn:disabled { opacity: .35; cursor: not-allowed; }
    .team-count-display {
      height: 38px;
      border: 1px solid rgba(9,168,50,.2);
      border-radius: 8px;
      background: #fff;
      display: grid;
      place-items: center;
      font-size: 13px;
      font-weight: 800;
      color: var(--ink);
    }
    .consultar-cta {
      display: none;
      width: 100%;
      margin-top: 10px;
      padding: 10px;
      background: rgba(9,168,50,.06);
      border: 1px dashed rgba(9,168,50,.3);
      border-radius: 8px;
      text-align: center;
      font-size: 12px;
      color: var(--g-dark);
      font-weight: 600;
    }
    .consultar-cta a { color: var(--g-dark); text-decoration: underline; }
    .consultar-cta.visible { display: block; }

    /* ══════════════════════════════════════
       WA API ADDON
    ══════════════════════════════════════ */
    .wa-addon-section { padding: 80px 0; background: #f0fdf4; border-top: 1px solid rgba(9,168,50,.15); border-bottom: 1px solid rgba(9,168,50,.15); }
    .wa-addon-header { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 12px; }
    .wa-addon-badge { background: var(--g); color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 999px; }
    .wa-addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1060px; margin: 40px auto 0; }
    .wa-addon-medida { max-width: 1060px; margin: 16px auto 0; background: #fff; border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .wa-addon-medida p { font-size: 14px; color: var(--text); margin: 0; }
    .wa-addon-medida a { font-size: 13px; font-weight: 700; color: var(--g-dark); text-decoration: underline; white-space: nowrap; }
    .wa-addon-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; transition: box-shadow .2s, border-color .2s; }
    .wa-addon-card:hover { box-shadow: var(--shadow); border-color: rgba(9,168,50,.3); }
    .wa-addon-card.featured { border-color: var(--g); box-shadow: 0 0 0 1px rgba(9,168,50,.15), 0 12px 32px rgba(9,168,50,.10); }
    .wa-plan-name { font-size: 15px; font-weight: 800; color: var(--ink); }
    .wa-plan-msgs { font-size: 13px; color: var(--muted); }
    .wa-plan-price { font-size: 32px; font-weight: 900; color: var(--ink); margin: 10px 0 2px; line-height: 1; }
    .wa-plan-price small { font-size: 14px; font-weight: 600; color: var(--muted); }
    .wa-plan-extra { font-size: 12px; color: var(--muted); }
    .wa-addon-note { max-width: 620px; margin: 32px auto 0; text-align: center; }
    .wa-addon-note p { font-size: 13px; color: var(--muted); line-height: 1.7; }
    .wa-addon-note strong { color: var(--text); }
    @media (max-width: 860px) { .wa-addon-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .wa-addon-grid { grid-template-columns: 1fr; } }

    /* ══════════════════════════════════════
       FAQ
    ══════════════════════════════════════ */
    .faq-section { padding: 100px 0; background: var(--bg); }
    .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    details {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
    }
    details:hover { border-color: rgba(9,168,50,.25); }
    details[open] { border-color: rgba(9,168,50,.4); box-shadow: var(--shadow-sm); }
    summary {
      padding: 18px 20px;
      cursor: pointer;
      font-weight: 700;
      font-size: 15px;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      user-select: none;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: '+';
      flex: 0 0 auto;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--bg);
      display: grid;
      place-items: center;
      font-size: 14px;
      font-weight: 800;
      color: var(--g);
      transition: transform .2s, background .2s;
    }
    details[open] summary::after { content: '−'; background: var(--g-soft); transform: rotate(0deg); }
    details p { padding: 0 20px 18px; color: var(--text); font-size: 14px; line-height: 1.7; margin: 0; }

    /* ══════════════════════════════════════
       CTA BANNER
    ══════════════════════════════════════ */
    .cta-banner {
      padding: 80px 0;
      background: linear-gradient(135deg, #082b15 0%, #0b3d1e 40%, #0d5426 100%);
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
    }
    .cta-banner-inner { position: relative; text-align: center; }
    .cta-banner h2 { color: #fff; margin-bottom: 14px; }
    .cta-banner p { color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.65; max-width: 520px; margin: 0 auto 36px; }
    .cta-banner-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
    .btn-white { background: #fff; color: var(--g-dark); border-color: transparent; }
    .btn-white:hover { background: var(--g-soft); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
    .btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
    .btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

    /* ══════════════════════════════════════
       CONTACT
    ══════════════════════════════════════ */
    .contact-section { padding: 100px 0; background: #f8fafc; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }

    /* Izquierda */
    .contact-eyebrow {
      display: inline-block;
      font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
      color: var(--g-dark); margin-bottom: 16px;
    }
    .contact-info h2 { line-height: 1.06; margin-bottom: 16px; }
    .contact-h2-accent { color: var(--g); }
    .contact-lead { color: var(--text); font-size: 15.5px; line-height: 1.72; margin-bottom: 32px; }
    .contact-channels { display: grid; gap: 10px; margin-bottom: 28px; }
    .contact-channel {
      display: flex; align-items: center; gap: 14px;
      padding: 16px 18px; border-radius: 12px;
      background: #fff; border: 1px solid var(--line);
      transition: border-color .18s, box-shadow .18s, transform .18s;
    }
    .contact-channel:hover {
      border-color: rgba(9,168,50,.28);
      box-shadow: var(--shadow-sm);
      transform: translateX(4px);
    }
    .channel-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      border-radius: 11px; background: var(--g-soft);
      display: grid; place-items: center; color: var(--g);
    }
    .channel-icon-wa { background: #dcf8e4; color: #128c3b; }
    .channel-icon svg { width: 20px; height: 20px; }
    .channel-body { flex: 1; }
    .channel-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 2px; }
    .channel-value { font-size: 14.5px; font-weight: 700; color: var(--ink); }
    .channel-arrow { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; opacity: 0; transition: opacity .18s; }
    .contact-channel:hover .channel-arrow { opacity: 1; color: var(--g); }
    .contact-trust {
      display: flex; align-items: center; gap: 7px;
      font-size: 12.5px; font-weight: 600; color: var(--muted);
    }
    .contact-trust svg { flex-shrink: 0; color: var(--g); }

    /* Derecha — form card */
    .form-card {
      background: #fff;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 8px 40px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
    }
    .form-card-header { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
    .form-card-title { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
    .form-card-subtitle { font-size: 13px; color: var(--muted); }
    .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    label { font-size: 12.5px; font-weight: 700; color: var(--text); }
    input, textarea, select {
      width: 100%; min-height: 46px; padding: 11px 14px;
      border: 1px solid var(--line); border-radius: 10px;
      color: var(--ink); background: #fafafa;
      font: inherit; font-size: 14px; outline: none;
      transition: border-color .18s, box-shadow .18s, background .18s;
    }
    input:focus, textarea:focus, select:focus {
      border-color: var(--g); background: #fff;
      box-shadow: 0 0 0 3px rgba(9,168,50,.10);
    }
    textarea { min-height: 116px; resize: vertical; }
    .contact-submit {
      width: 100%; margin-top: 22px; min-height: 52px;
      font-size: 15px; border-radius: 12px; gap: 9px;
    }
    .form-status { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--text); min-height: 20px; }


    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    .footer { padding: 36px 0 28px; background: var(--ink); border-top: 1px solid rgba(255,255,255,.05); }

    /* Fila 1: logo · links · social */
    .footer-main {
      display: grid;
      grid-template-columns: 120px 1fr 120px;
      align-items: center;
      gap: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,.07);
      margin-bottom: 20px;
    }
    .footer-logo img { width: 90px; filter: brightness(0) invert(1); opacity: .65; }
    .footer-links {
      display: flex; gap: 22px; flex-wrap: wrap;
      justify-content: center; align-items: center;
    }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; transition: color .15s; }
    .footer-links a:hover { color: #fff; }
    .footer-social { display: flex; gap: 14px; align-items: center; justify-content: flex-end; }
    .footer-social-link {
      display: grid; place-items: center;
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(255,255,255,.06); color: rgba(255,255,255,.6);
      transition: background .15s, color .15s;
    }
    .footer-social-link:hover { background: rgba(255,255,255,.12); color: #fff; }
    .footer-social-link svg { width: 15px; height: 15px; flex-shrink: 0; }

    /* Fila 2: copyright · badge legal */
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,.4); }
    .footer-trust {
      display: flex; align-items: center; gap: 5px;
      font-size: 11.5px; color: rgba(255,255,255,.35);
    }
    .footer-trust svg { opacity: .5; flex-shrink: 0; }

    /* ══ WhatsApp FAB ══ */
    .wa-fab {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 18px rgba(37,211,102,.45);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }
    .wa-fab::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: #25D366;
      animation: wa-pulse 2.4s ease-out infinite;
      z-index: -1;
    }
    @keyframes wa-pulse {
      0%   { transform: scale(1);   opacity: .55; }
      70%  { transform: scale(1.5); opacity: 0;   }
      100% { transform: scale(1.5); opacity: 0;   }
    }
    .wa-fab svg { width: 29px; height: 29px; flex-shrink: 0; }
    @media (max-width: 640px) {
      .wa-fab { bottom: 20px; right: 18px; width: 50px; height: 50px; }
      .wa-fab svg { width: 25px; height: 25px; }
    }

    .whatis-section { padding: 80px 0; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .whatis-inner { max-width: 700px; margin: 0 auto; text-align: center; }
    .whatis-inner h2 { font-size: 26px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }
    .whatis-inner p { color: var(--muted); font-size: 15px; line-height: 1.75; }

    .plan-trial {
      display: inline-flex;
      align-self: flex-start;
      align-items: center;
      gap: 6px;
      background: var(--g-soft);
      color: var(--g-dark);
      border: 1px solid rgba(9,168,50,.22);
      border-radius: 999px;
      font-size: 11.5px;
      font-weight: 700;
      padding: 4px 12px;
      margin: 10px 0 18px;
    }
    .plan-trial::before { content: '✓'; font-weight: 900; }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1020px) {
      .nav-links, .nav-actions { display: none; }
      .hamburger { display: block; }
      .hero { padding: 120px 0 80px; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { animation: none; }
      .hb-1 { top: 5%; left: 2%; }
      .hb-2 { bottom: 18%; right: 2%; }
      .hb-3 { bottom: 2%; left: 10%; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: 0; }
      .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
      .teams-grid { grid-template-columns: 1fr; gap: 44px; }
      .teams-visual { max-width: 560px; margin: 0 auto; width: 100%; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .split-grid { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: 1fr; }
      .how-connector { display: none; }
      .pricing-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    }
    @media (max-width: 640px) {
      .container { width: calc(100% - 24px); }
      .hero { padding: 104px 0 64px; }
      h1 { font-size: 40px; }
      h2 { font-size: 30px; }
      .hero-lead { font-size: 16px; }
      .hero-actions { flex-direction: column; }
      .btn { width: 100%; }
      .hero-cta-wrap { width: 100%; }
      .hero-no-cc { align-self: center; }
      .hbadge { padding: 8px 10px; gap: 8px; border-radius: 12px; }
      .hbadge-icon { width: 28px; height: 28px; border-radius: 8px; }
      .hbadge-icon svg { width: 14px; height: 14px; }
      .hbadge-label { font-size: 9px; }
      .hbadge-value { font-size: 12px; }
      .hero-visual { overflow: hidden; border-radius: 16px; }
      .landing-carousel-track { aspect-ratio: 750 / 1000; }
      .landing-carousel-slide img { object-fit: contain; }
      .landing-carousel-nav { width: 36px; height: 36px; font-size: 24px; }
      .landing-carousel-dots { bottom: 10px; }
      .landing-carousel-lightbox { padding: 14px; }
      .landing-carousel-lightbox img.zoomed { transform: scale(1.35); }
      .carousel-lightbox-arrow { width: 40px; height: 40px; font-size: 26px; }
      .carousel-lightbox-arrow.prev { left: 10px; }
      .carousel-lightbox-arrow.next { right: 10px; }
      .hb-1 { top: 4%; left: 1%; }
      .hb-2 { bottom: 16%; right: 1%; }
      .hb-3 { display: none; }
      .features-section { padding: 56px 0; }
      .features-carousel-track {
        grid-auto-columns: minmax(210px, 76%);
        gap: 12px;
        margin: 0 -12px;
        padding: 2px 12px 14px;
      }
      .feature-card {
        min-height: 168px;
        padding: 18px;
      }
      .feature-card:hover,
      .feature-card.active { transform: none; }
      .feature-card-icon {
        height: 42px;
        margin-bottom: 16px;
        width: 42px;
      }
      .feature-card-icon svg {
        height: 21px;
        width: 21px;
      }
      .feature-card h3 {
        font-size: 16px;
        margin-bottom: 7px;
      }
      .feature-card p {
        font-size: 12px;
        line-height: 1.45;
      }
      .features-carousel-controls {
        gap: 10px;
        margin-top: 0;
      }
      .features-carousel-btn {
        height: 34px;
        width: 34px;
      }
      .teams-section { padding: 72px 0; }
      .teams-actions { flex-direction: column; }
      .team-highlight { grid-template-columns: 42px minmax(0, 1fr); padding: 14px; }
      .team-highlight-icon { width: 42px; height: 42px; border-radius: 10px; }
      .team-panel { padding: 14px; border-radius: 14px; }
      .team-panel::before { inset: -8px; border-radius: 20px; }
      .team-panel-top { align-items: flex-start; }
      .team-member { grid-template-columns: 38px minmax(0, 1fr); }
      .team-member em { grid-column: 2; }
      .team-avatar { width: 38px; height: 38px; }
      .team-workflow { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .faq-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr; gap: 20px; text-align: center; }
      .footer-logo { display: flex; justify-content: center; }
      .footer-social { justify-content: center; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
    }
