/* ================================================================
   Corporate Secretarial India — Main Stylesheet
   Stack: CSS3 + CSS Variables + Glassmorphism + Animations
   ================================================================ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  /* Brand */
  --primary:         #426baa;
  --primary-dark:    #355a92;
  --primary-light:   #6b94d4;
  --primary-lighter: #c5d9f0;
  --primary-pale:    #eef4fc;
  --secondary:       #00005d;
  --secondary-light: #0a0a80;

  /* Backgrounds */
  --bg:              #f1f7fd;
  --bg-alt:          #e8f1fb;
  --bg-card:         rgba(255,255,255,0.92);
  --bg-glass:        rgba(255,255,255,0.72);

  /* Text */
  --text-dark:       #0d1b38;
  --text-medium:     #2d3f66;
  --text-body:       #4a5a7a;
  --text-light:      #7a8baa;
  --text-muted:      #a0aec0;
  --white:           #ffffff;

  /* Status */
  --success:         #22c55e;
  --warning:         #f59e0b;
  --error:           #ef4444;
  --info:            #3b82f6;

  /* Borders & Shadows */
  --border:          rgba(66,107,170,0.14);
  --border-light:    rgba(66,107,170,0.08);
  --shadow-xs:       0 1px 4px rgba(66,107,170,0.06);
  --shadow-sm:       0 2px 12px rgba(66,107,170,0.10);
  --shadow-md:       0 8px 28px rgba(66,107,170,0.14);
  --shadow-lg:       0 16px 48px rgba(66,107,170,0.18);
  --shadow-xl:       0 24px 72px rgba(66,107,170,0.22);

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast:   0.18s cubic-bezier(0.4,0,0.2,1);
  --t-base:   0.30s cubic-bezier(0.4,0,0.2,1);
  --t-slow:   0.50s cubic-bezier(0.4,0,0.2,1);
  --t-spring: 0.40s cubic-bezier(0.34,1.56,0.64,1);

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Inter', system-ui, sans-serif;

  /* Layout */
  --nav-h:     78px;
  --container: 1240px;
  --gutter:    clamp(16px, 5vw, 32px);
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--t-base); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
svg { display: block; }

/* scroll progress bar removed */

/* ── Container ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Section Common ───────────────────────────────────────────── */
section { position: relative; overflow: hidden; }

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--primary-lighter);
  margin-bottom: 16px;
}
.section-badge.light {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.3);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-body);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.8;
}

/* ── Reveal Animations ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Navbar ───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background var(--t-base), backdrop-filter var(--t-base);
  z-index: -1;
}
.navbar.scrolled::before {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 2px 24px rgba(66,107,170,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand { display: flex; align-items: center; }
.nav-logo  { height: 60px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  /* Dark on light hero and scrolled state */
  color: var(--text-medium);
  border-radius: var(--r-sm);
  transition: var(--t-base);
  white-space: nowrap;
}
.navbar.scrolled .nav-link { color: var(--text-medium); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: var(--r-full);
  transform: scaleX(0);
  transition: transform var(--t-spring);
  transform-origin: left;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link:hover { color: var(--primary); background: var(--primary-pale); }

.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(66,107,170,0.35);
  transition: var(--t-base);
}
.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(66,107,170,0.45);
}
.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  gap: 5px;
  transition: var(--t-base);
  background: var(--primary-pale);
  border: 1px solid var(--border);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: var(--r-full);
  transition: var(--t-spring);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Full-Screen Menu ──────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  /* Above navbar (1000) so menu covers the header completely — prevents items going under sticky bar */
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,29,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mobile-menu {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(380px, 88vw);
  background: linear-gradient(160deg, #0d1b38 0%, #00005d 60%, #1a3a7a 100%);
  display: flex;
  flex-direction: column;
  padding: 28px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
}
.mobile-overlay.open .mobile-menu { transform: translateX(0); }

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-menu-logo { height: 45px; width: auto; background: white; border-radius: 5px; }

.mobile-close {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: var(--t-base);
}
.mobile-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.mobile-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.mobile-link {
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--r-md);
  transition: var(--t-base);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.3s ease, transform 0.3s ease, background var(--t-fast), color var(--t-fast);
}
.mobile-overlay.open .mobile-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-overlay.open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-overlay.open .mobile-link:nth-child(2) { transition-delay: 0.12s; }
.mobile-overlay.open .mobile-link:nth-child(3) { transition-delay: 0.16s; }
.mobile-overlay.open .mobile-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-overlay.open .mobile-link:nth-child(5) { transition-delay: 0.24s; }
.mobile-overlay.open .mobile-link:nth-child(6) { transition-delay: 0.28s; }

