﻿:root {
      --bg: #060a12;
      --surface: #0b111d;
      --surface-2: #0e1524;
      --card: #101a2d;
      --border: #1c2b44;
      --border-hi: #274066;
      --accent: #1677ff;
      --accent-2: #0f5dd8;
      --accent-soft: rgba(22, 119, 255, .12);
      --accent-soft-2: rgba(22, 119, 255, .18);
      --accent-glow: rgba(22, 119, 255, .28);
      --text: #eef3fb;
      --muted: #93a2bd;
      --muted-2: #5f7293;
      --success: #58d68d;
      --warn: #f2c14e;
      --font-head: 'Barlow Condensed', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
      --radius: 18px;
      --shadow-xl: 0 32px 90px rgba(0, 0, 0, .45);
      --shadow-blue: 0 0 0 1px rgba(22, 119, 255, .18), 0 24px 70px rgba(7, 25, 55, .55), 0 0 60px rgba(22, 119, 255, .12);
  }

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      background:
          radial-gradient(circle at 15% -10%, rgba(22, 119, 255, .18), transparent 28%),
          radial-gradient(circle at 85% 20%, rgba(22, 119, 255, .10), transparent 24%),
          linear-gradient(180deg, #050811 0%, #060b14 32%, #05070d 100%);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
  }

  a {
      color: inherit;
      text-decoration: none;
  }

  img {
      display: block;
      max-width: 100%;
  }

  .container {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
  }

  .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(22, 119, 255, .22);
      background: rgba(10, 18, 32, .82);
      color: #c7dbff;
      font-size: 12px;
      font-family: var(--font-mono);
      letter-spacing: .08em;
      text-transform: uppercase;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 0 0 1px rgba(22, 119, 255, .06);
  }

  .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #9db8e6;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 20px;
  }

  .section-label::before {
      content: '';
      width: 28px;
      height: 1px;
      background: rgba(157, 184, 230, .35);
      display: block;
  }

  nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(14px);
      background: rgba(5, 8, 15, .72);
      border-bottom: 1px solid rgba(39, 64, 102, .5);
  }

  .nav-inner {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
  }

  .logo-wrap {
      display: inline-flex;
      align-items: center;
      gap: 14px;
  }

  .logo-wrap img {
      height: 38px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 0 12px rgba(22, 119, 255, .18));
  }

  .logo-text-fallback {
      display: none;
      font-family: var(--font-head);
      font-size: 24px;
      letter-spacing: .02em;
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
  }

  .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      transition: color .2s ease, transform .2s ease;
  }

  .nav-link:hover {
      color: var(--text);
      transform: translateY(-1px);
  }

  .btn-primary,
  .btn-secondary,
  .plan-cta {
      border: none;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }

  .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 22px;
      border-radius: 12px;
      color: #f7fbff;
      background: linear-gradient(180deg, #1e86ff 0%, #1268ec 100%);
      box-shadow: 0 16px 28px rgba(18, 104, 236, .28), inset 0 1px 0 rgba(255, 255, 255, .16);
      font-weight: 700;
      font-size: 14px;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(18, 104, 236, .38), 0 0 0 1px rgba(30, 134, 255, .28);
  }

  .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 22px;
      border-radius: 12px;
      color: #dbe8ff;
      background: rgba(12, 20, 35, .5);
      border: 1px solid rgba(48, 77, 121, .72);
      font-weight: 600;
      font-size: 14px;
  }

  .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(92, 134, 201, .72);
      color: #fff;
  }

  .hero {
      position: relative;
      padding: 54px 0 80px;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -140px;
      width: 560px;
      height: 560px;
      background: radial-gradient(circle, rgba(22, 119, 255, .18) 0%, transparent 66%);
      pointer-events: none;
      filter: blur(10px);
  }

  .hero::after {
      content: '';
      position: absolute;
      left: -220px;
      bottom: 20px;
      width: 540px;
      height: 300px;
      background: radial-gradient(circle, rgba(22, 119, 255, .10) 0%, transparent 72%);
      pointer-events: none;
  }

  .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
      gap: 44px;
      align-items: center;
  }

  .hero-brand {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
  }

  .hero-brand img {
      height: 66px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 0 14px rgba(22, 119, 255, .2));
  }

  .hero-brand .brand-name {
      font-family: var(--font-head);
      font-size: clamp(30px, 4vw, 48px);
      line-height: .92;
      letter-spacing: .02em;
  }

  .hero-eyebrow {
      margin-bottom: 20px;
  }

  .hero-title {
      font-family: var(--font-head);
      font-size: clamp(64px, 8vw, 104px);
      line-height: .92;
      text-transform: uppercase;
      letter-spacing: -.015em;
      margin-bottom: 20px;
      text-wrap: balance;
  }

  .hero-title .accent {
      color: #2f8fff;
      text-shadow: 0 0 24px rgba(22, 119, 255, .18);
  }

  .hero-sub {
      max-width: 610px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.72;
      margin-bottom: 32px;
  }

  .hero-sub strong {
      color: var(--text);
      font-weight: 700;
  }

  .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 30px;
  }

  .hero-trust {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
  }

  .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #a8b7d2;
      font-size: 14px;
  }

  .trust-item .bullet {
      width: 20px;
      height: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      color: #dcebff;
      font-size: 12px;
      background: rgba(22, 119, 255, .18);
      border: 1px solid rgba(22, 119, 255, .22);
      box-shadow: 0 0 18px rgba(22, 119, 255, .08);
  }

  .hero-right {
      position: relative;
      min-height: 620px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

.hero-brand-logo-only {
    position: absolute;
    top: -125px;
    left: 50%;
    z-index: 8;
    transform: translateX(-50%);
    width: min(720px, 90vw);
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.hero-brand-logo-only img {
    width: min(680px, 90vw);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 46px rgba(22, 119, 255, .34));
}

  .mockup-glow {
      position: absolute;
      inset: auto -80px -80px auto;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(22, 119, 255, .20) 0%, transparent 68%);
      filter: blur(10px);
      pointer-events: none;
  }

  .mockup-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(8, 14, 26, .96) 0%, rgba(8, 13, 24, .98) 100%);
      border: 1px solid rgba(45, 74, 120, .82);
      box-shadow: var(--shadow-blue);
  }

  .mockup-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 18px;
      border-bottom: 1px solid rgba(35, 54, 84, .8);
      background: rgba(6, 10, 18, .72);
  }

  .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
  }

  .dot-r {
      background: #ff5f57;
  }

  .dot-y {
      background: #ffbd2f;
  }

  .dot-g {
      background: #28ca42;
  }

  .mockup-title {
      margin-left: 8px;
      color: #7f94b8;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: .06em;
      text-transform: uppercase;
  }

  .mockup-body {
      padding: 18px;
      background:
          radial-gradient(circle at bottom right, rgba(22, 119, 255, .08), transparent 32%),
          linear-gradient(180deg, rgba(8, 13, 24, 1) 0%, rgba(9, 14, 25, 1) 100%);
  }

  .mock-dashboard {
      display: grid;
      grid-template-columns: 170px minmax(0, 1fr);
      gap: 16px;
      min-height: 520px;
  }

  .mock-sidebar {
      border-radius: 18px;
      border: 1px solid rgba(35, 54, 84, .9);
      background: linear-gradient(180deg, rgba(12, 19, 34, .9) 0%, rgba(10, 16, 29, .9) 100%);
      padding: 16px 12px;
  }

  .mock-side-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      padding: 0 4px;
  }

  .mock-side-brand img {
      width: 18px;
      height: 24px;
      object-fit: contain;
  }

  .mock-side-brand span {
      font-size: 11px;
      letter-spacing: .05em;
      font-family: var(--font-mono);
      color: #d7e4fb;
  }

  .mock-menu {
      display: flex;
      flex-direction: column;
      gap: 6px;
  }

  .mock-menu-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 10px;
      border-radius: 12px;
      color: #90a2c1;
      font-size: 12px;
      border: 1px solid transparent;
      background: transparent;
  }

  .mock-menu-item.active {
      color: #edf4ff;
      background: linear-gradient(180deg, rgba(22, 119, 255, .18), rgba(22, 119, 255, .10));
      border-color: rgba(22, 119, 255, .22);
  }

  .mock-main {
      display: flex;
      flex-direction: column;
      gap: 14px;
  }

  .mock-headline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 6px 4px 2px;
  }

  .mock-headline .left h3 {
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -.02em;
  }

  .mock-headline .left p {
      color: #7f94b8;
      font-size: 12px;
  }

  .mock-live {
      font-family: var(--font-mono);
      font-size: 10px;
      color: #dce9ff;
      background: rgba(22, 119, 255, .16);
      border: 1px solid rgba(22, 119, 255, .22);
      padding: 6px 10px;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: .08em;
  }

  .mock-kpis {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
  }

  .mock-kpi {
      padding: 14px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(12, 19, 34, .95), rgba(11, 17, 30, .92));
      border: 1px solid rgba(35, 54, 84, .9);
  }

  .mock-kpi-label {
      color: #7c91b6;
      font-size: 10px;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 7px;
  }

  .mock-kpi-val {
      font-family: var(--font-head);
      font-size: 28px;
      line-height: 1;
      letter-spacing: -.01em;
  }

  .mock-kpi-val.accent {
      color: #dfeaff;
  }

  .mock-kpi .delta {
      margin-top: 6px;
      font-size: 11px;
      color: #7ed1a5;
  }

  .mock-mid {
      display: grid;
      grid-template-columns: 1.4fr .9fr;
      gap: 10px;
  }

  .panel {
      border-radius: 18px;
      padding: 16px;
      background: linear-gradient(180deg, rgba(12, 19, 34, .95), rgba(11, 17, 30, .92));
      border: 1px solid rgba(35, 54, 84, .9);
  }

  .panel-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
  }

  .panel-title h4 {
      font-size: 13px;
      color: #dae7ff;
      font-weight: 700;
  }

  .panel-title span {
      font-size: 10px;
      color: #7c91b6;
      font-family: var(--font-mono);
      text-transform: uppercase;
  }

  .box-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
  }

  .box-card {
      padding: 12px 10px;
      border-radius: 14px;
      border: 1px solid rgba(46, 72, 111, .82);
      background: rgba(14, 21, 36, .85);
  }

  .box-card strong {
      display: block;
      font-size: 12px;
      margin-bottom: 4px;
      color: #f0f6ff;
  }

  .box-card em {
      display: block;
      font-style: normal;
      color: #4ebcff;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 4px;
  }

  .box-card span {
      color: #98a8c4;
      font-size: 11px;
  }

  .box-card.free em {
      color: #7fa7e8;
  }

  .box-card.wait em {
      color: #f2c14e;
  }

  .movement-list {
      display: flex;
      flex-direction: column;
      gap: 9px;
  }

  .movement {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 9px 10px;
      border-radius: 12px;
      background: rgba(14, 21, 36, .72);
      border: 1px solid rgba(33, 51, 79, .8);
  }

  .movement .desc small {
      display: block;
      color: #7f94b8;
      font-size: 10px;
      margin-top: 2px;
  }

  .movement .money {
      font-family: var(--font-mono);
      color: #eff5ff;
      font-size: 12px;
  }

  .chart-card {
      margin-top: 10px;
  }

  .chart {
      height: 116px;
      display: flex;
      align-items: end;
      gap: 8px;
      padding-top: 20px;
  }

  .bar {
      flex: 1;
      border-radius: 10px 10px 0 0;
      background: linear-gradient(180deg, rgba(44, 136, 255, .95) 0%, rgba(17, 93, 216, .48) 100%);
      box-shadow: 0 0 18px rgba(22, 119, 255, .08);
      min-height: 18px;
  }

  .bar.dim {
      background: linear-gradient(180deg, rgba(68, 98, 145, .72) 0%, rgba(41, 59, 87, .5) 100%);
      box-shadow: none;
  }

  .chart-labels {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 8px;
      margin-top: 8px;
      color: #7486a8;
      font-size: 10px;
      font-family: var(--font-mono);
      text-transform: uppercase;
      text-align: center;
  }

  .hero-animation-shell {
      position: relative;
      width: min(680px, 58vw);
      min-height: 620px;
      overflow: visible;
      background: transparent;
      border: 0;
      box-shadow: none;
      pointer-events: none;
  }

  .hero-animation-frame {
      position: absolute;
      top: 55%;
      left: 50%;
      display: block;
      width: 1100px;
      height: 620px;
      border: 0;
      background: transparent;
      transform: translate(-50%, -50%) scale(.66);
      transform-origin: center center;
  }

  section {
      position: relative;
  }

  .pain,
  .solution,
  .pricing,
  .trust,
  .final-cta,
  footer {
      padding: 92px 0;
  }

  .pain::before,
  .pricing::before,
  .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 80%, transparent 100%);
      opacity: .26;
  }

  .pain-header,
  .pricing-header,
  .final-cta {
      text-align: center;
  }

  .section-title {
      font-family: var(--font-head);
      font-size: clamp(42px, 5vw, 72px);
      line-height: .96;
      letter-spacing: -.02em;
      text-transform: uppercase;
      margin-bottom: 16px;
      text-wrap: balance;
  }

  .section-sub {
      max-width: 680px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.72;
  }

  .pain-grid {
      margin-top: 52px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
  }

  .pain-item,
  .feat-screen-card,
  .quote-block,
  .trust-credentials,
  .plan {
      background: linear-gradient(180deg, rgba(12, 18, 31, .92) 0%, rgba(10, 16, 28, .92) 100%);
      border: 1px solid rgba(35, 54, 84, .9);
      border-radius: 24px;
      box-shadow: 0 16px 36px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .03);
  }

  .pain-item {
      padding: 30px;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  }

  .pain-item:hover,
  .feat-screen-card:hover,
  .plan:hover,
  .quote-block:hover,
  .trust-credentials:hover {
      transform: translateY(-4px);
      border-color: rgba(65, 109, 180, .88);
      box-shadow: 0 18px 42px rgba(0, 0, 0, .26), 0 0 0 1px rgba(22, 119, 255, .06);
  }

  .pain-icon {
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      margin-bottom: 18px;
      font-size: 24px;
      background: rgba(22, 119, 255, .14);
      border: 1px solid rgba(22, 119, 255, .18);
      box-shadow: 0 0 18px rgba(22, 119, 255, .06);
  }

  .pain-q {
      font-family: var(--font-head);
      font-size: 32px;
      line-height: .96;
      text-transform: uppercase;
      margin-bottom: 12px;
  }

  .pain-desc {
      color: var(--muted);
      line-height: 1.72;
      font-size: 15px;
  }

  .solution-inner {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 42px;
      align-items: start;
  }

  .solution-left {
      position: sticky;
      top: 104px;
  }

  .solution-title {
      font-family: var(--font-head);
      font-size: clamp(42px, 5vw, 72px);
      line-height: .95;
      text-transform: uppercase;
      letter-spacing: -.02em;
      margin-bottom: 18px;
  }

  .solution-title span {
      color: #2f8fff;
  }

  .solution-body {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 28px;
      max-width: 540px;
  }

  .feat-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .feat {
      display: flex;
      gap: 14px;
      padding: 16px 18px;
      border-radius: 18px;
      border: 1px solid rgba(35, 54, 84, .82);
      background: rgba(11, 17, 30, .68);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
  }

  .feat:hover {
      transform: translateX(4px);
      border-color: rgba(70, 112, 182, .88);
      background: rgba(13, 21, 37, .9);
  }

  .feat-check {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: rgba(22, 119, 255, .16);
      color: #edf5ff;
      border: 1px solid rgba(22, 119, 255, .18);
      font-size: 13px;
      margin-top: 2px;
  }

  .feat-text strong {
      display: block;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 4px;
      color: #f0f6ff;
  }

  .feat-text span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
  }

  .feat-screens {
      display: grid;
      gap: 18px;
  }

  .feat-screen-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(35, 54, 84, .82);
  }

  .feat-screen-title {
      color: #dce8ff;
      font-size: 12px;
      font-family: var(--font-mono);
      letter-spacing: .08em;
      text-transform: uppercase;
  }

  .feat-screen-badge {
      font-size: 11px;
      color: #dce8ff;
      background: rgba(22, 119, 255, .14);
      border: 1px solid rgba(22, 119, 255, .18);
      border-radius: 999px;
      padding: 6px 10px;
      font-family: var(--font-mono);
  }

  .feat-screen-body {
      padding: 20px;
  }

  .feat-caption {
      margin-top: 12px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
  }

  .feat-caption strong {
      color: #f2f7ff;
  }

  .mock-caja {
      display: grid;
      gap: 10px;
  }

  .mock-orden {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px;
      border-radius: 18px;
      background: rgba(11, 18, 31, .76);
      border: 1px solid rgba(35, 54, 84, .82);
  }

  .mock-orden-id {
      color: #a6bee9;
      font-family: var(--font-mono);
      font-size: 12px;
      min-width: 42px;
  }

  .mock-orden-info {
      flex: 1;
  }

  .mock-orden-patente {
      font-weight: 700;
      font-size: 15px;
      color: #f3f8ff;
      margin-bottom: 2px;
  }

  .mock-orden-svc {
      color: var(--muted);
      font-size: 13px;
  }

  .mock-pill {
      font-size: 10px;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: .08em;
      border-radius: 999px;
      padding: 6px 10px;
      border: 1px solid transparent;
  }

  .pill-ok {
      background: rgba(22, 119, 255, .16);
      border-color: rgba(22, 119, 255, .18);
      color: #dbe9ff;
  }

  .pill-pend {
      background: rgba(242, 193, 78, .12);
      border-color: rgba(242, 193, 78, .2);
      color: #f4d783;
  }

  .mock-orden-monto {
      font-family: var(--font-mono);
      font-size: 15px;
      color: #eef5ff;
      font-weight: 600;
  }

  .mock-report-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding: 11px 0;
      border-bottom: 1px solid rgba(35, 54, 84, .76);
  }

  .mock-report-row:last-child {
      border-bottom: none;
  }

  .mock-report-label {
      color: var(--muted);
      font-size: 14px;
  }

  .mock-report-val {
      color: #eef5ff;
      font-family: var(--font-mono);
      font-size: 15px;
      font-weight: 600;
      text-align: right;
  }

  .mock-report-val.accent {
      color: #dce9ff;
  }

  .mock-chart-bars {
      height: 74px;
      display: flex;
      align-items: end;
      gap: 8px;
      margin-top: 18px;
  }

  .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 50px;
  }

  .plan {
      padding: 34px 28px 28px;
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
  }

  .plan.featured {
      border-color: rgba(67, 110, 183, .95);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .26), 0 0 0 1px rgba(22, 119, 255, .1), 0 0 44px rgba(22, 119, 255, .12);
  }

  .plan.featured::before {
      content: 'Mejor opción';
      position: absolute;
      top: -12px;
      left: 24px;
      padding: 6px 12px;
      border-radius: 999px;
      background: linear-gradient(180deg, #1e86ff 0%, #1268ec 100%);
      color: #f9fcff;
      font-size: 11px;
      font-weight: 700;
      box-shadow: 0 10px 22px rgba(18, 104, 236, .3);
  }

  .plan-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
  }

  .plan-name {
      font-family: var(--font-head);
      font-size: 34px;
      line-height: .92;
      text-transform: uppercase;
      margin-bottom: 6px;
  }

  .plan-desc {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
  }

  .plan-saving {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      color: #dce9ff;
      background: rgba(22, 119, 255, .12);
      border: 1px solid rgba(22, 119, 255, .18);
      font-family: var(--font-mono);
      text-transform: uppercase;
  }

  .plan-price {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      margin-bottom: 8px;
  }

  .plan-currency {
      font-family: var(--font-mono);
      color: #9eb5da;
      font-size: 19px;
      margin-top: 12px;
  }

  .plan-amount {
      font-family: var(--font-head);
      font-size: clamp(58px, 8vw, 76px);
      line-height: .9;
      letter-spacing: -.03em;
  }

  .plan-period {
      color: #cad9f2;
      font-size: 15px;
      margin-bottom: 6px;
  }

  .plan-total {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 24px;
  }

  .plan-total strong {
      color: #f1f6ff;
  }

  .plan-features {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-bottom: 28px;
      flex: 1;
  }

  .plan-features li {
      position: relative;
      padding-left: 24px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
  }

  .plan-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 0;
      color: #dce9ff;
      font-weight: 700;
  }

  .plan-cta {
      width: 100%;
      padding: 15px 18px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 15px;
  }

  .plan-cta.solid {
      color: #f8fbff;
      background: linear-gradient(180deg, #1e86ff 0%, #1268ec 100%);
      box-shadow: 0 18px 30px rgba(18, 104, 236, .22);
  }

  .plan-cta.outline {
      color: #dce9ff;
      background: rgba(12, 20, 35, .5);
      border: 1px solid rgba(46, 72, 111, .82);
  }

  .plan-cta:hover {
      transform: translateY(-2px);
  }

  .pricing-note {
      margin-top: 20px;
      text-align: center;
      color: var(--muted);
      font-size: 14px;
  }

  .trust-inner {
      display: grid;
      grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
      gap: 22px;
      align-items: start;
  }

  .quote-block {
      padding: 28px;
      margin-bottom: 18px;
      border-left: 3px solid rgba(22, 119, 255, .78);
  }

  .quote-text {
      color: #eef4ff;
      font-size: 18px;
      line-height: 1.75;
      margin-bottom: 16px;
  }

  .quote-author {
      color: #9fb7dd;
      font-size: 12px;
      font-family: var(--font-mono);
      letter-spacing: .08em;
      text-transform: uppercase;
  }

  .trust-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
  }

  .trust-stat {
      padding: 20px;
      border-radius: 20px;
      background: rgba(10, 16, 28, .84);
      border: 1px solid rgba(35, 54, 84, .82);
      text-align: center;
  }

  .trust-stat-num {
      font-family: var(--font-head);
      font-size: 48px;
      line-height: .9;
      color: #edf5ff;
      margin-bottom: 8px;
  }

  .trust-stat-label {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
  }

  .trust-credentials {
      padding: 30px;
  }

  .trust-cred-title {
      font-family: var(--font-head);
      font-size: clamp(34px, 4vw, 54px);
      line-height: .95;
      text-transform: uppercase;
      margin-bottom: 18px;
  }

  .trust-cred-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 13px 0;
      border-bottom: 1px solid rgba(35, 54, 84, .76);
  }

  .trust-cred-item:last-child {
      border-bottom: none;
  }

  .trust-cred-icon {
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(22, 119, 255, .14);
      border: 1px solid rgba(22, 119, 255, .18);
  }

  .trust-cred-text {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
  }

  .trust-cred-text strong {
      color: #edf4ff;
  }

  .final-title {
      font-family: var(--font-head);
      font-size: clamp(58px, 7vw, 110px);
      line-height: .9;
      letter-spacing: -.025em;
      text-transform: uppercase;
      margin-bottom: 18px;
  }

  .final-title span {
      color: #2f8fff;
  }

  .final-sub {
      max-width: 700px;
      margin: 0 auto 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.72;
  }

  .final-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 20px;
  }

  .final-note {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
      color: var(--muted);
      font-size: 14px;
  }

  footer {
      border-top: 1px solid rgba(35, 54, 84, .62);
      padding-top: 34px;
      padding-bottom: 40px;
  }

  .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      flex-wrap: wrap;
  }

  .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #dce9ff;
      font-weight: 700;
  }

  .footer-brand img {
      height: 32px;
      width: auto;
  }

  .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
  }

  .footer-link {
      color: #8ca0c2;
      font-size: 14px;
  }

  .footer-link:hover {
      color: #f5f9ff;
  }

  .footer-copy {
      color: #7083a3;
      font-size: 13px;
  }

  .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .55s ease, transform .55s ease;
  }

  .reveal.visible {
      opacity: 1;
      transform: translateY(0);
  }

  @media (max-width: 1080px) {

      .hero-inner,
      .solution-inner,
      .trust-inner {
          grid-template-columns: 1fr;
      }

      .solution-left {
          position: static;
      }

      .mock-dashboard {
          grid-template-columns: 150px minmax(0, 1fr);
      }
  }

  @media (max-width: 860px) {
      .nav-links .nav-link {
          display: none;
      }

      .hero {
          padding-top: 30px;
      }

      .pain-grid,
      .pricing-grid,
      .trust-stats {
          grid-template-columns: 1fr;
      }

      .mock-dashboard,
      .mock-mid,
      .mock-kpis,
      .box-grid {
          grid-template-columns: 1fr;
      }

      .mock-sidebar {
          display: none;
      }

      .hero-right {
          min-height: 460px;
      }

      .hero-animation-shell {
          width: 100%;
          min-height: 460px;
      }

      .hero-animation-frame {
          height: 620px;
          transform: translate(-50%, -50%) scale(.52);
      }

      .hero-title,
      .final-title {
          text-wrap: initial;
      }
  }

  @media (max-width: 640px) {
      .container {
          width: min(100% - 28px, 1120px);
      }

      .nav-inner {
          height: 70px;
      }

      .logo-wrap img {
          height: 32px;
      }

      .hero-right {
          min-height: 380px;
      }

      .hero-animation-shell {
          min-height: 380px;
      }

      .hero-animation-frame {
          height: 620px;
          transform: translate(-50%, -50%) scale(.42);
      }

      .hero-actions,
      .hero-trust,
      .final-actions,
      .final-note {
          align-items: stretch;
      }

      .btn-primary,
      .btn-secondary,
      .hero-actions a,
      .final-actions a,
      .plan-cta {
          width: 100%;
      }

      .plan-head {
          flex-direction: column;
          align-items: flex-start;
      }

      .mock-orden {
          flex-wrap: wrap;
      }

.hero {
    padding-bottom: 20px;
}

.hero-inner {
    gap: 0;
}

.hero-right {
    min-height: 420px;
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-brand-logo-only {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.hero-brand-logo-only img {
    width: min(320px, 88vw);
    height: auto;
    filter: drop-shadow(0 0 32px rgba(22, 119, 255, .32));
}

.hero-animation-shell {
    width: 100%;
    min-height: 300px;
    position: relative;
}

.hero-animation-frame {
    top: 46%;
    left: 50%;
    width: 1100px;
    height: 620px;
    transform: translate(-50%, -50%) scale(.36);
}

.hero-inner {
    display: flex;
    flex-direction: column;
}

.hero-left {
    order: 2;
}

.hero-right {
    order: 1;
    margin-top: 10px;
}
  }

/* LANDING_PRO_FINAL:BEGIN */

.modules,
.steps,
.download-section,
.payment-trust,
.faq {
    padding: 92px 0;
    position: relative;
}

.modules::before,
.steps::before,
.download-section::before,
.payment-trust::before,
.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 80%, transparent 100%);
    opacity: .22;
}

