/* ── TOKENS ── */
:root {
  --navy: #0d1b35;
  --navy2: #162040;
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --blue-pale: #eff6ff;
  --white: #ffffff;
  --off: #f8fafc;
  --border: #e2e8f0;
  --text: #1e293b;
  --muted: #64748b;
  --green: #16a34a;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }
.section-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 10px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text); line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 560px; line-height: 1.75; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer; border: none; transition: all 0.18s; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.35); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue-pale); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #0a1326; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center;
  padding: 0 28px;
  background: rgba(13,27,53,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(13,27,53,0.98); }
.nav-logo { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.nav-logo span { color: var(--blue-light); }
.nav-links { display: flex; gap: 28px; margin-left: 40px; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.erp-link { color: var(--blue-light); font-weight: 700; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav-contact { font-size: 13px; color: rgba(255,255,255,0.6); }
.nav-cta { padding: 9px 22px; font-size: 13px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a3060 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(96,165,250,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-slide {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 80px 80px;
  gap: 60px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none; cursor: pointer;
  padding: 0; transition: all 0.25s;
}
.hero-dot:hover { background: rgba(255,255,255,0.5); }
.hero-dot.active { background: var(--blue-light); width: 24px; border-radius: 4px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.25);
  color: var(--blue-light);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 20px; margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero-h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: #fff; line-height: 1.08; margin-bottom: 20px; letter-spacing: -1px; }
.hero-h1 em { font-style: normal; color: var(--blue-light); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 36px; max-width: 420px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-checks { display: flex; flex-direction: column; gap: 10px; }
.hero-check { display: flex; gap: 10px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-check-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(22,163,74,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-check-icon svg { width: 11px; height: 11px; stroke: #4ade80; stroke-width: 2.5; fill: none; }

/* ERP Mockup */
.hero-visual { position: relative; }
.erp-mockup {
  background: #0d1b35;
  border: 1.5px solid rgba(96,165,250,0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.erp-topbar {
  height: 40px; background: #162040;
  display: flex; align-items: center; padding: 0 16px; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.erp-dot { width: 9px; height: 9px; border-radius: 50%; }
.erp-topbar-title { font-size: 11px; color: var(--blue-light); margin-left: 8px; font-weight: 600; }
.erp-topbar-tag { margin-left: auto; font-size: 9px; color: #4ade80; background: rgba(74,222,128,0.1); padding: 3px 8px; border-radius: 10px; }
.erp-layout { display: grid; grid-template-columns: 44px 1fr; }
.erp-sidebar { background: #0a1326; padding: 16px 0; display: flex; flex-direction: column; gap: 4px; align-items: center; }
.erp-sicon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; }
.erp-sicon.active { background: rgba(37,99,235,0.3); }
.erp-sicon svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.35); stroke-width: 1.5; fill: none; }
.erp-sicon.active svg { stroke: var(--blue-light); }
.erp-body { padding: 14px; }
.erp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.erp-stat { background: #162040; border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 10px 12px; }
.erp-stat-num { font-size: 20px; font-weight: 800; color: var(--blue-light); line-height: 1; }
.erp-stat-lbl { font-size: 8px; color: rgba(255,255,255,0.35); margin-top: 3px; }
.erp-chart { background: #162040; border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 10px; margin-bottom: 10px; }
.erp-chart-title { font-size: 9px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.erp-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.erp-bar { flex: 1; border-radius: 3px 3px 0 0; background: var(--blue); opacity: 0.5; transition: opacity 0.3s; }
.erp-bar.hi { opacity: 1; }
.erp-bar.med { opacity: 0.75; }
.erp-rows { display: flex; flex-direction: column; gap: 5px; }
.erp-row { background: #162040; border-radius: 6px; padding: 7px 10px; display: flex; align-items: center; gap: 8px; }
.erp-row-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.erp-row-text { font-size: 8px; color: rgba(255,255,255,0.5); flex: 1; }
.erp-row-num { font-size: 9px; color: var(--blue-light); font-weight: 700; }
.erp-float-badge {
  position: absolute; top: -16px; right: -16px;
  background: #fff; border-radius: 10px; padding: 10px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--text);
}
.erp-float-badge .badge-icon { font-size: 18px; }
.signage-float-badge {
  position: absolute; top: -16px; right: -16px;
  background: #fff; border-radius: 10px; padding: 10px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--text);
  z-index: 2;
}
.signage-float-badge .badge-icon { font-size: 18px; }
.signage-mockup { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.signage-screen { background: #0d1b35; border: 1px solid rgba(96,165,250,0.15); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.signage-screen-top { display: flex; align-items: center; gap: 6px; padding: 8px 10px; font-size: 9px; color: rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.06); }
.signage-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.signage-screen-content { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; padding: 12px; position: relative; }
.signage-content-label { font-size: 11px; font-weight: 700; color: #fff; background: rgba(0,0,0,0.35); padding: 4px 10px; border-radius: 6px; }
.sc-1 { background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%); }
.sc-2 { background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%); }
.sc-3 { background: linear-gradient(135deg, #16a34a 0%, #0d9488 100%); }
.sc-4 { background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); }
.sc-promo { text-align: center; }
.sc-promo-pct { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.sc-promo-txt { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.9); margin-top: 4px; }
.sc-welcome { text-align: center; }
.sc-welcome-logo { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; margin: 0 auto 8px; }
.sc-welcome-txt { font-size: 12px; font-weight: 700; color: #fff; }
.sc-menu { width: 100%; display: flex; flex-direction: column; gap: 5px; }
.sc-menu-row { display: flex; justify-content: space-between; gap: 8px; font-size: 8px; color: #fff; background: rgba(255,255,255,0.14); padding: 5px 8px; border-radius: 4px; }
.sc-menu-row span:last-child { font-weight: 800; flex-shrink: 0; }
.sc-weather { text-align: center; }
.sc-weather svg { width: 22px; height: 22px; stroke: #fff; stroke-width: 1.5; fill: none; margin-bottom: 2px; }
.sc-weather-temp { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.sc-weather-txt { font-size: 9px; color: rgba(255,255,255,0.8); margin-top: 3px; }

/* ── TRUST STRIP ── */
.trust { background: #f0f7ff; border-top: 1px solid #dbeafe; border-bottom: 1px solid #dbeafe; padding: 28px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 12px 40px; border-right: 1px solid #bfdbfe; }
.trust-item:last-child { border-right: none; }
.trust-num { font-size: 32px; font-weight: 800; color: var(--blue); line-height: 1; }
.trust-lbl { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ── ABOUT ── */
.about-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.about-3col { display: grid; grid-template-columns: 1fr 1.1fr 1.1fr; gap: 48px; align-items: start; }
.about-3col-title { font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.about-visual-block { position: relative; }
.mvv-stack { display: flex; flex-direction: column; gap: 24px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #dbeafe 100%);
  border-radius: var(--radius);
  border: 1.5px solid #bfdbfe;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.about-img-placeholder .ph-label { font-size: 12px; color: var(--blue); font-weight: 600; text-align: center; padding: 0 20px; }
.about-tag { position: absolute; bottom: -20px; left: -20px; background: var(--blue); color: #fff; border-radius: 10px; padding: 14px 20px; box-shadow: 0 8px 24px rgba(37,99,235,0.3); }
.about-tag-num { font-size: 28px; font-weight: 800; line-height: 1; }
.about-tag-lbl { font-size: 11px; opacity: 0.85; }
.about-points { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point-icon { width: 40px; height: 40px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-point-icon svg { width: 20px; height: 20px; stroke: var(--blue); stroke-width: 1.75; fill: none; }
.about-point-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.about-point-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.value-chip { background: var(--off); border: 1.5px solid var(--border); color: var(--text); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; }

/* ── SERVICES ── */
.services { background: var(--off); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1.5px solid var(--border);
  transition: all 0.2s; cursor: default;
}
.svc-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-icon { width: 48px; height: 48px; background: var(--blue-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { width: 24px; height: 24px; stroke: var(--blue); stroke-width: 1.75; fill: none; }
.svc-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; margin-bottom: 10px; background: #dcfce7; color: #166534; }
.svc-title { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.svc-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.svc-link { font-size: 13px; color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.svc-link svg { width: 14px; height: 14px; transition: transform 0.15s; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* ── TECNOERP ── */
.tecnoerp {
  background: linear-gradient(135deg, #0d1b35 0%, #162040 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.tecnoerp::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(96,165,250,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.tecnoerp-header { text-align: center; margin-bottom: 56px; position: relative; }
.tecnoerp-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue-light); font-weight: 700; margin-bottom: 10px; }
.tecnoerp-title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 16px; }
.tecnoerp-title span { color: var(--blue-light); }
.tecnoerp-sub { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 540px; margin: 0 auto; line-height: 1.75; }
.legend { display: flex; gap: 28px; justify-content: center; margin-bottom: 40px; position: relative; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.5); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.on { background: #4ade80; }
.legend-dot.off { background: rgba(255,255,255,0.2); }
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; position: relative; }
.mod-card {
  border-radius: 10px; padding: 22px 18px;
  border: 1px solid rgba(96,165,250,0.15);
  background: rgba(255,255,255,0.04);
  transition: all 0.2s;
}
.mod-card.available { border-color: rgba(74,222,128,0.2); background: rgba(74,222,128,0.04); }
.mod-card.available:hover { background: rgba(74,222,128,0.08); transform: translateY(-2px); }
.mod-card.soon { opacity: 0.5; border-style: dashed; }
.mod-status { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.mod-status.on { color: #4ade80; }
.mod-status.off { color: rgba(255,255,255,0.3); }
.mod-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(96,165,250,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.mod-icon svg { width: 18px; height: 18px; stroke: var(--blue-light); stroke-width: 1.75; fill: none; }
.mod-card.soon .mod-icon svg { stroke: rgba(255,255,255,0.3); }
.mod-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.mod-card.soon .mod-title { color: rgba(255,255,255,0.4); }
.mod-desc { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.6; }
.tecnoerp-cta { text-align: center; margin-top: 48px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.signage { background: linear-gradient(135deg, #1a1033 0%, #2a1b4d 100%); }
.signage .tecnoerp-label, .signage .tecnoerp-title span { color: #c4b5fd; }
.signage .mod-card.available { border-color: rgba(167,139,250,0.25); background: rgba(167,139,250,0.05); }
.signage .mod-card.available:hover { background: rgba(167,139,250,0.1); }
.signage .mod-status.on { color: #c4b5fd; }
.signage .mod-icon { background: rgba(167,139,250,0.15); }
.signage .mod-icon svg { stroke: #c4b5fd; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #f0f7ff; }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,0.75); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* ── PRICING ── */
.pricing { background: var(--off); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.plan-card { background: var(--white); border-radius: var(--radius); padding: 28px 22px; border: 1.5px solid var(--border); display: flex; flex-direction: column; }
.plan-card.featured { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,0.08); }
.plan-badge { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--blue); color: #fff; padding: 4px 10px; border-radius: 20px; display: inline-block; margin-bottom: 14px; }
.plan-badge.erp { background: var(--navy); }
.plan-name { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.plan-desc { font-size: 12px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.plan-features { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.plan-feature { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; color: var(--text); }
.plan-feature::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: #dcfce7; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 10px; background-position: center; background-repeat: no-repeat; margin-top: 1px; }
.plan-btn { width: 100%; padding: 12px; border-radius: 8px; font-size: 13px; font-weight: 700; font-family: inherit; cursor: pointer; border: 1.5px solid var(--border); background: var(--white); color: var(--text); transition: all 0.2s; }
.plan-btn:hover { border-color: var(--blue); color: var(--blue); }
.plan-card.featured .plan-btn { background: var(--blue); color: #fff; border-color: var(--blue); }
.plan-card.featured .plan-btn:hover { background: #1d4ed8; }
.plan-card.erp-card .plan-btn { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.faq-left h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text); transition: color 0.15s; }
.faq-q:hover { color: var(--blue); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s; stroke: var(--muted); fill: none; stroke-width: 2; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 16px; }
.faq-cta-box { background: var(--blue-pale); border-radius: var(--radius); padding: 32px; border: 1.5px solid #bfdbfe; }
.faq-cta-box h3 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.faq-cta-box p { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }

/* ── CONTACT ── */
.contact { background: var(--navy); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: 36px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.contact-info p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(96,165,250,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--blue-light); stroke-width: 1.75; fill: none; }
.contact-detail-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.contact-detail-val { font-size: 14px; color: #fff; font-weight: 500; }
.contact-detail-val a { color: #fff; }
.contact-form-card { background: #fff; border-radius: 14px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1.5px solid var(--border); font-family: inherit; font-size: 14px;
  color: var(--text); background: var(--off);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); background: #fff; }
.form-group textarea { height: 110px; resize: none; }
.form-submit { width: 100%; padding: 14px; font-size: 14px; font-weight: 700; font-family: inherit; }
.form-success { display: none; background: #dcfce7; color: #166534; padding: 14px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; text-align: center; }
.form-success.visible { display: block; }
.form-error { display: none; background: #fee2e2; color: #991b1b; padding: 14px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; text-align: center; margin-bottom: 14px; }
.form-error.visible { display: block; }

/* ── FOOTER ── */
.footer { background: #080f1e; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand-logo { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-brand-logo span { color: var(--blue-light); }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 14px; transition: all 0.2s; }
.footer-social:hover { border-color: var(--blue-light); color: var(--blue-light); }
.footer-col-title { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-links a.highlight { color: var(--blue-light); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── WHATSAPP ── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.2s; font-size: 26px;
}
.wa-btn:hover { background: #1ebe57; transform: scale(1.08); }

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(13,27,53,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: 14px; max-width: 640px; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: 40px;
  transform: translateY(20px); transition: transform 0.25s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; gap: 16px; }
.modal-header-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.modal-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-icon svg { width: 23px; height: 23px; stroke: var(--blue); stroke-width: 1.75; fill: none; }
.modal-title { font-size: 22px; font-weight: 800; color: var(--text); }
.modal-close { background: var(--off); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-close:hover { background: var(--border); }
.modal-body h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 20px 0 10px; }
.modal-body p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 10px; }
.modal-body ul { display: flex; flex-direction: column; gap: 8px; }
.modal-body li { font-size: 14px; color: var(--muted); line-height: 1.65; display: flex; gap: 10px; }
.modal-body li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.modal-alert { background: #eff6ff; border-left: 3px solid var(--blue); padding: 14px 16px; border-radius: 6px; margin-bottom: 20px; font-size: 13px; color: var(--navy); }
.modal-stats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.modal-stat { background: var(--off); border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 14px; }
.modal-stat-num { font-size: 18px; font-weight: 800; color: var(--blue); line-height: 1.2; }
.modal-stat-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.modal-cta { margin-top: 24px; padding-top: 20px; border-top: 1.5px solid var(--border); display: flex; justify-content: flex-end; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-slide { grid-template-columns: 1fr; padding: 100px 28px 60px; }
  .hero-visual { display: none; }
  .hero-dots { bottom: 16px; }
  .about-grid, .about-3col, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .modules-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 12px 20px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-links, .nav-contact { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
}
@media (max-width: 560px) {
  .modules-grid, .pricing-grid, .services-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid #bfdbfe; width: 100%; justify-content: center; }
}

/* ── SCROLL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
