:root {
  --blue: #00AEEF;
  --green: #8DC63F;
  --dark: #ffffff;
  --dark2: #f0f8ff;
  --dark3: #e0f2fe;
  --text: #1a2e3b;
  --text-muted: #4a6b7c;
  --border: rgba(0,174,239,0.2);
}
 
/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
 
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
 
/* ============================================
   NAVEGACIÓN + RESPONSIVO
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
}
 
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px;
  color: var(--text); text-decoration: none;
  z-index: 101;
}
 
.logo-mark { width: 32px; height: 32px; }
.logo-mark svg { width: 100%; height: 100%; }
 
/* Links del menú desktop */
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
 
/* Botones del nav */
.nav-cta { display: flex; gap: 12px; align-items: center; }
 
/* Botón hamburguesa — oculto en desktop */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 101;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s ease;
}
 
/* Animación hamburguesa → X */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
@media (min-width: 901px) and (max-width: 1100px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .btn-ghost { padding: 8px 12px; font-size: 13px; }
  .btn-primary { padding: 8px 14px; font-size: 13px; }
  .nav-logo { font-size: 17px; }
}
/* ============================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
 
  /* Ocultar links y CTA, mostrar hamburguesa */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
 
  /* Menú móvil desplegable */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13,17,23,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--border);
    padding: 16px 0 24px;
    animation: slideDown 0.25s ease;
  }
 
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .nav-links.mobile-open li { width: 100%; }
  .nav-links.mobile-open a {
    display: block; padding: 14px 28px;
    font-size: 16px; color: var(--text-muted);
    border-bottom: 0.5px solid var(--border);
  }
  .nav-links.mobile-open a:hover { color: var(--blue); background: rgba(129,184,234,0.04); }
 
  /* Botones CTA dentro del menú móvil */
  .nav-links.mobile-open .mobile-cta {
    display: flex; flex-direction: column; gap: 10px;
    padding: 20px 28px 0;
    width: 100%;
  }
  .nav-links.mobile-open .mobile-cta a {
    text-align: center; border-radius: 8px;
    font-size: 14px; font-weight: 600;
    padding: 12px 20px; border-bottom: none;
  }
  .nav-links.mobile-open .mobile-cta .btn-ghost {
    border: 0.5px solid var(--border); color: var(--text);
    background: transparent;
  }
  .nav-links.mobile-open .mobile-cta .btn-primary {
    background: var(--green); color: #1a2e08;
  }
}
 
/* ============================================
   RESPONSIVE — Móvil (≤ 600px)
   ============================================ */