.modules-header,
.faq-header {
    text-align: center;
}

.modules-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.module-card,
.step-card,
.download-card,
.payment-card,
.faq-item {
    background: linear-gradient(180deg, rgba(12, 18, 31, .92) 0%, rgba(10, 16, 28, .92) 100%);
    border: 1px solid rgba(35, 54, 84, .9);
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.03);
}

.module-card {
    padding: 24px;
    min-height: 218px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.module-card:hover,
.step-card:hover,
.download-card:hover,
.payment-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(65, 109, 180, .88);
    box-shadow: 0 18px 42px rgba(0,0,0,.26), 0 0 0 1px rgba(22,119,255,.06);
}

.module-card span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 16px;
    font-size: 23px;
    background: rgba(22, 119, 255, .14);
    border: 1px solid rgba(22, 119, 255, .18);
}

.module-card h3,
.step-card h3 {
    font-family: var(--font-head);
    font-size: 28px;
    line-height: .95;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.module-card p,
.step-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.steps-inner {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
    gap: 32px;
    align-items: start;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    padding: 26px;
    min-height: 250px;
}

.step-num {
    color: #2f8fff;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .14em;
    margin-bottom: 40px;
}

.download-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: 28px;
    padding: 34px;
    border-color: rgba(67, 110, 183, .95);
    box-shadow: 0 20px 48px rgba(0,0,0,.26), 0 0 54px rgba(22,119,255,.12);
}