.mobile-link i { width: 18px; color: var(--primary-light); }
.mobile-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-link.mobile-cta {
  margin-top: 16px;
  background: var(--primary);
  color: #fff;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(66,107,170,0.5);
}
.mobile-link.mobile-cta:hover { background: var(--primary-dark); }

.mobile-contact-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}
.mobile-contact-item i {
  color: var(--primary-light);
  width: 16px;
  flex-shrink: 0;
}
.mobile-contact-item a { color: inherit; }
.mobile-contact-item a:hover { color: #fff; }

/* ── Hero Section ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  /* Lighter, airy gradient — professional sky-to-blue */
  background: linear-gradient(150deg, #ddeeff 0%, #cce0f8 25%, #b8d4f4 55%, #a8c8f0 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  animation: blobFloat 12s ease-in-out infinite;
}
.hero-blob.b1 {
  width: clamp(280px, 40vw, 600px);
  height: clamp(280px, 40vw, 600px);
  background: #92bfe8;
  top: -10%; right: -8%;
  animation-duration: 14s;
}
.hero-blob.b2 {
  width: clamp(200px, 28vw, 420px);
  height: clamp(200px, 28vw, 420px);
  background: #7aaee0;
  bottom: 5%; left: -5%;
  animation-duration: 10s;
  animation-delay: -4s;
}
.hero-blob.b3 {
  width: clamp(150px, 20vw, 320px);
  height: clamp(150px, 20vw, 320px);
  background: #a8cef0;
  top: 40%; left: 30%;
  animation-duration: 16s;
  animation-delay: -8s;
  opacity: 0.18;
}

@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(20px,-30px) scale(1.06); }
  66%      { transform: translate(-15px,20px) scale(0.96); }
}

/* Particle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(66,107,170,0.15) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 80px);
}

/* ─ Hero Left Content ─ */
.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(66,107,170,0.12);
  border: 1px solid rgba(66,107,170,0.22);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeSlideDown 0.8s ease both;
}
.hero-badge i { color: var(--primary); }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeSlideDown 0.8s 0.1s ease both;
}

.hero-desc {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeSlideDown 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
  animation: fadeSlideDown 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-full);
  box-shadow: 0 8px 28px rgba(66,107,170,0.35);
  transition: var(--t-spring);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(66,107,170,0.45);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: rgba(255,255,255,0.55);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(66,107,170,0.35);
  border-radius: var(--r-full);
  transition: var(--t-spring);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(66,107,170,0.18);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  animation: fadeSlideDown 0.8s 0.4s ease both;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
}
.hero-trust i { color: #16a34a; font-size: 13px; }

/* ─ Hero Dashboard ─ */
.hero-dash-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideUp 0.9s 0.3s ease both;
}

.hero-dashboard {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(66,107,170,0.2);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: var(--r-xl);
  padding: 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(66,107,170,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  z-index: 2;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dash-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
}
.dash-title i { color: var(--primary); font-size: 14px; }

.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(66,107,170,0.08);
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(66,107,170,0.15);
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: livePulse 2s ease infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%      { opacity: 0.8; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* Health Score Row */
.dash-health {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--r-md);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(66,107,170,0.15);
}

.dash-chart-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.dash-ring { transform: rotate(-90deg); }
.dash-ring-bg  { fill: none; stroke: rgba(66,107,170,0.15); stroke-width: 5; }
.dash-ring-fill {
  fill: none;
  stroke: url(#healthGrad);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 188.5;
  stroke-dashoffset: 188.5;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1);
}
.dash-chart-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
}

