/* ============================================================
   SPARVELO NETWORKS PVT LTD — MAIN CSS (Clean Rebuild)
   Light Professional Enterprise Theme
   ============================================================ */

/* ── GOOGLE FONTS ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Colors */
  --navy:       #0D1A36;
  --navy-light: #1E2F50;
  --gold:       #C9A84C;
  --gold-dark:  #A07830;
  --blue:       #1E5FBF;
  --blue-light: #EBF3FF;
  --green:      #16A34A;
  --green-light:#DCFCE7;
  --bg:         #F4F6FB;
  --bg-white:   #FFFFFF;
  --border:     #E2E8F0;
  --border-md:  #CBD5E1;
  --text:       #0D1A36;
  --text-2:     #475569;
  --text-3:     #94A3B8;

  /* Gradients */
  --grad-hero:  linear-gradient(135deg, #F0F4FF 0%, #F8F6EE 50%, #EFF6FF 100%);
  --grad-navy:  linear-gradient(135deg, #0D1A36 0%, #1E2F50 100%);
  --grad-gold:  linear-gradient(90deg, #C9A84C 0%, #E8C96A 100%);
  --grad-text:  linear-gradient(135deg, #0D1A36 0%, #1E5FBF 100%);

  /* Shadows */
  --sh-sm:  0 1px 3px rgba(0,0,0,0.08);
  --sh-md:  0 4px 16px rgba(13,26,54,0.1);
  --sh-lg:  0 8px 32px rgba(13,26,54,0.12);
  --sh-xl:  0 16px 48px rgba(13,26,54,0.15);

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-6: 1.5rem;   --sp-8: 2rem;
  --sp-10: 2.5rem;  --sp-12: 3rem;    --sp-16: 4rem;
  --sp-20: 5rem;

  /* Radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-full: 9999px;

  /* Fonts */
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --tr-fast: 0.15s ease; --tr-md: 0.25s ease; --tr-slow: 0.4s ease;

  /* Nav height — single source of truth */
  --nav-h: 70px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Body padding pushes all content below the fixed navbar */
  padding-top: var(--nav-h);
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--tr-fast); }
a:hover { color: var(--navy); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.section { padding: var(--sp-20) 0; }
.section-sm { padding: var(--sp-12) 0; }
.text-center { text-align: center; }

/* Grid System */
.grid { display: grid; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

/* Typography */
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--r-full);
  padding: 0.3rem 1rem;
  margin-bottom: var(--sp-4);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 620px;
  line-height: 1.75;
}
.section-header { margin-bottom: var(--sp-12); }

/* Utility */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.hidden { display: none !important; }

/* ── NAVIGATION ──────────────────────────────────────────── */
/*
  CRITICAL: navbar is position:fixed so it does NOT take up document space.
  body { padding-top: var(--nav-h) } pushes ALL page content below the navbar.
  This is the ONLY correct pattern — no margin hacks, no JS needed.
*/
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  z-index: 9999;
  transition: box-shadow var(--tr-md);
}
.navbar.scrolled { box-shadow: var(--sh-md); }
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { width: 42px; height: 42px; border-radius: var(--r-md); object-fit: cover; }
.nav-logo-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; color: var(--navy); }
.nav-logo-tag { font-size: 0.58rem; font-weight: 600; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.1em; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: all var(--tr-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: rgba(13,26,54,0.05); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.25rem; }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--tr-fast); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  min-width: 260px;
  box-shadow: var(--sh-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--tr-md);
  z-index: 10000;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dd-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-3);
  border-radius: var(--r-md);
  color: var(--text-2);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--tr-fast);
}
.dd-item:hover { background: var(--bg); color: var(--navy); }
.dd-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: var(--grad-navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dd-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.dd-text strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); }
.dd-text span { font-size: 0.72rem; color: var(--text-3); }

.nav-cta { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }

/* Mobile nav */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--sp-2); background: none; border: none; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--tr-md); }
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: #FFFFFF;
  z-index: 9998;
  padding: var(--sp-6);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--sp-2);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile-section { font-size: 0.7rem; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.1em; padding: var(--sp-4) 0 var(--sp-2); }