.download-copy h2,
.payment-card h2 {
    font-family: var(--font-head);
    font-size: clamp(42px, 5vw, 72px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.download-copy p,
.payment-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.download-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 24px;
}

.download-badges span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    color: #c7dbff;
    font-size: 12px;
    font-family: var(--font-mono);
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(22,119,255,.12);
    border: 1px solid rgba(22,119,255,.18);
}

.download-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.download-warning {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(242, 193, 78, .22);
    background: rgba(242, 193, 78, .08);
    color: #dbc893 !important;
    font-size: 14px !important;
}

.download-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 300px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 30%, rgba(22,119,255,.20), transparent 54%),
        linear-gradient(180deg, rgba(8,14,26,.98), rgba(7,12,22,.98));
    border: 1px solid rgba(45, 74, 120, .82);
    text-align: center;
}

.download-panel img {
    width: 92px;
    filter: drop-shadow(0 0 26px rgba(22,119,255,.32));
}

.download-panel strong {
    font-family: var(--font-head);
    font-size: 38px;
    text-transform: uppercase;
}

.download-panel span {
    color: var(--muted);
}

.download-panel small {
    margin-top: 10px;
    font-family: var(--font-mono);
    color: #c7dbff;
    background: rgba(22,119,255,.12);
    border: 1px solid rgba(22,119,255,.18);
    border-radius: 999px;
    padding: 8px 12px;
}