@media (max-width: 600px) {
  /* Hero */
  .hero { padding: 100px 24px 60px; }
  h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-hero, .btn-hero-ghost { width: 100%; justify-content: center; }
  .stats-strip { gap: 24px; }
  .stat-val { font-size: 26px; }
 
  /* About */
  .about-section { padding: 60px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
 
  /* Services */
  .services-section { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
 
  /* Showcase */
  .showcase-section { padding: 60px 24px; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .mock-cards-row { grid-template-columns: 1fr; }
 
  /* Sectors */
  .sectors-strip { padding: 32px 24px; }
 
  /* Pricing */
  .pricing-section { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
 
  /* CTA */
  .cta-section { padding: 60px 24px; }
  .cta-contact { flex-direction: column; gap: 16px; }
  .cta-btns { flex-direction: column; }
  .cta-btns a { width: 100%; justify-content: center; }
 
  /* Footer */
  footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
 
/* ============================================
   RESPONSIVE — Tablet media (601–900px)
   ============================================ */
@media (min-width: 601px) and (max-width: 900px) {
  .hero { padding: 110px 36px 70px; }
  .about-section { padding: 70px 36px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-section { padding: 70px 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .showcase-section { padding: 70px 36px; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .pricing-section { padding: 70px 36px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 48px 36px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
 
/* ============================================
   BOTONES GLOBALES
   ============================================ */
.btn-ghost {
  padding: 9px 20px; border-radius: 8px;
  border: 0.5px solid var(--border);
  background: transparent; color: var(--text);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(129,184,234,0.08); border-color: var(--blue); }
 
.btn-primary {
  padding: 9px 22px; border-radius: 8px;
  background: var(--green); color: #1a2e08;
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.btn-primary:hover { background: #afd07a; transform: translateY(-1px); }
 
.btn-hero {
  padding: 14px 32px; border-radius: 10px;
  background: var(--green); color: #1a2e08;
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.25s; font-family: 'DM Sans', sans-serif;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero:hover { background: #afd07a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(151,191,94,0.3); }
 
.btn-hero-ghost {
  padding: 14px 28px; border-radius: 10px;
  border: 0.5px solid var(--border);
  background: rgba(255,255,255,0.03); color: var(--text);
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: all 0.25s; font-family: 'DM Sans', sans-serif;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-ghost:hover { background: rgba(129,184,234,0.08); border-color: rgba(129,184,234,0.4); }
 
/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}
 
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
 
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18; }
.orb-1 { width: 600px; height: 600px; background: var(--blue); top: -100px; right: -100px; animation: drift1 12s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: var(--green); bottom: 0; left: -80px; animation: drift2 14s ease-in-out infinite; }
.orb-3 { width: 300px; height: 300px; background: var(--blue); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.08; animation: drift1 10s ease-in-out infinite reverse; }
 
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,30px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-20px)} }
 
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(129,184,234,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(129,184,234,0.04) 1px,transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
 
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  border: 0.5px solid rgba(151,191,94,0.4);
  background: rgba(151,191,94,0.08);
  font-size: 12px; font-weight: 500; color: var(--green);
  margin-bottom: 28px; position: relative; z-index: 1;
  animation: fadeUp 0.6s ease both;
}
 
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
 
h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05; letter-spacing: -0.02em;
  max-width: 860px; position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 .accent-blue { color: var(--blue); }
h1 .accent-green { color: var(--green); }
 
.hero-sub {
  font-size: 19px; color: var(--text-muted);
  max-width: 580px; margin: 24px auto 0; line-height: 1.65;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.2s ease both;
}
 
.hero-actions {
  display: flex; gap: 14px; align-items: center;
  justify-content: center; margin-top: 40px;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.3s ease both;
}
 
.stats-strip {
  display: flex; gap: 48px; align-items: center;
  justify-content: center; margin-top: 64px;
  padding-top: 40px; border-top: 0.5px solid var(--border);
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.4s ease both; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 34px; font-weight: 700; color: var(--text); }
.stat-val span { color: var(--blue); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
 
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
 
/* ============================================
   SHARED
   ============================================ */
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--green); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px, 4vw, 46px);
  font-weight: 700; line-height: 1.15;
}
.section-sub { color: var(--text-muted); font-size: 17px; max-width: 540px; margin: 0 auto; }
 
/* ============================================
   ABOUT
   ============================================ */
.about-section {
  padding: 100px 48px;
  background: var(--dark2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px;
}
.about-text p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
 
.about-cards { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: var(--dark); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 22px 26px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.2s;
}
.about-card:hover { border-color: rgba(129,184,234,0.35); }
.about-card-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.about-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.about-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.si-blue { background: rgba(129,184,234,0.12); }
.si-green { background: rgba(151,191,94,0.12); }
 
/* ============================================
   SERVICES
   ============================================ */
.services-section { padding: 100px 48px; max-width: 1100px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-title { max-width: 600px; margin: 0 auto 16px; }
 
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
 
.service-card {
  background: var(--dark2); border: 0.5px solid var(--border);
  border-radius: 16px; padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(129,184,234,0.35); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0; transition: opacity 0.25s;
}
.service-card:hover::before { opacity: 1; }
 
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 700;
  margin-bottom: 12px;
}
.service-card > p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
 
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-muted); }
.sf-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
 
.service-price {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(151,191,94,0.1); border: 0.5px solid rgba(151,191,94,0.25);
  font-size: 13px; font-weight: 600; color: var(--green);
}
.service-price-blue {
  background: rgba(129,184,234,0.1); border-color: rgba(129,184,234,0.25); color: var(--blue);
}
 
/* ============================================
   BI SHOWCASE
   ============================================ */
.showcase-section {
  padding: 100px 48px;
  background: var(--dark2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.showcase-inner { max-width: 1100px; margin: 0 auto; }
.showcase-header { text-align: center; margin-bottom: 56px; }
.showcase-header .section-title { margin: 0 auto 16px; max-width: 640px; }
 
.dash-tabs {
  display: flex; gap: 8px; margin-bottom: 28px;
  flex-wrap: wrap; justify-content: center;
}
.dash-tab {
  padding: 8px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  background: var(--dark); border: 0.5px solid var(--border);
  color: var(--text-muted); transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.dash-tab.active { background: rgba(129,184,234,0.12); border-color: var(--blue); color: var(--blue); }
.dash-tab:hover:not(.active) { border-color: rgba(129,184,234,0.3); color: var(--text); }
 
.dash-panel { display: none; }
.dash-panel.active { display: block; }
 
.mock-dashboard {
  background: var(--dark3); border: 0.5px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.mock-topbar {
  height: 40px; background: rgba(255,255,255,0.03);
  display: flex; align-items: center; padding: 0 16px; gap: 8px;
  border-bottom: 0.5px solid var(--border);
}
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #ffbd2e; } .dot-g { background: #28c840; }
 
.mock-body { display: grid; grid-template-columns: 180px 1fr; min-height: 360px; }
.mock-sidebar {
  background: rgba(255,255,255,0.02); border-right: 0.5px solid var(--border);
  padding: 16px 12px; display: flex; flex-direction: column; gap: 3px;
}
.mock-nav-item {
  padding: 8px 11px; border-radius: 7px; font-size: 12px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.mock-nav-item.active { background: rgba(129,184,234,0.12); color: var(--blue); }
.mock-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.6; flex-shrink: 0; }
 
.mock-content { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.mock-cards-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mock-kpi {
  background: rgba(255,255,255,0.04); border: 0.5px solid var(--border);
  border-radius: 8px; padding: 14px;
}
.mock-kpi-label { font-size: 10px; color: var(--text-muted); margin-bottom: 4px; }
.mock-kpi-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 700; }
.mock-kpi-val.blue { color: var(--blue); } .mock-kpi-val.green { color: var(--green); }
.mock-kpi-delta { font-size: 10px; color: var(--green); margin-top: 3px; }
 
.mock-chart-box {
  background: rgba(255,255,255,0.04); border: 0.5px solid var(--border);
  border-radius: 8px; padding: 14px; flex: 1;
}
.mock-chart-title { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; }
.mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.mock-bar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(129,184,234,0.2); }
.mock-bar.hi { background: var(--blue); } .mock-bar.gn { background: var(--green); }
 
/* ============================================
   SECTORS
   ============================================ */
.sectors-strip {
  padding: 48px; text-align: center;
  background: var(--dark2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.sectors-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.sectors-row { 
  display: flex; gap: 14px; justify-content: center; 
  flex-wrap: wrap; max-width: 75%; margin: 0 auto; 
}
.sector-tag {
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  background: var(--dark); border: 0.5px solid var(--border);
}
 
/* ============================================
   CLIENTS — CARRUSEL
   ============================================ */
.clients-section { padding: 100px 0; text-align: center; }
.clients-header {
  margin-bottom: 56px; max-width: 1100px;
  margin-left: auto; margin-right: auto; padding: 0 48px 56px;
}
.clients-header .section-title { max-width: 560px; margin: 0 auto 16px; }
 
.marquee-track {
  width: 100%; overflow: hidden;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--dark2);
  padding: 20px 0;
  position: relative;
}
.marquee-track::before,
.marquee-track::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee-track::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.marquee-track::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
 
.marquee-inner {
  display: flex; gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover .marquee-inner { animation-play-state: paused; }
 
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
 
.client-chip {
  background: var(--dark3); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 16px 24px;
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap; flex-shrink: 0;
  transition: border-color 0.2s;
}
.client-chip:hover { border-color: rgba(129,184,234,0.4); }
.client-chip-icon { font-size: 22px; line-height: 1; }
.client-chip-name { font-size: 14px; font-weight: 500; color: var(--text-muted); }
 
/* ============================================
   PRICING
   ============================================ */
.pricing-section { padding: 100px 48px; background: var(--dark2); border-top: 0.5px solid var(--border); }
.pricing-inner { max-width: 1060px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-title { max-width: 560px; margin: 0 auto 16px; }
 
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
 
.price-card {
  background: var(--dark); border: 0.5px solid var(--border);
  border-radius: 16px; padding: 30px 24px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(129,184,234,0.3); }
.price-card.featured { border-color: rgba(129,184,234,0.5); background: var(--dark3); position: relative; }
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--dark);
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 14px; border-radius: 100px; text-transform: uppercase; white-space: nowrap;
}
 
.plan-name { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.plan-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.plan-price-note { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.plan-divider { height: 0.5px; background: var(--border); margin-bottom: 20px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.plan-features li { font-size: 13px; color: var(--text-muted); display: flex; gap: 7px; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.plan-btn {
  margin-top: 24px; padding: 11px; border-radius: 9px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  text-align: center; border: 0.5px solid var(--border);
  background: transparent; color: var(--text); text-decoration: none; display: block;
}
.plan-btn:hover { border-color: var(--blue); color: var(--blue); }
.plan-btn.green-btn { background: var(--green); color: #1a2e08; border-color: var(--green); }
.plan-btn.green-btn:hover { background: #afd07a; }
 
/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 100px 48px; text-align: center;
  position: relative; overflow: hidden;
  border-top: 0.5px solid var(--border);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 500px at 50% 100%, rgba(129,184,234,0.07), transparent);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(32px, 5vw, 60px);
  font-weight: 800; max-width: 700px; margin: 0 auto 20px; line-height: 1.1;
  position: relative; z-index: 1;
}
.cta-section p { color: var(--text-muted); font-size: 18px; max-width: 500px; margin: 0 auto 24px; position: relative; z-index: 1; }
.cta-contact {
  display: flex; gap: 32px; justify-content: center; align-items: center;
  margin-bottom: 40px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-contact-item { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--blue); font-weight: 500; }
.cta-btns { display: flex; gap: 14px; justify-content: center; position: relative; z-index: 1; }
 
/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--dark2); border-top: 0.5px solid var(--border); padding: 56px 48px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--blue); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0; padding-top: 24px;
  border-top: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 12px;
}
 
/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark3); border-radius: 3px; }