/* ===================================
   XLLIGENT — LIGHT THEME CSS
   =================================== */

:root {
  /* Colors */
  --white: #ffffff;
  --bg: #F7F9FC;
  --bg2: #EEF2F8;
  --border: #E2E8F0;
  --border2: #CBD5E1;
  --text: #0F172A;
  --text2: #475569;
  --text3: #94A3B8;

  --blue: #2563EB;
  --blue-lt: #EFF6FF;
  --blue-mid: #BFDBFE;
  --blue-dark: #1D4ED8;
  --blue-glow: rgba(37,99,235,0.15);

  --green: #059669;
  --green-lt: #ECFDF5;
  --green-mid: #A7F3D0;

  --amber: #D97706;
  --amber-lt: #FFFBEB;

  --purple: #7C3AED;
  --purple-lt: #F5F3FF;

  --teal: #0891B2;
  --teal-lt: #ECFEFF;

  --red: #DC2626;
  --red-lt: #FEF2F2;

  --indigo: #4338CA;
  --indigo-lt: #EEF2FF;

  --wa: #25D366;
  --wa-dark: #128C7E;
  --wa-lt: #F0FDF4;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow: 0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 16px 48px rgba(15,23,42,0.12), 0 6px 16px rgba(15,23,42,0.06);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.25);

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); background: none; }
input, textarea { font-family: var(--font-body); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ============ UTILITIES ============ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.tc { text-align: center; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
em { font-style: normal; color: var(--blue); }

.sec-tag {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--blue);
  border: 1px solid var(--blue-mid);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-tag.green { background: var(--green-lt); color: var(--green); border-color: var(--green-mid); }

.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header p { color: var(--text2); font-size: 1rem; max-width: 560px; margin: 12px auto 0; }
.sec-header h2 { margin-top: 6px; }

/* ============ BUTTONS ============ */
.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blue);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  border: 2px solid var(--blue);
}
.btn-primary-lg:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,99,235,0.35); }

.btn-ghost-lg {
  display: inline-flex; align-items: center; gap: 9px;
  background: white;
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  cursor: pointer;
}
.btn-ghost-lg:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa);
  color: white;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.93rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  border: none; cursor: pointer;
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.4); }

.btn-wa-sm {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa-lt);
  color: var(--green);
  border: 2px solid var(--green-mid);
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}
.btn-wa-sm:hover { background: var(--wa); color: white; border-color: var(--wa); transform: translateY(-2px); }