.dash-health-info { flex: 1; }
.dash-health-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.dash-health-grade {
  font-size: 16px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 8px;
}

.dash-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-body);
  margin-top: 4px;
}
.dash-metric strong { color: var(--text-dark); margin-left: auto; }
.dot-g { width: 6px; height: 6px; border-radius: 50%; background: var(--success); flex-shrink: 0; }
.dot-a { width: 6px; height: 6px; border-radius: 50%; background: var(--warning); flex-shrink: 0; }

/* Stats Row */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.dash-stat {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(66,107,170,0.15);
  border-radius: var(--r-md);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.dash-stat-icon {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.ic-blue  { background: rgba(59,130,246,0.12);  color: #2563eb; }
.ic-amber { background: rgba(245,158,11,0.12);  color: #d97706; }
.ic-green { background: rgba(34,197,94,0.12);   color: #16a34a; }

.dash-stat-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.dash-stat-val span { font-size: 12px; }
.dash-stat-lbl { font-size: 10px; color: var(--text-muted); font-weight: 500; }

/* Filing Tracker */
.dash-tracker {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(66,107,170,0.15);
  border-radius: var(--r-md);
  padding: 14px;
  margin-bottom: 14px;
}
.dash-tracker-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.dash-tracker-head span { font-size: 12px; font-weight: 600; color: var(--text-dark); }
.dash-tracker-fy {
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(66,107,170,0.08);
  padding: 3px 8px;
  border-radius: var(--r-full);
}

.tracker-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.tracker-row:last-child { margin-bottom: 0; }
.tracker-name {
  font-size: 10px;
  color: var(--text-body);
  width: 120px;
  flex-shrink: 0;
}
.tracker-bar {
  flex: 1;
  height: 5px;
  background: rgba(66,107,170,0.12);
  border-radius: var(--r-full);
  overflow: hidden;
}
.tracker-bar-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--primary-light), #6ee7a0);
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
  width: 0;
}
.tracker-tag {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.tag-done    { background: rgba(34,197,94,0.12);  color: #166534; }
.tag-pending { background: rgba(245,158,11,0.12); color: #92400e; }

/* Alerts */
.dash-alerts { display: flex; flex-direction: column; gap: 8px; }
.dash-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(66,107,170,0.15);
  border-radius: var(--r-md);
  padding: 10px 12px;
}
.alert-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: rgba(59,130,246,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #2563eb;
  flex-shrink: 0;
}
.alert-icon.fema { background: rgba(245,158,11,0.12); color: #d97706; }
.alert-body { flex: 1; min-width: 0; }
.alert-title { font-size: 11px; font-weight: 600; color: var(--text-dark); }
.alert-sub   { font-size: 10px; color: var(--text-muted); }
.alert-days {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  background: rgba(66,107,170,0.1);
  color: var(--primary);
  flex-shrink: 0;
}
.alert-days.urgent { background: rgba(239,68,68,0.12); color: #dc2626; }

/* Floating Cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(66,107,170,0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  white-space: nowrap;
}
.float-card-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.fc-green { background: rgba(34,197,94,0.12);  color: #16a34a; }
.fc-blue  { background: rgba(59,130,246,0.12); color: #2563eb; }
.fc-amber { background: rgba(245,158,11,0.12); color: #d97706; }

.float-card-title { font-size: 12px; font-weight: 600; color: var(--secondary); }
.float-card-sub   { font-size: 10px; color: var(--text-muted); }

.float-1 { top: -16px; right: -20px; animation: floatY 4s ease-in-out infinite; }
.float-2 { bottom: 80px; left: -28px; animation: floatY 5s ease-in-out infinite 1.5s; }
.float-3 { bottom: -16px; right: 30px; animation: floatY 4.5s ease-in-out infinite 0.8s; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* scroll hint removed */

/* ── Keyframes ────────────────────────────────────────────────── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Entity Section ───────────────────────────────────────────── */
.entity-section {
  padding: clamp(64px,8vw,120px) 0;
  background: var(--white);
}

.entity-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
  background: var(--bg);
  border: 2px solid var(--border);
  transition: var(--t-spring);
}
.tab-btn i { font-size: 14px; }
.tab-btn:hover,
.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(66,107,170,0.35);
  transform: translateY(-2px);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.entity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px;
}

.entity-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: var(--t-spring);
  position: relative;
  overflow: hidden;
}
.entity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-spring);
}
.entity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: var(--primary-lighter);
}
.entity-card:hover::before { transform: scaleX(1); }

.entity-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--t-spring);
}
.entity-card:hover .entity-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.entity-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.entity-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; }