.payment-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: center;
    padding: 34px;
}

.mp-box {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.12);
    color: #123;
    text-align: center;
}

.mp-box img {
    max-width: 230px;
}

.mp-box span {
    color: #24405f;
    font-weight: 700;
}

.faq-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-item {
    padding: 20px 22px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    color: #f1f6ff;
    font-weight: 800;
    font-size: 17px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    color: #2f8fff;
    font-family: var(--font-mono);
}

.faq-item[open] summary::after {
    content: '–';
}

.faq-item p {
    color: var(--muted);
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 1080px) {
    .modules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-inner,
    .payment-card {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .modules,
    .steps,
    .download-section,
    .payment-trust,
    .faq {
        padding: 62px 0;
    }

    .modules-grid,
    .faq-grid,
    .download-card {
        grid-template-columns: 1fr;
    }

    .download-card,
    .payment-card {
        padding: 24px;
    }

    .download-actions .btn-primary,
    .download-actions .btn-secondary {
        width: 100%;
    }

    .download-panel {
        min-height: 230px;
    }

    .download-panel img {
        width: 74px;
    }

    .download-panel strong {
        font-size: 30px;
    }

    .mp-box {
        min-height: 150px;
    }

    .mp-box img {
        max-width: 210px;
    }

    .module-card,
    .step-card,
    .faq-item {
        padding: 22px;
    }

    .step-num {
        margin-bottom: 24px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(56px, 16vw, 78px);
    }

    .section-title,
    .solution-title,
    .download-copy h2,
    .payment-card h2 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .hero-sub,
    .section-sub,
    .solution-body,
    .download-copy p,
    .payment-card p,
    .final-sub {
        font-size: 16px;
        line-height: 1.65;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links .btn-primary {
        padding: 11px 14px;
        font-size: 13px;
        width: auto;
        white-space: nowrap;
    }

    .footer-brand img {
        max-width: 220px;
    }
}

/* LANDING_PRO_FINAL:END */

/* LANDING_PREMIUM_VALUE_PASS:BEGIN */

.business-control {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.business-control::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 20%, rgba(22, 119, 255, .12), transparent 32%),
        radial-gradient(circle at 90% 70%, rgba(22, 119, 255, .08), transparent 28%);
}

.business-top {
    text-align: center;
    position: relative;
    z-index: 1;
}

.business-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 50px;
}