.btn-outline-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.93rem;
  transition: var(--transition);
}
.btn-outline-lg:hover { background: var(--blue-lt); transform: translateY(-2px); }
.w100 { width: 100%; justify-content: center; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--text); flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  color: white;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
}
.logo-mark.sm { width: 28px; height: 28px; font-size: 0.95rem; border-radius: 6px; }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  color: var(--text2);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-lt); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { color: var(--text2); font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.nav-phone i { color: var(--blue); }
.nav-phone:hover { color: var(--blue); }

.btn-demo {
  display: flex; align-items: center; gap: 7px;
  background: var(--blue);
  color: white;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 2px 10px var(--blue-glow);
}
.btn-demo:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-demo i { font-size: 0.75rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ============ HERO ============ */
.hero {
  padding: 110px 24px 80px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  min-height: 100vh;
}
.hero-shapes {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: -1; overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.s1 { width: 700px; height: 700px; background: radial-gradient(circle, #EFF6FF 0%, transparent 70%); top: -200px; left: -200px; }
.s2 { width: 500px; height: 500px; background: radial-gradient(circle, #F0FDF4 0%, transparent 70%); bottom: 0; right: -100px; }
.s3 { width: 400px; height: 400px; background: radial-gradient(circle, #F5F3FF 0%, transparent 70%); top: 40%; left: 45%; }
.dots-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #CBD5E1 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
}

.hero-content { flex: 1; max-width: 560px; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--border);
  color: var(--text2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.5s ease both;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(5,150,105,0.4); } 50% { box-shadow: 0 0 0 5px rgba(5,150,105,0); } }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero-highlight {
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub-text { color: var(--text2); }

.hero-desc {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.2s ease both;
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.5s 0.3s ease both;
}
.hero-proof {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  animation: fadeUp 0.5s 0.4s ease both;
}
.proof-item { text-align: center; }
.proof-item strong { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--blue); }
.proof-item span { font-size: 0.75rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.05em; }
.proof-sep { width: 1px; height: 32px; background: var(--border); }

/* APP PREVIEW */
.hero-visual {
  flex: 1; max-width: 520px;
  position: relative; z-index: 1;
  animation: fadeRight 0.7s 0.3s ease both;
}
.app-preview {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.app-bar {
  background: var(--bg);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.app-bar-dots { display: flex; gap: 5px; }
.app-bar-dots span { width: 10px; height: 10px; border-radius: 50%; }
.app-bar-dots span:nth-child(1) { background: #FF5F57; }
.app-bar-dots span:nth-child(2) { background: #FEBC2E; }
.app-bar-dots span:nth-child(3) { background: #28C840; }
.app-bar-title { flex: 1; text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--text3); }
.app-bar-status { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 600; color: var(--green); }
.live-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse-dot 1.5s infinite; }

.app-body { display: flex; height: 320px; overflow: hidden; }
.app-sidebar {
  width: 52px;
  background: var(--bg);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 8px;
}
.sb-logo {
  width: 32px; height: 32px;
  background: var(--blue);
  color: white;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  margin-bottom: 8px;
}
.sb-nav { display: flex; flex-direction: column; gap: 4px; }
.sb-item {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.85rem;
  transition: var(--transition); text-decoration: none;
}
.sb-item.active, .sb-item:hover { background: var(--blue); color: white; }

.app-main { flex: 1; padding: 14px; overflow: hidden; }
.app-greeting { font-size: 0.78rem; font-weight: 600; color: var(--text2); margin-bottom: 12px; }
.kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.kpi {
  padding: 10px;
  border-radius: 10px;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid transparent;
}
.kpi.blue { background: var(--blue-lt); border-color: var(--blue-mid); }
.kpi.green { background: var(--green-lt); border-color: #A7F3D0; }
.kpi.amber { background: var(--amber-lt); border-color: #FDE68A; }
.kpi.teal { background: var(--teal-lt); border-color: #A5F3FC; }
.kpi-icon { font-size: 0.9rem; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: white; border-radius: 6px; }
.kpi.blue .kpi-icon { color: var(--blue); }
.kpi.green .kpi-icon { color: var(--green); }
.kpi.amber .kpi-icon { color: var(--amber); }
.kpi.teal .kpi-icon { color: var(--teal); }
.kpi-val { font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; line-height: 1.1; }
.kpi-lbl { font-size: 0.65rem; color: var(--text3); font-weight: 500; }

.chart-area { background: var(--bg); border-radius: 10px; padding: 12px; flex: 1; }
.chart-title { font-size: 0.72rem; font-weight: 700; color: var(--text2); margin-bottom: 8px; }
.chart-bars-wrap { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.cb {
  flex: 1; height: var(--h);
  background: var(--blue-mid);
  border-radius: 4px 4px 0 0;
  position: relative;
  font-size: 0; /* hide text */
  transition: var(--transition);
}
.cb::after { content: attr(style); display: none; }
.cb[style*="--h"]:not(.hi) { background: var(--blue-mid); }
.cb.hi { background: var(--blue); box-shadow: 0 -4px 8px rgba(37,99,235,0.3); }
.cb:hover { background: var(--blue); }

.float-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.float-card i { font-size: 1rem; }
.fc1 { bottom: -16px; left: -20px; animation-delay: 0s; }
.fc1 i { color: var(--wa); }
.fc2 { top: -16px; right: -20px; animation-delay: 1.5s; }
.fc2 i { color: var(--amber); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============ TRUSTED BAR ============ */
.trusted-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trusted-bar .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.tb-label { font-size: 0.8rem; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.tb-cities { display: flex; gap: 24px; flex-wrap: wrap; }
.tb-cities span { font-size: 0.88rem; font-weight: 600; color: var(--text2); display: flex; align-items: center; gap: 5px; transition: var(--transition); }
.tb-cities i { color: var(--blue); font-size: 0.8rem; }
.tb-cities span:hover { color: var(--blue); }

/* ============ HOME FEATURES ============ */
.home-feats { background: var(--bg); }
.hf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.hf-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.hf-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hf-card:hover { border-color: rgba(37,99,235,0.25); box-shadow: var(--shadow); transform: translateY(-4px); }
.hf-card:hover::after { transform: scaleX(1); }
.hf-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.c-blue { background: var(--blue-lt); color: var(--blue); }
.c-green { background: var(--green-lt); color: var(--green); }
.c-amber { background: var(--amber-lt); color: var(--amber); }
.c-purple { background: var(--purple-lt); color: var(--purple); }
.c-teal { background: var(--teal-lt); color: var(--teal); }
.c-red { background: var(--red-lt); color: var(--red); }
.c-indigo { background: var(--indigo-lt); color: var(--indigo); }

.hf-card h3 { margin-bottom: 8px; }
.hf-card p { color: var(--text2); font-size: 0.88rem; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.hf-arrow { width: 32px; height: 32px; background: var(--blue-lt); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 0.8rem; margin-top: auto; transition: var(--transition); }
.hf-card:hover .hf-arrow { background: var(--blue); color: white; }

/* ============ WHATSAPP SECTION ============ */
.wa-section {
  background: linear-gradient(135deg, var(--green-lt) 0%, white 50%, var(--blue-lt) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.wa-wrap { display: flex; align-items: center; gap: 72px; }
.wa-content { flex: 1; }
.wa-content h2 { margin: 10px 0 16px; }
.wa-content > p { color: var(--text2); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.wa-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.wa-row { display: flex; align-items: flex-start; gap: 14px; }
.wa-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.wa-dot.green { background: var(--green); }
.wa-dot.blue { background: var(--blue); }
.wa-dot.amber { background: var(--amber); }
.wa-dot.teal { background: var(--teal); }
.wa-row strong { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 2px; }
.wa-row span { color: var(--text2); font-size: 0.85rem; }
.wa-stat-row { display: flex; gap: 28px; margin-bottom: 28px; }
.wa-stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--green); }
.wa-stat span { font-size: 0.78rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.05em; }

/* PHONE FRAME */
.wa-phone { flex-shrink: 0; }
.phone-frame {
  width: 270px;
  background: #1a1a2e;
  border-radius: 36px;
  border: 4px solid #2d2d4a;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255,255,255,0.5);
}
.pf-notch { width: 90px; height: 22px; background: #1a1a2e; border-radius: 0 0 14px 14px; margin: 0 auto; }
.pf-screen { background: #ECE5DD; }
.pf-header { background: #075E54; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.pf-av { width: 36px; height: 36px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; }
.pf-info strong { display: block; color: white; font-size: 0.85rem; }
.pf-info small { color: rgba(255,255,255,0.7); font-size: 0.7rem; }
.pf-msgs { padding: 14px 10px; display: flex; flex-direction: column; gap: 9px; min-height: 280px; }
.pm { max-width: 88%; }
.pm p { background: white; border-radius: 0 12px 12px 12px; padding: 9px 11px; font-size: 0.77rem; color: #111; line-height: 1.5; box-shadow: 0 1px 2px rgba(0,0,0,0.1); margin: 0; }
.pm small { display: block; font-size: 0.65rem; color: #888; margin-top: 3px; text-align: right; }
.pm.typing p { display: flex; align-items: center; padding: 10px 14px; width: 60px; }
.tdots { display: flex; gap: 4px; align-items: center; }
.tdots b { display: block; width: 7px; height: 7px; background: #aaa; border-radius: 50%; animation: td 1.2s infinite; font-style: normal; }
.tdots b:nth-child(2) { animation-delay: 0.2s; }
.tdots b:nth-child(3) { animation-delay: 0.4s; }
@keyframes td { 0%,80%,100% { transform:scale(0.8);opacity:0.4; } 40% { transform:scale(1.2);opacity:1; } }

/* ============ STATS ============ */
.stats-section {
  background: var(--blue);
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-box { text-align: center; }
.stat-icon { font-size: 1.5rem; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.stat-box .stat-val { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: white; display: inline; }
.stat-box .stat-suffix { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: white; display: inline; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ============ TESTIMONIALS ============ */
.testi-section { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testi-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition); position: relative;
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-card.featured { border-color: rgba(37,99,235,0.3); box-shadow: 0 0 0 1px rgba(37,99,235,0.1); }
.tc-quote { font-family: Georgia, serif; font-size: 4rem; color: var(--blue-mid); line-height: 0.5; margin-bottom: 16px; }
.testi-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av { width: 42px; height: 42px; background: linear-gradient(135deg, var(--blue), var(--purple)); border-radius: 50%; color: white; font-weight: 800; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-author strong { display: block; font-size: 0.88rem; }
.tc-author small { color: var(--text3); font-size: 0.78rem; }
.tc-stars { margin-left: auto; color: #F59E0B; font-size: 0.85rem; }

/* ============ HOME CTA ============ */
.home-cta { padding: 72px 24px; background: linear-gradient(135deg, #1D4ED8 0%, #7C3AED 100%); }
.hcta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.hcta-text h2 { color: white; margin-bottom: 8px; }
.hcta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.hcta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hcta-actions .btn-primary-lg { background: white; color: var(--blue); border-color: white; box-shadow: none; }
.hcta-actions .btn-primary-lg:hover { background: var(--blue-lt); }

/* ============ PAGE SECTIONS ============ */
.page-sec { border-top: 1px solid var(--border); }
.page-hero-light {
  background: linear-gradient(180deg, var(--bg) 0%, white 100%);
  padding: 110px 24px 60px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero-light .container { max-width: 640px; }
.page-hero-light h1 { margin: 10px 0 14px; }
.page-hero-light p { color: var(--text2); font-size: 1rem; }

/* ============ FILTER TABS ============ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.ftab {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text2);
  border: 1.5px solid var(--border);
  background: white;
  transition: var(--transition);
  cursor: pointer;
}
.ftab:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }
.ftab.active { background: var(--blue); color: white; border-color: var(--blue); box-shadow: 0 4px 12px var(--blue-glow); }

/* ============ MODULE CARDS ============ */
.mod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.mod-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  position: relative;
}
.mod-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: var(--shadow); transform: translateY(-4px); }
.mod-card.hidden { display: none; }
.mod-card.fade-in { animation: fadeScale 0.3s ease forwards; }

.mc-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.mc-top i { font-size: 1.3rem; }
.mc-top span {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  opacity: 0.7;
}
.mc-top.c-blue { color: var(--blue); }
.mc-top.c-green { color: var(--green); }
.mc-top.c-amber { color: var(--amber); }
.mc-top.c-purple { color: var(--purple); }
.mc-top.c-teal { color: var(--teal); }
.mc-top.c-red { color: var(--red); }
.mc-top.c-indigo { color: var(--indigo); }

.mod-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.mod-card p { color: var(--text2); font-size: 0.85rem; line-height: 1.6; margin-bottom: 14px; }
.mc-list { display: flex; flex-wrap: wrap; gap: 6px; }
.mc-list li {
  font-size: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text2);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
}

/* ============ ABOUT ============ */
.about-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: 72px; }
.ab-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center; transition: var(--transition);
}
.ab-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.ab-icon {
  width: 56px; height: 56px;
  background: var(--blue-lt);
  border: 1px solid var(--blue-mid);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--blue);
  margin: 0 auto 18px;
}
.ab-card h3 { margin-bottom: 10px; }
.ab-card p { color: var(--text2); font-size: 0.88rem; line-height: 1.6; }

/* TIMELINE */
.timeline-wrap { margin-bottom: 72px; }
.timeline-wrap h2 { margin-bottom: 40px; }
.tl { position: relative; max-width: 700px; margin: 0 auto; }
.tl::before { content: ''; position: absolute; left: 60px; top: 0; bottom: 0; width: 2px; background: var(--border2); }
.tl-row { display: flex; align-items: flex-start; gap: 0; margin-bottom: 28px; position: relative; }
.tl-yr { width: 60px; font-family: var(--font-display); font-size: 0.9rem; font-weight: 800; color: var(--blue); padding-top: 12px; text-align: right; flex-shrink: 0; }
.tl-line { width: 48px; display: flex; justify-content: center; flex-shrink: 0; padding-top: 16px; }
.tl-node { width: 14px; height: 14px; background: var(--blue); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 2px var(--blue); }
.tl-text { flex: 1; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; }
.tl-text h4 { color: var(--blue); margin-bottom: 4px; font-size: 0.95rem; }
.tl-text p { color: var(--text2); font-size: 0.85rem; margin: 0; }

/* LOCATIONS */
.locs-wrap h2 { margin-bottom: 32px; }
.locs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.loc-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; transition: var(--transition); }
.loc-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.loc-card i { font-size: 1.2rem; color: var(--blue); margin-bottom: 8px; display: block; }
.loc-card h4 { margin-bottom: 2px; font-size: 0.92rem; }
.loc-card p { color: var(--text3); font-size: 0.78rem; }

/* ============ CONTACT ============ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-left h3 { margin-bottom: 24px; font-size: 1.3rem; }
.ci-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.ci-ico.blue { background: var(--blue-lt); color: var(--blue); }
.ci-ico.green { background: var(--green-lt); color: var(--green); }
.ci-ico.wa { background: var(--wa-lt); color: var(--wa); }
.ci-ico.amber { background: var(--amber-lt); color: var(--amber); }
.ci-item label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--text3); margin-bottom: 3px; }
.ci-item a { display: block; color: var(--text2); font-size: 0.88rem; transition: var(--transition); }
.ci-item a:hover { color: var(--blue); }
.ci-item span { color: var(--text2); font-size: 0.88rem; }
.soc-row { display: flex; gap: 10px; }
.soc-btn { width: 38px; height: 38px; background: var(--bg); border: 1px solid var(--border); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--text2); font-size: 0.9rem; transition: var(--transition); }
.soc-btn:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.soc-btn.wa { background: var(--wa-lt); border-color: var(--green-mid); color: var(--wa); }

.cf-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow); }
.cf-card h3 { margin-bottom: 24px; font-size: 1.3rem; }
form { display: flex; flex-direction: column; gap: 16px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 0.78rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.05em; }
.fg input, .fg textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  background: var(--bg);
  transition: var(--transition);
  resize: vertical;
}
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--blue); background: white; box-shadow: 0 0 0 3px var(--blue-glow); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text3); }
.form-ok { text-align: center; padding: 40px 20px; }
.form-ok i { font-size: 2.5rem; color: var(--green); display: block; margin-bottom: 12px; }
.form-ok h3 { margin-bottom: 6px; }
.form-ok p { color: var(--text2); font-size: 0.9rem; }

/* ============ PRICING ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 56px; }
.pc {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  position: relative; transition: var(--transition);
}
.pc:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pc.featured { border-color: var(--blue); box-shadow: 0 0 0 1px rgba(37,99,235,0.15), var(--shadow); }
.pc-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; padding: 4px 18px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; box-shadow: 0 4px 12px var(--blue-glow); }
.pc-name { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 10px; }
.pc-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; margin-bottom: 4px; }
.pc-price span { font-size: 1rem; color: var(--text3); font-weight: 500; }
.pc-sub { color: var(--text2); font-size: 0.85rem; margin-bottom: 24px; }
.pc-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pc-list li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; }
.pc-list .fa-check { color: var(--green); }
.pc-list .fa-xmark { color: var(--border2); }
.pc-list li.off { color: var(--text3); }
.pc-btn {
  display: block; text-align: center; padding: 12px;
  border-radius: var(--radius); font-weight: 700; font-size: 0.9rem;
  transition: var(--transition); cursor: pointer;
}
.pc-btn.primary { background: var(--blue); color: white; box-shadow: var(--shadow-blue); }
.pc-btn.primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.pc-btn.outline { border: 2px solid var(--border2); color: var(--text2); }
.pc-btn.outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }

.demo-box {
  background: linear-gradient(135deg, var(--blue-lt) 0%, var(--purple-lt) 100%);
  border: 1.5px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.db-left { flex: 1; }
.db-left h2 { margin-bottom: 10px; }
.db-left p { color: var(--text2); margin-bottom: 18px; font-size: 0.95rem; }
.db-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.db-chips span { display: flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--text2); }
.db-chips i { color: var(--green); }
.db-right { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ============ FOOTER ============ */
.footer { background: var(--text); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.f-brand .f-logo { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 12px; }
.f-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; margin-bottom: 18px; }
.f-soc { display: flex; gap: 8px; }
.f-soc a { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition); }
.f-soc a:hover { background: var(--blue); color: white; }
.f-soc .wa-link:hover { background: var(--wa); }
.f-links h4 { color: rgba(255,255,255,0.5); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.f-links { display: flex; flex-direction: column; gap: 0; }
.f-links a { color: rgba(255,255,255,0.7); font-size: 0.85rem; padding: 4px 0; transition: var(--transition); }
.f-links a:hover { color: white; }
.f-contact h4 { color: rgba(255,255,255,0.5); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.f-contact p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 7px; display: flex; align-items: center; gap: 8px; }
.f-contact i { color: var(--blue); width: 14px; }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.f-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.f-bottom a { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-left: 20px; transition: var(--transition); }
.f-bottom a:hover { color: white; }

/* ============ FLOATING WHATSAPP ============ */
.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px;
  background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.fab-tip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--text); color: white;
  padding: 7px 13px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.fab-tip::after { content: ''; position: absolute; top: 50%; right: -6px; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--text); border-right: none; }
.fab-wa:hover .fab-tip { opacity: 1; }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.08); } }

/* ============ CHATBOT ============ */
.chatbot { position: fixed; bottom: 28px; left: 28px; z-index: 900; }
.cb-toggle {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  transition: var(--transition); position: relative;
}
.cb-toggle:hover { transform: scale(1.08); }
.cb-badge { position: absolute; top: -3px; right: -3px; width: 19px; height: 19px; background: #EF4444; color: white; border-radius: 50%; font-size: 0.68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid white; }

.cb-window {
  position: absolute; bottom: 68px; left: 0;
  width: 320px;
  background: white; border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform-origin: bottom left;
  transform: scale(0.85) translateY(20px);
  opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.cb-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.cb-head { background: linear-gradient(135deg, var(--blue), var(--purple)); padding: 16px 18px; display: flex; align-items: center; gap: 11px; }
.cb-av { width: 38px; height: 38px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; }
.cb-meta strong { color: white; display: block; font-size: 0.88rem; }
.cb-meta span { color: rgba(255,255,255,0.75); font-size: 0.74rem; display: flex; align-items: center; gap: 5px; }
.cb-online { width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
.cb-x { margin-left: auto; color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: var(--transition); }
.cb-x:hover { color: white; }

.cb-msgs { height: 260px; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; background: var(--bg); }
.cb-msg.bot .cb-bubble { background: white; border: 1px solid var(--border); border-radius: 4px 14px 14px 14px; padding: 10px 13px; font-size: 0.83rem; line-height: 1.5; align-self: flex-start; max-width: 88%; display: inline-block; box-shadow: var(--shadow-sm); }
.cb-msg.user .cb-bubble { background: var(--blue); color: white; border-radius: 14px 4px 14px 14px; padding: 10px 13px; font-size: 0.83rem; align-self: flex-end; max-width: 88%; display: inline-block; margin-left: auto; }
.cb-msg { display: flex; flex-direction: column; }
.cb-quickrow { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.cb-quickrow button { padding: 6px 12px; border: 1.5px solid var(--border); border-radius: 100px; font-size: 0.75rem; font-weight: 600; color: var(--text2); background: white; transition: var(--transition); cursor: pointer; }
.cb-quickrow button:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }

.cb-footer { padding: 12px 14px; border-top: 1px solid var(--border); display: flex; gap: 8px; align-items: center; }
.cb-footer input { flex: 1; background: var(--bg); border: 1.5px solid var(--border); border-radius: 100px; padding: 9px 14px; font-size: 0.83rem; color: var(--text); transition: var(--transition); }
.cb-footer input:focus { outline: none; border-color: var(--blue); background: white; }
.cb-footer input::placeholder { color: var(--text3); }
.cb-send { width: 36px; height: 36px; background: var(--blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; transition: var(--transition); flex-shrink: 0; }
.cb-send:hover { background: var(--blue-dark); transform: scale(1.1); }

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeScale { from { opacity:0; transform:scale(0.95) translateY(8px); } to { opacity:1; transform:scale(1) translateY(0); } }

/* ============ RESPONSIVE ============ */
@media(max-width:1024px){
  .hero { flex-direction:column; padding-top:120px; min-height:auto; }
  .hero-visual { max-width:100%; }
  .wa-wrap { flex-direction:column; gap:40px; }
  .wa-phone { align-self:center; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .contact-wrap { grid-template-columns:1fr; }
  .demo-box { flex-direction:column; padding:32px; }
  .db-right { flex-direction:row; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:24px; }
}
@media(max-width:768px){
  .nav-links,.nav-actions { display:none; }
  .nav-links.open { display:flex; flex-direction:column; position:fixed; top:68px; left:0; right:0; background:white; padding:20px 24px; border-bottom:1px solid var(--border); box-shadow:var(--shadow); gap:2px; z-index:999; }
  .hamburger { display:flex; }
  .hero-cta { flex-direction:column; }
  .hero-proof { flex-wrap:wrap; gap:12px; }
  .tl::before { left:16px; }
  .tl-row { padding-left:0; }
  .tl-yr { width:44px; font-size:0.78rem; }
  .tl-line { width:36px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .frow { grid-template-columns:1fr; }
  .fab-wa { bottom:20px; right:20px; }
  .chatbot { bottom:20px; left:20px; }
  .cb-window { width:290px; }
  .db-right { flex-direction:column; }
}
@media(max-width:480px){
  .section-pad { padding:60px 0; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .hcta-inner { flex-direction:column; text-align:center; }
  .hcta-actions { justify-content:center; }
  .demo-box { padding:24px; }
}
.logo-img {
  height: 50;
  width: 100px;
}