.nav-mobile-link {
  display: block;
  padding: var(--sp-3) var(--sp-2);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--tr-fast);
}
.nav-mobile-link:hover { color: var(--navy); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.7rem 1.5rem;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--tr-md);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-navy);
  color: #FFFFFF;
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-light); color: #FFFFFF; box-shadow: var(--sh-md); transform: translateY(-1px); }
.btn-secondary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-secondary:hover { background: var(--gold-dark); color: #FFFFFF; box-shadow: var(--sh-md); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-md);
}
.btn-outline:hover { background: var(--bg); border-color: var(--navy); color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg); color: var(--navy); }
.btn-call {
  background: #16A34A;
  color: #FFFFFF;
  border-color: #16A34A;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(22,163,74,0.25);
  animation: call-pulse 2.5s infinite;
}
.btn-call:hover {
  background: #15803D;
  border-color: #15803D;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22,163,74,0.4);
}
@keyframes call-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(22,163,74,0.25); }
  50%       { box-shadow: 0 2px 16px rgba(22,163,74,0.5); }
}
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }

/* ── HERO SECTION (index.html) ───────────────────────────── */
.hero {
  background: var(--grad-hero);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,26,54,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,26,54,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-12);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.35rem 1rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: var(--sp-6);
  letter-spacing: 0.03em;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s infinite; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
  max-width: 560px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-bottom: var(--sp-10); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--sp-6); }
.hero-trust-item { display: flex; align-items: center; gap: var(--sp-2); font-size: 0.82rem; color: var(--text-2); font-weight: 500; }
.hero-trust-item svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

/* Hero right: product badges grid */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  position: relative;
  z-index: 2;
}
.hero-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-md);
  transition: all var(--tr-md);
  text-decoration: none;
}
.hero-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(201,168,76,0.4); }
.hero-card-icon { font-size: 2rem; margin-bottom: var(--sp-3); }
.hero-card-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: var(--sp-1); }
.hero-card-desc { font-size: 0.78rem; color: var(--text-2); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--grad-hero);
  padding: var(--sp-16) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,26,54,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,26,54,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-12);
  align-items: start;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: var(--sp-4);
}
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--gold-dark); }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}

/* Check list */
.check-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-8); }
.check-item { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: 0.9rem; color: var(--text-2); }
.check-item svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: #FFFFFF; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: var(--sp-8) var(--sp-6); text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label { font-size: 0.88rem; color: var(--text-2); font-weight: 500; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--sh-sm);
  transition: all var(--tr-md);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--tr-md);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(201,168,76,0.35); }
.card:hover::after { transform: scaleX(1); }
.card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: var(--sp-3); }
.card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }

/* Feature icon */
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }
.fi-navy   { background: var(--grad-navy); }
.fi-blue   { background: linear-gradient(135deg, #2563EB, #1E5FBF); }
.fi-purple { background: linear-gradient(135deg, #7C3AED, #4F46E5); }
.fi-green  { background: linear-gradient(135deg, #10B981, #059669); }
.fi-cyan   { background: linear-gradient(135deg, #06B6D4, #0284C7); }
.fi-orange { background: linear-gradient(135deg, #F59E0B, #D97706); }
.fi-red    { background: linear-gradient(135deg, #EF4444, #DC2626); }
.fi-wa     { background: linear-gradient(135deg, #25D366, #128C7E); }

/* ── LEAD FORM ───────────────────────────────────────────── */
.lead-form-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--sh-lg);
}
.form-title { font-size: 1.3rem; color: var(--navy); margin-bottom: var(--sp-2); }
.form-subtitle { font-size: 0.88rem; color: var(--text-2); margin-bottom: var(--sp-6); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-label .req { color: #EF4444; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--navy);
  background: #FFFFFF;
  transition: border-color var(--tr-fast);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,95,191,0.1); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; margin-top: var(--sp-4); }
.form-note { font-size: 0.78rem; color: var(--text-3); text-align: center; margin-top: var(--sp-3); }
.form-note a { color: var(--blue); }

/* Sticky form on scroll */
.sticky-form { position: sticky; top: calc(var(--nav-h) + var(--sp-6)); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--tr-fast);
}
.faq-q:hover { color: var(--blue); }
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--tr-md); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; padding-bottom: var(--sp-6); display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0D1A36 0%, #1E2F50 100%);
  padding: var(--sp-20) 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #FFFFFF; margin-bottom: var(--sp-4); }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto var(--sp-8); line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--sh-sm);
  position: relative;
}
.testimonial-card::before { content: '"'; position: absolute; top: var(--sp-4); right: var(--sp-6); font-size: 4rem; color: var(--border); font-family: Georgia, serif; line-height: 1; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: var(--sp-4); }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-text { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; margin-bottom: var(--sp-6); }
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-navy); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 0.78rem; color: var(--text-3); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: var(--sp-20) 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-10); margin-bottom: var(--sp-16); }
.footer-logo { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; margin-bottom: var(--sp-4); }
.footer-logo img { width: 40px; height: 40px; border-radius: var(--r-md); }
.footer-logo-name { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: #FFFFFF; }
.footer-logo-tag { font-size: 0.58rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: var(--sp-6); }
.footer-contact { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-contact-item { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--tr-md);
}
.social-link:hover { background: var(--gold); color: var(--navy); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col-title { font-size: 0.82rem; font-weight: 700; color: #FFFFFF; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--sp-4); }
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--tr-fast); }
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom-text { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: var(--sp-6); }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── WhatsApp Float Button ───────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9997;
  transition: all var(--tr-md);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #FFFFFF; }

/* ── FEATURES GRID ───────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  transition: all var(--tr-md);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(201,168,76,0.3); }
.feature-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: var(--sp-3); }
.feature-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* ── INDUSTRIES ──────────────────────────────────────────── */
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-4); }
.industry-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  transition: all var(--tr-md);
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(201,168,76,0.3); }
.industry-icon { font-size: 2rem; margin-bottom: var(--sp-3); }
.industry-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.blog-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--tr-md);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.blog-thumb {
  height: 200px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-cat { position: absolute; top: var(--sp-3); left: var(--sp-3); background: var(--navy); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: var(--r-full); }
.blog-body { padding: var(--sp-6); }
.blog-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: var(--sp-3); line-height: 1.4; }
.blog-body p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; margin-bottom: var(--sp-4); }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-3); }