.entity-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 4px 12px;
  border-radius: var(--r-full);
}

/* ── Services Section ─────────────────────────────────────────── */
.services-section {
  padding: clamp(64px,8vw,120px) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px,1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 30px 30px;
  overflow: hidden;
  transition: var(--t-spring);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--primary-lighter);
}

/* Animated border glow */
.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, transparent 40%, var(--primary-lighter) 70%, transparent);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
  z-index: 0;
}
.service-card:hover::after { opacity: 1; }

.service-card > * { position: relative; z-index: 1; }

.service-num {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 52px;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--primary-pale);
  line-height: 1;
  transition: var(--t-base);
}
.service-card:hover .service-num { color: var(--primary-lighter); }

.service-icon-box {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary-pale), var(--bg));
  border: 1px solid var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--t-spring);
}
.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: var(--primary);
  transform: rotate(-8deg) scale(1.08);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-pale);
  border: 1px solid var(--primary-lighter);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.service-tag i { font-size: 9px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--t-base);
}
.service-link i { transition: transform var(--t-spring); }
.service-link:hover { color: var(--primary-dark); }
.service-link:hover i { transform: translateX(5px); }

/* ── Advantage Section ────────────────────────────────────────── */
.advantage-section {
  padding: clamp(64px,8vw,120px) 0;
  background: var(--white);
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
.advantage-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
}
.adv-full { grid-column: 1 / -1; }