.business-map {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    border: 1px solid rgba(35, 54, 84, .9);
    background:
        radial-gradient(circle at 50% 50%, rgba(22,119,255,.16), transparent 42%),
        linear-gradient(180deg, rgba(12, 18, 31, .92) 0%, rgba(10, 16, 28, .92) 100%);
    box-shadow: 0 18px 44px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.03);
    overflow: hidden;
}

.business-map::before {
    content: '';
    position: absolute;
    inset: 36px;
    border: 1px dashed rgba(86, 131, 204, .22);
    border-radius: 999px;
}

.business-map::after {
    content: '';
    position: absolute;
    inset: 90px;
    border: 1px dashed rgba(86, 131, 204, .14);
    border-radius: 999px;
}

.business-node {
    position: absolute;
    width: 190px;
    min-height: 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7, 13, 24, .92);
    border: 1px solid rgba(50, 80, 128, .88);
    box-shadow: 0 18px 38px rgba(0,0,0,.26), 0 0 34px rgba(22,119,255,.08);
}

.business-node span {
    color: #f0f6ff;
    font-family: var(--font-head);
    font-size: 28px;
    line-height: .95;
    text-transform: uppercase;
}

.business-node small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.main-node {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(22, 119, 255, .65);
    background: linear-gradient(180deg, rgba(18, 104, 236, .26), rgba(7, 13, 24, .95));
    text-align: center;
    z-index: 3;
}