/* ── SPEC GRID ───────────────────────────────────────────── */
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.spec-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-6);
  display: flex; align-items: flex-start; gap: var(--sp-3);
}
.spec-item svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.spec-item p { font-size: 0.88rem; color: var(--text-2); }
.spec-item strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 2px; }

/* ── CONTACT INFO ────────────────────────────────────────── */
.contact-info-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  box-shadow: var(--sh-sm);
  margin-bottom: var(--sp-4);
}
.contact-info-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--text-2); }
.contact-info-card a:hover { color: var(--blue); }

/* ── SECTION BACKGROUNDS ─────────────────────────────────── */
.bg-white { background: #FFFFFF; }
.bg-light { background: var(--bg); }
.bg-navy  { background: var(--navy); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.75)} }
@keyframes float-up  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

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

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; } /* hide product cards on mobile */
  .hero-subtitle { max-width: 100%; }

  .page-hero-grid { grid-template-columns: 1fr; }
  .sticky-form { position: static; }

  .grid-2 { grid-template-columns: 1fr; gap: var(--sp-6); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .spec-grid { grid-template-columns: 1fr; }

  .cta-btns { flex-direction: column; align-items: center; }
  .section { padding: var(--sp-16) 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 var(--sp-4); }
  .section { padding: var(--sp-12) 0; }
  .hero { padding: var(--sp-12) 0; }
  .hero-title { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; max-width: 340px; justify-content: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .wa-float { bottom: 1.5rem; right: 1rem; width: 48px; height: 48px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ── COOKIE CONSENT BANNER ───────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: #FFFFFF;
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 24px rgba(13,26,54,0.12);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
#cookie-banner.cookie-show { transform: translateY(0); }
#cookie-banner.cookie-hide { transform: translateY(110%); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.cookie-text { flex: 1; min-width: 240px; }
.cookie-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.cookie-desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; margin: 0; }
.cookie-desc a { color: var(--blue); font-weight: 600; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-md);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.cookie-btn-primary:hover { background: var(--navy-light); }
.cookie-btn-outline { background: transparent; color: var(--navy); border-color: var(--border-md); }
.cookie-btn-outline:hover { border-color: var(--navy); background: var(--bg); }
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── FORM VALIDATION & CHAR COUNTER ──────────────────────── */
.form-input.is-invalid, .form-textarea.is-invalid, .form-select.is-invalid {
  border-color: #DC2626 !important;
  background-color: #FEF2F2 !important;
}
.form-error-msg {
  color: #DC2626;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.3rem;
  display: block;
}
.char-counter {
  font-size: 0.72rem;
  color: var(--text-3);
  text-align: right;
  margin-top: 0.25rem;
  font-weight: 500;
}
.char-counter.limit-near { color: var(--amber); }
.char-counter.limit-reached { color: #DC2626; font-weight: 700; }

/* ── ANNOUNCEMENT FLASH POPUP ────────────────────────────── */
#announcement-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(13, 26, 54, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#announcement-overlay.show { opacity: 1; visibility: visible; }
.announcement-card {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
#announcement-overlay.show .announcement-card { transform: scale(1); }
.announcement-badge {
  display: inline-block;
  background: #FFFBEB;
  color: var(--amber);
  border: 1px solid #FDE68A;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.announcement-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.announcement-msg {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.announcement-close-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-2);
  transition: background 0.2s;
}
.announcement-close-icon:hover { background: #E2E8F0; color: var(--navy); }

/* ── LIVE AI CHAT WIDGET ──────────────────────────────────── */
#chat-widget-button {
  position: fixed;
  bottom: 1.5rem;
  right: 5.5rem; /* Next to WhatsApp float button */
  z-index: 9999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E5FBF, #0D1A36);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 6px 20px rgba(30, 95, 191, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#chat-widget-button:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(30, 95, 191, 0.5);
}
#chat-widget-button .chat-unread-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 12px; height: 12px;
  background: #16A34A;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

#chat-window {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 99999;
  width: 370px;
  max-width: calc(100vw - 2rem);
  height: 520px;
  max-height: calc(100vh - 7rem);
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(13, 26, 54, 0.22);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#chat-window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}
.chat-header {
  background: linear-gradient(135deg, #0D1A36 0%, #1E2F50 100%);
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.chat-header-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; font-weight: 700; }
.chat-header-status { font-size: 0.72rem; color: #4ADE80; display: flex; align-items: center; gap: 0.3rem; }
.chat-header-status::before { content: ''; width: 6px; height: 6px; background: #4ADE80; border-radius: 50%; display: inline-block; }
.chat-close-btn {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.2rem; cursor: pointer; padding: 0.2rem;
  transition: color 0.2s;
}
.chat-close-btn:hover { color: #FFFFFF; }

.chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #F8FAFC;
}
.chat-msg {
  max-width: 82%;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.5;
  word-wrap: break-word;
}
.chat-msg.bot {
  background: #FFFFFF;
  color: var(--navy);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.chat-msg.user {
  background: var(--navy);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}
.chat-msg.agent {
  background: #EFF6FF;
  color: #1E5FBF;
  align-self: flex-start;
  border: 1px solid #BFDBFE;
  border-bottom-left-radius: 2px;
}
.chat-quick-options {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.4rem;
}
.chat-opt-btn {
  background: #F1F5F9; border: 1px solid #CBD5E1; color: var(--navy);
  font-size: 0.75rem; padding: 0.35rem 0.7rem; border-radius: 99px;
  cursor: pointer; font-weight: 600; font-family: var(--font-body);
  transition: all 0.15s;
}
.chat-opt-btn:hover { background: var(--navy); color: #FFF; border-color: var(--navy); }

.chat-input-area {
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.chat-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 0.55rem 0.9rem;
  font-size: 0.84rem;
  outline: none;
  font-family: var(--font-body);
}
.chat-input:focus { border-color: var(--blue); }
.chat-send-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.chat-send-btn:hover { background: var(--blue); }

@media (max-width: 640px) {
  #chat-widget-button { right: 4.5rem; bottom: 1rem; width: 48px; height: 48px; }
  #chat-window { right: 0.75rem; bottom: 4.5rem; left: 0.75rem; width: auto; height: 460px; }
}

/* ── CHAT FORM INPUT CARD ─────────────────────────────────── */
.chat-form-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(13, 26, 54, 0.06);
  margin-top: 0.5rem;
}
.chat-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.chat-form-desc {
  font-size: 0.75rem;
  color: var(--text-2);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.chat-field-group { margin-bottom: 0.75rem; }
.chat-field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.chat-field-input, .chat-field-select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  outline: none;
  background: #FFFFFF;
  box-sizing: border-box;
}
.chat-field-input:focus, .chat-field-select:focus {
  border-color: var(--blue);
}
.chat-form-submit {
  width: 100%;
  padding: 0.65rem;
  background: var(--navy);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.chat-form-submit:hover {
  background: var(--blue);
}