.chart-heading {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

/* Bar Chart */
.bar-chart { display: flex; flex-direction: column; gap: 18px; }
.bar-row { display: flex; flex-direction: column; gap: 6px; }
.bar-label { font-size: 13px; font-weight: 500; color: var(--text-medium); }
.bar-track {
  height: 12px;
  background: var(--bg-alt);
  border-radius: var(--r-full);
  overflow: visible;
  position: relative;
}
.bar-fill {
  height: 100%;
  border-radius: var(--r-full);
  position: relative;
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
  width: 0;
}
.bar-val {
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.bar-without { background: linear-gradient(90deg, #ef4444, #f87171); }
.bar-industry { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.bar-with    { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }

/* Circular Charts Grid */
.circles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.circle-metric { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.circle-wrap {
  position: relative;
  width: 90px; height: 90px;
}
.circ-svg { transform: rotate(-90deg); width: 90px; height: 90px; }
.circ-bg {
  fill: none;
  stroke: var(--bg-alt);
  stroke-width: 7;
}
.circ-fill {
  fill: none;
  stroke: url(#circGrad);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 213.6;
  stroke-dashoffset: 213.6;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1);
}
.circ-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.circ-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-medium);
  text-align: center;
}

/* Trust Badges */
.trust-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--t-base);
}
.trust-badge-item:hover {
  background: var(--primary-pale);
  border-color: var(--primary-lighter);
  color: var(--primary);
  transform: translateY(-2px);
}
.trust-badge-item i { color: var(--primary); font-size: 13px; }

/* ── Comparison Section ───────────────────────────────────────── */
.comparison-section {
  padding: clamp(64px,8vw,120px) 0;
  background: var(--bg);
}

.comp-table-scroll {
  overflow-x: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.comp-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.comp-table thead tr th {
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  background: var(--bg);
  color: var(--text-medium);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.comp-table thead tr th.feat-col {
  text-align: left;
  color: var(--text-dark);
}
.comp-table thead tr th.highlight {
  background: var(--primary);
  color: var(--white);
  position: relative;
}
.col-star {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.col-star i { font-size: 11px; }

.comp-table tbody tr {
  transition: background var(--t-fast);
}
.comp-table tbody tr:hover { background: var(--primary-pale); }
.comp-table tbody td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  vertical-align: middle;
}
.comp-table tbody td.feat-col {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 13px;
}
.comp-table tbody td.highlight {
  background: rgba(66,107,170,0.04);
}
.comp-table tbody tr:last-child td { border-bottom: none; }

.comp-cell {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.cell-yes { background: rgba(34,197,94,0.12);  color: #16a34a; }
.cell-no  { background: rgba(239,68,68,0.10);  color: #dc2626; }
.cell-mid { background: rgba(245,158,11,0.12); color: #d97706; }
.cell-na  { background: var(--bg); color: var(--text-muted); }

/* ── Testimonials Section ─────────────────────────────────────── */
.testimonials-section {
  padding: clamp(64px,8vw,120px) 0;
  background: var(--white);
  overflow: hidden;
}

.testi-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--primary-lighter);
}
.testi-track {
  display: flex;
  /* Each card is exactly one slider-width wide; JS moves by px */
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
  flex: 0 0 100%;
  min-width: 100%;          /* ensures each card = slider width */
  padding: 44px 48px;
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--bg) 100%);
  position: relative;
  box-sizing: border-box;
  transition: box-shadow var(--t-spring);
}
.testi-card:hover { box-shadow: var(--shadow-md); }

.testi-quote-icon {
  position: absolute;
  top: 24px; left: 40px;
  font-size: 48px;
  color: var(--primary-lighter);
  line-height: 1;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  padding-top: 8px;
}
.testi-stars i { color: #fbbf24; font-size: 14px; }

.testi-text {
  font-size: clamp(14px,1.3vw,17px);
  color: var(--text-medium);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
}
.testi-role { font-size: 13px; color: var(--text-light); }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-spring);
  box-shadow: var(--shadow-sm);
}
.testi-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(66,107,170,0.35);
}

.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary-lighter);
  cursor: pointer;
  transition: var(--t-spring);
}
.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--r-full);
}

/* ── FAQ Section ──────────────────────────────────────────────── */
.faq-section {
  padding: clamp(64px,8vw,120px) 0;
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 840px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-base);
}
.faq-item:hover { border-color: var(--primary-lighter); box-shadow: var(--shadow-sm); }
.faq-item.open  { border-color: var(--primary); box-shadow: var(--shadow-md); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  flex: 1;
}
.faq-icon {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: var(--t-spring);
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

/* ── CTA / Contact Section ────────────────────────────────────── */
.cta-section {
  padding: clamp(72px,9vw,128px) 0;
  background: linear-gradient(150deg, #ddeeff 0%, var(--bg) 45%, #e8f3ff 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(66,107,170,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ─ CTA Left ─ */
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(26px,3vw,42px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta-desc {
  font-size: clamp(14px,1.3vw,16px);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 36px;
}

.cta-highlights { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.cta-hl {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cta-hl-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--primary-pale);
  border: 1px solid var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--primary);
  flex-shrink: 0;
}
.cta-hl strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.cta-hl span { font-size: 13px; color: var(--text-light); }

.cta-contacts { display: flex; flex-direction: column; gap: 14px; }
.cta-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-body);
  font-size: 14px;
  transition: var(--t-base);
}
.cta-contact:hover { color: var(--primary-dark); }
.cta-contact-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--primary-pale);
  border: 1px solid var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
  flex-shrink: 0;
}
.cta-contact small { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.cta-contact strong { color: var(--text-dark); display: block; }

/* ─ Contact Form ─ */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(28px,4vw,44px);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.form-card-head { margin-bottom: 28px; }
.form-card-head h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-card-head p { font-size: 14px; color: var(--text-light); }

.honey-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 6px;
}
.req { color: var(--error); margin-left: 2px; }
.input-box {
  position: relative;
  display: flex;
  align-items: center;
}
.input-ico {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
  transition: color var(--t-base);
}
.input-ico.top-ico { top: 14px; align-self: flex-start; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  outline: none;
  transition: var(--t-base);
  appearance: none;
  -webkit-appearance: none;
}
.form-group textarea { resize: vertical; min-height: 110px; padding-top: 12px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(66,107,170,0.12);
}
/* :focus-within works because icon is a PRECEDING sibling */
.input-box:focus-within .input-ico { color: var(--primary); }