.node-a {
    left: 34px;
    top: 44px;
}

.node-b {
    right: 34px;
    top: 70px;
}

.node-c {
    left: 52px;
    bottom: 66px;
}

.node-d {
    right: 46px;
    bottom: 44px;
}

.business-list {
    display: grid;
    gap: 14px;
}

.business-row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 18, 31, .92) 0%, rgba(10, 16, 28, .92) 100%);
    border: 1px solid rgba(35, 54, 84, .9);
    box-shadow: 0 16px 36px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.03);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.business-row:hover {
    transform: translateY(-4px);
    border-color: rgba(65, 109, 180, .88);
    box-shadow: 0 18px 42px rgba(0,0,0,.26), 0 0 0 1px rgba(22,119,255,.06);
}

.business-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #dce9ff;
    font-family: var(--font-mono);
    font-weight: 700;
    background: rgba(22, 119, 255, .14);
    border: 1px solid rgba(22, 119, 255, .18);
}

.business-row h3 {
    font-family: var(--font-head);
    font-size: 31px;
    line-height: .95;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.business-row p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

.modules-grid-premium .module-card {
    min-height: 242px;
}

.modules-grid-premium .module-card h3 {
    font-size: 25px;
}

@media (max-width: 1080px) {
    .business-layout {
        grid-template-columns: 1fr;
    }

    .business-map {
        min-height: 480px;
    }
}

@media (max-width: 760px) {
    .business-control {
        padding: 66px 0;
    }

    .business-layout {
        margin-top: 34px;
        gap: 18px;
    }

    .business-map {
        min-height: auto;
        display: grid;
        gap: 12px;
        padding: 18px;
    }

    .business-map::before,
    .business-map::after {
        display: none;
    }

    .business-node,
    .main-node,
    .node-a,
    .node-b,
    .node-c,
    .node-d {
        position: static;
        transform: none;
        width: 100%;
        min-height: auto;
        text-align: left;
    }

    .main-node {
        text-align: left;
    }

    .business-row {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .business-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .business-row h3 {
        font-size: 27px;
    }

    .modules-grid-premium .module-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .business-row h3 {
        font-size: 25px;
    }

    .business-node span {
        font-size: 25px;
    }

    .modules-grid-premium .module-card h3 {
        font-size: 24px;
    }

    .faq-grid {
        gap: 12px;
    }
}

/* LANDING_PREMIUM_VALUE_PASS:END */

/* WHATSAPP_MOBILE_CTA:BEGIN */

.btn-wa-icon,
.nav-whatsapp-mobile img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
}

.nav-whatsapp-mobile {
    display: none;
}

@media (max-width: 860px) {
    .nav-inner {
        gap: 12px;
    }

    .nav-links {
        gap: 8px;
        margin-left: auto;
        align-items: center;
    }

    .nav-download-cta,
    .nav-whatsapp-mobile {
        height: 42px;
        min-height: 42px;
        border-radius: 14px;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .01em;
        white-space: nowrap;
    }

    .nav-download-cta {
        padding: 0 14px;
        box-shadow:
            0 12px 24px rgba(18, 104, 236, .24),
            inset 0 1px 0 rgba(255,255,255,.16);
    }

    .nav-whatsapp-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 13px;
        color: #eaf7ef;
        background:
            linear-gradient(180deg, rgba(14, 23, 39, .92) 0%, rgba(9, 16, 29, .92) 100%);
        border: 1px solid rgba(45, 74, 120, .82);
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.05),
            0 12px 24px rgba(0,0,0,.20),
            0 0 0 1px rgba(37, 211, 102, .05);
    }

    .nav-whatsapp-mobile img {
        width: 17px;
        height: 17px;
        filter: drop-shadow(0 0 8px rgba(37, 211, 102, .18));
    }

    .nav-whatsapp-mobile::after {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: #25d366;
        box-shadow: 0 0 10px rgba(37, 211, 102, .45);
        margin-left: 1px;
    }

    .nav-whatsapp-mobile:hover {
        transform: translateY(-2px);
        color: #ffffff;
        border-color: rgba(70, 112, 182, .88);
        background:
            linear-gradient(180deg, rgba(16, 27, 47, .96) 0%, rgba(10, 18, 32, .96) 100%);
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.06),
            0 14px 28px rgba(0,0,0,.24),
            0 0 22px rgba(37, 211, 102, .08);
    }
}

@media (max-width: 520px) {
    .logo-wrap img {
        height: 30px;
    }

    .nav-links {
        gap: 7px;
    }

    .nav-download-cta,
    .nav-whatsapp-mobile {
        height: 40px;
        min-height: 40px;
        border-radius: 13px;
        font-size: 11px;
    }

    .nav-download-cta {
        padding: 0 11px;
    }

    .nav-whatsapp-mobile {
        padding: 0 11px;
        gap: 7px;
    }

    .nav-whatsapp-mobile img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 410px) {
    .nav-download-cta {
        display: none;
    }

    .nav-whatsapp-mobile {
        display: inline-flex;
        padding: 0 13px;
    }
}

@media (max-width: 350px) {
    .nav-whatsapp-mobile {
        width: 42px;
        padding: 0;
        font-size: 0;
        gap: 0;
    }

    .nav-whatsapp-mobile::after {
        display: none;
    }

    .nav-whatsapp-mobile img {
        width: 18px;
        height: 18px;
    }
}

/* WHATSAPP_MOBILE_CTA:END */


