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

  :root {
    --bg-base:     #04060f;
    --bg-surface:  #080c1a;
    --bg-card:     #0b1022;
    --blue:        #2563eb;
    --blue-light:  #3b82f6;
    --violet:      #7c3aed;
    --violet-light:#9d5cf6;
    --cyan:        #06b6d4;
    --cyan-light:  #22d3ee;
    --text-1:      #f0f4ff;
    --text-2:      #94a3b8;
    --text-3:      #475569;
    --border:      rgba(99,120,200,0.15);
    --glow-blue:   rgba(37,99,235,0.35);
    --glow-violet: rgba(124,58,237,0.3);
    --glow-cyan:   rgba(6,182,212,0.25);
    --radius:      16px;
    --radius-lg:   24px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-base);
    color: var(--text-1);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── SCROLLBAR ─────────────────────────────────────────── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg-base); }
  ::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 99px; }

  /* ── UTILITIES ─────────────────────────────────────────── */
  .container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .grad-text {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--violet-light) 50%, var(--cyan-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan-light);
    background: rgba(6,182,212,0.08);
    border: 1px solid rgba(6,182,212,0.2);
    padding: 5px 14px;
    border-radius: 99px;
  }

  .tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  h1, h2, h3 { font-family: 'Syne', sans-serif; line-height: 1.15; }

  /* ── REVEAL ANIMATION ──────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── NAV ───────────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(4,6,15,0.7);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }

  .nav-inner {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--text-1);
    text-decoration: none;
    letter-spacing: -0.02em;
  }

  .nav-logo span { color: var(--blue-light); }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text-1); }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
    background: var(--blue);
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .nav-cta:hover {
    background: var(--blue-light);
    box-shadow: 0 0 20px var(--glow-blue);
  }

  .nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .nav-mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-2);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── HERO ─────────────────────────────────────────────── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 24px 80px;
  }

  #hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }

  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
  }

  .orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.22) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation-delay: 0s;
  }

  .orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
    bottom: -50px; right: 10%;
    animation-delay: -3s;
  }

  .orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
    top: 30%; right: 25%;
    animation-delay: -6s;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-15px, 15px); }
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
    z-index: 1;
  }

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

  .hero-left { }

  .hero-tag { margin-bottom: 28px; }

  .hero-title {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 16px;
    font-family: 'Syne', sans-serif;
  }

  .hero-body {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 24px var(--glow-blue);
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-light), var(--violet-light));
    opacity: 0;
    transition: opacity 0.3s;
  }

  .btn-primary:hover::before { opacity: 1; }
  .btn-primary:hover { box-shadow: 0 8px 32px var(--glow-violet); transform: translateY(-2px); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-1);
    background: transparent;
    border: 1px solid var(--border);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-secondary:hover {
    border-color: rgba(124,58,237,0.5);
    background: rgba(124,58,237,0.07);
    box-shadow: 0 4px 20px var(--glow-violet);
    transform: translateY(-2px);
  }

  /* Hero visual right */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-dashboard {
    width: 100%;
    max-width: 480px;
    background: rgba(8,12,26,0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(20px);
    box-shadow:
      0 0 0 1px rgba(37,99,235,0.1),
      0 40px 80px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,255,255,0.05);
    animation: dashboard-float 6s ease-in-out infinite;
  }

  @keyframes dashboard-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .dash-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .dash-dots { display: flex; gap: 6px; }
  .dash-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }
  .dash-dot:nth-child(1) { background: #ff5f57; }
  .dash-dot:nth-child(2) { background: #febc2e; }
  .dash-dot:nth-child(3) { background: #28c840; }

  .dash-title {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.08em;
    margin-left: 4px;
  }

  .dash-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .dash-stat {
    background: rgba(37,99,235,0.06);
    border: 1px solid rgba(37,99,235,0.12);
    border-radius: 10px;
    padding: 14px;
  }

  .dash-stat-label {
    font-size: 10px;
    color: var(--text-3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .dash-stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }

  .dash-stat-sub {
    font-size: 10px;
    color: #22c55e;
    margin-top: 4px;
  }

  .dash-chart {
    background: rgba(6,182,212,0.04);
    border: 1px solid rgba(6,182,212,0.1);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
  }

  .dash-chart-label {
    font-size: 10px;
    color: var(--text-3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 48px;
  }

  .dash-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, var(--blue), var(--violet));
    opacity: 0.7;
    animation: bar-grow 1s ease forwards;
    transform-origin: bottom;
    transform: scaleY(0);
  }

  @keyframes bar-grow {
    to { transform: scaleY(1); }
  }

  .dash-bar:nth-child(1) { height: 30%; animation-delay: 0.2s; }
  .dash-bar:nth-child(2) { height: 55%; animation-delay: 0.3s; }
  .dash-bar:nth-child(3) { height: 40%; animation-delay: 0.4s; }
  .dash-bar:nth-child(4) { height: 75%; animation-delay: 0.5s; }
  .dash-bar:nth-child(5) { height: 60%; animation-delay: 0.6s; }
  .dash-bar:nth-child(6) { height: 85%; animation-delay: 0.7s; }
  .dash-bar:nth-child(7) { height: 70%; animation-delay: 0.8s; }

  .dash-activity {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .dash-activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-2);
  }

  .dash-activity-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .dot-blue { background: var(--blue); box-shadow: 0 0 6px var(--blue); }
  .dot-violet { background: var(--violet); box-shadow: 0 0 6px var(--violet); }
  .dot-cyan { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }

  /* ── SECTION COMMON ────────────────────────────────────── */
  section { padding: 100px 0; }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header .tag { margin-bottom: 20px; }

  .section-title {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }

  .section-body {
    font-size: 17px;
    color: var(--text-2);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ── QUÉ HACEMOS ───────────────────────────────────────── */
  #que-hacemos {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

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

  .what-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  }

  .what-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .what-card:hover {
    border-color: rgba(124,58,237,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px var(--glow-violet);
    transform: translateY(-4px);
  }

  .what-card:hover::before { transform: scaleX(1); }

  .what-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
  }

  .icon-blue { background: rgba(37,99,235,0.12); color: var(--blue-light); }
  .icon-violet { background: rgba(124,58,237,0.12); color: var(--violet-light); }
  .icon-cyan { background: rgba(6,182,212,0.12); color: var(--cyan-light); }

  .what-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 10px;
  }

  .what-body {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
  }

  /* ── PRODUCTOS ─────────────────────────────────────────── */
  #productos { background: var(--bg-base); }

  .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .product-card-1::after {
    background: radial-gradient(ellipse at top left, rgba(37,99,235,0.07) 0%, transparent 60%);
  }

  .product-card-2::after {
    background: radial-gradient(ellipse at top right, rgba(124,58,237,0.07) 0%, transparent 60%);
  }

  .product-card:hover::after { opacity: 1; }

  .product-card:hover {
    border-color: rgba(99,120,200,0.35);
    box-shadow:
      0 40px 80px rgba(0,0,0,0.4),
      0 0 40px rgba(37,99,235,0.12),
      inset 0 1px 0 rgba(255,255,255,0.05);
    transform: translateY(-6px);
  }

  .product-card-2:hover {
    box-shadow:
      0 40px 80px rgba(0,0,0,0.4),
      0 0 40px rgba(124,58,237,0.12),
      inset 0 1px 0 rgba(255,255,255,0.05);
  }

  .product-badge {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
  }

  .badge-blue {
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.25);
    color: var(--blue-light);
  }

  .badge-violet {
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.25);
    color: var(--violet-light);
  }

  .product-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }

  .product-icon-1 {
    background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(6,182,212,0.1));
    border: 1px solid rgba(37,99,235,0.2);
    box-shadow: 0 0 20px rgba(37,99,235,0.15);
  }

  .product-icon-2 {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(37,99,235,0.1));
    border: 1px solid rgba(124,58,237,0.2);
    box-shadow: 0 0 20px rgba(124,58,237,0.15);
  }

  .product-name {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
  }

  .product-body {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }

  .product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
  }

  .product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-2);
  }

  .feature-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
  }

  .check-blue { background: rgba(37,99,235,0.15); color: var(--blue-light); }
  .check-violet { background: rgba(124,58,237,0.15); color: var(--violet-light); }

  .product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
  }

  .cta-blue {
    background: linear-gradient(135deg, var(--blue), #1d4ed8);
    box-shadow: 0 4px 20px rgba(37,99,235,0.3);
  }
  .cta-blue:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.5);
    transform: translateY(-2px);
  }

  .cta-violet {
    background: linear-gradient(135deg, var(--violet), #6d28d9);
    box-shadow: 0 4px 20px rgba(124,58,237,0.3);
  }
  .cta-violet:hover {
    box-shadow: 0 8px 32px rgba(124,58,237,0.5);
    transform: translateY(-2px);
  }

  /* ── BENEFICIOS ────────────────────────────────────────── */
  #beneficios {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

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

  .benefit-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s;
  }

  .benefit-item:hover {
    border-color: rgba(37,99,235,0.3);
    background: rgba(37,99,235,0.04);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }

  .benefit-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
  }

  .benefit-text h4 {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 5px;
  }

  .benefit-text p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.55;
  }

  /* ── PRECIOS ───────────────────────────────────────────── */
  #precios { background: var(--bg-base); }

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

  .pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: all 0.35s;
    overflow: hidden;
  }

  .pricing-card.featured {
    border-color: rgba(124,58,237,0.35);
    background: linear-gradient(145deg, rgba(124,58,237,0.06) 0%, var(--bg-card) 100%);
  }

  .pricing-card.featured::before {
    content: 'Más Popular';
    position: absolute;
    top: 16px; right: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--violet-light);
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    padding: 3px 10px;
    border-radius: 99px;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  }

  .pricing-card.featured:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 40px var(--glow-violet);
  }

  .pricing-product {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .pricing-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 20px;
  }

  .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
  }

  .price-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-2);
  }

  .price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .price-period {
    font-size: 14px;
    color: var(--text-3);
  }

  .price-desc {
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 28px;
    margin-top: 4px;
  }

  .pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
  }

  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-2);
  }

  .pricing-features li::before {
    content: '';
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.3);
    flex-shrink: 0;
    position: relative;
  }

  .pricing-features li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='7' fill='rgba(37,99,235,0.12)'/%3E%3Cpath d='M3.5 7l2.5 2.5 4-5' stroke='%233b82f6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/cover no-repeat;
  }

  .pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-3);
    font-style: italic;
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }

  /* ── CTA FINAL ─────────────────────────────────────────── */
  #cta-final {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  #cta-final::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 65%);
    pointer-events: none;
  }

  .cta-final-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }

  .cta-final-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    line-height: 1.1;
  }

  .cta-final-body {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 40px;
  }

  .cta-final-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── FOOTER ────────────────────────────────────────────── */
  footer {
    background: var(--bg-base);
    border-top: 1px solid var(--border);
    padding: 40px 24px;
  }

  .footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-brand {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1);
  }

  .footer-brand span { color: var(--blue-light); }

  .footer-sub {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 4px;
  }

  .footer-right {
    font-size: 13px;
    color: var(--text-3);
    text-align: right;
  }

  /* ── SVG ICONS ─────────────────────────────────────────── */
  .icon-svg {
    width: 24px; height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ── RESPONSIVE ────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { justify-content: flex-start; }
    .hero-dashboard { max-width: 100%; }
    .what-grid { grid-template-columns: 1fr; gap: 16px; }
    .products-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  }

  @media (max-width: 768px) {
    nav { height: 60px; }
    .nav-links, .nav-cta { display: none; }
    .nav-mobile-toggle { display: flex; }
    section { padding: 72px 0; }
    .hero-dashboard { display: none; }
    .what-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { padding: 32px 24px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-right { text-align: center; }
  }

  /* ── MOBILE MENU ────────────────────────────────────────── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(4,6,15,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    z-index: 99;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-2);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }

  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--text-1); }