/* Field invalid state (also applied via JS) */
.field-invalid { border-color: var(--error) !important; background: #fff5f5 !important; }
.field-invalid:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important; }

.select-wrap { position: relative; }
.select-arrow {
  position: absolute;
  right: 14px;
  color: var(--text-muted);
  pointer-events: none;
  font-size: 12px;
}

.field-err {
  display: block;
  font-size: 12px;
  color: var(--error);
  margin-top: 5px;
  min-height: 16px;
}

.form-submit {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--t-spring);
  box-shadow: 0 8px 24px rgba(66,107,170,0.4);
  margin-top: 8px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(66,107,170,0.5);
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-light));
}
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }

/* Button loading states */
.btn-text    { display: inline-flex; align-items: center; gap: 10px; }
.btn-spinner { display: none; align-items: center; gap: 8px; }
.btn-spinner.active { display: inline-flex; }

.fa-spin { animation: spin 0.85s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Toast Notifications ──────────────────────────────────────── */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: min(480px, 92vw);
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  pointer-events: all;
  transform: translateY(20px);
  opacity: 0;
  animation: toastIn 0.4s var(--t-spring) forwards, toastOut 0.4s 4.5s ease forwards;
  width: 100%;
}
.toast-success { background: #fff; color: #15803d; border-left: 4px solid var(--success); }
.toast-error   { background: #fff; color: #dc2626; border-left: 4px solid var(--error);   }
.toast i { font-size: 18px; }
@keyframes toastIn  { to { transform: translateY(0); opacity: 1; } }
@keyframes toastOut { to { transform: translateY(-10px); opacity: 0; } }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(160deg, #05112a 0%, var(--secondary) 50%, #0d2054 100%);
  color: rgba(255,255,255,0.7);
}

.footer-top { padding: clamp(48px,7vw,96px) 0 clamp(36px,5vw,64px); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(28px,4vw,56px);
}

.footer-logo-img { height: 67px; width: auto; margin-bottom: 16px; background: #fff;border-radius: 4px; padding: 2px; }
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--t-spring);
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--t-base);
}
.footer-links a i { font-size: 10px; color: var(--primary-light); }
.footer-links a:hover { color: #fff; transform: translateX(4px); }

.footer-contacts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-row i { color: var(--primary-light); font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a { color: inherit; }
.footer-contact-row a:hover { color: #fff; }

.footer-trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.footer-trust-badge i { font-size: 10px; color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  max-width: 560px;
  text-align: center;
  line-height: 1.6;
}
.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-legal a { transition: var(--t-base); }
.footer-legal a:hover { color: #fff; }
.footer-legal span { opacity: 0.3; }

/* ── WhatsApp Float ───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
}
.wa-btn {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--t-spring);
  flex-shrink: 0;
}
.wa-btn:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease infinite;
}
@keyframes waPulse {
  0%  { transform: scale(1); opacity: 1; }
  100%{ transform: scale(1.5); opacity: 0; }
}
.wa-tooltip {
  background: var(--text-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--t-base);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── Back to Top ──────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 990;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: var(--t-spring);
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Progress ring on back-to-top */
.progress-ring-svg {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  transform: rotate(-90deg);
  pointer-events: none;
}
.ring-bg   { fill: none; stroke: var(--bg-alt); stroke-width: 3; }
.ring-prog {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

/* mouse-glow removed */

/* ── Magnetic Button ──────────────────────────────────────────── */
.magnetic { position: relative; }

/* ── SVG Gradient Definitions (hidden) ───────────────────────── */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ── Wave Dividers ────────────────────────────────────────────── */
.wave-top, .wave-bottom {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}
.wave-top    { top: -1px; }
.wave-bottom { bottom: -1px; }
.wave-top    svg, .wave-bottom svg { width: 100%; display: block; }

/* ── Skeleton shimmer (for images/chart loading feel) ─────────── */
@keyframes shimmer {
  from { background-position: -400px 0; }
  to   { background-position:  400px 0; }
}
.shimmer {
  background: linear-gradient(90deg, var(--bg) 25%, var(--bg-alt) 50%, var(--bg) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
}

/* ── Utilities ────────────────────────────────────────────────── */
.text-grad {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet / Laptop (≤ 1024px) ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content   { max-width: 100%; }
  .hero-actions   { justify-content: center; }
  .hero-trust     { justify-content: center; }
  .hero-badge     { margin-inline: auto; }

  .hero-dash-wrapper {
    max-width: 520px;
    margin-inline: auto;
  }

  .float-1 { top: -12px; right: -8px; }
  .float-2 { display: none; }
  .float-3 { bottom: -12px; right: 16px; font-size: 12px; }

  .advantage-grid { grid-template-columns: 1fr; }
  .adv-full { grid-column: 1; }

  .circles-grid { grid-template-columns: repeat(4, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-disclaimer { text-align: left; }



  .cta-grid { grid-template-columns: 1fr; }
  .cta-content { max-width: 100%; }
}

/* ── Small Tablet (≤ 768px) ───────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-container { padding-block: clamp(32px,5vw,56px); }
  .hero-title { font-size: clamp(26px,6vw,40px); }

  .hero-dashboard { padding: 18px; }
  .float-1,.float-2,.float-3 { display: none; }

  .entity-tabs { gap: 8px; }
  .tab-btn { padding: 10px 20px; font-size: 13px; }

  .entity-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .circles-grid { grid-template-columns: repeat(2, 1fr); }

  .comp-table-scroll { border-radius: var(--r-md); }

  .testi-card { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }

  .wa-float { bottom: 20px; right: 20px; }
  .back-top { right: 20px; bottom: 86px; }

  .cta-grid { gap: clamp(28px,5vw,48px); }
}

/* ── Mobile (≤ 480px) ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(24px,7vw,34px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .hero-dashboard { padding: 14px; }
  .dash-stats { grid-template-columns: repeat(3,1fr); }
  .tracker-name { width: 90px; font-size: 9px; }

  .section-title { font-size: clamp(22px,6vw,32px); }

  .testi-card { padding: 22px 18px; }
  .testi-quote-icon { font-size: 32px; top: 16px; left: 18px; }

  .faq-q-text { font-size: 13px; }

  .form-card { padding: 22px 18px; }

  .wa-float { gap: 6px; }
  .wa-tooltip { display: none; }

  .circles-grid { grid-template-columns: repeat(2,1fr); }

  .footer-socials { justify-content: center; }
}

/* ── Ultra-wide (≥ 1600px) ────────────────────────────────────── */
@media (min-width: 1600px) {
  :root { --container: 1400px; }
  .hero-title { font-size: 56px; }
  .section-title { font-size: 48px; }
}

/* ── Print ────────────────────────────────────────────────────── */
@media print {
  .navbar, .wa-float, .back-top, .hamburger, .mobile-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ── Reduced Motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
