/* ══════════════════════════════════════════════════════════════
   WeighbridgeSetu Marketing Site — style.css
   Brand: Purple #863bff · Cyan #47bfff · Lavender #ede6ff
   ══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #e0e0f0;
  background: #0d0d1a;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --primary: #863bff;
  --primary-dark: #7e14ff;
  --primary-glow: rgba(134,59,255,.35);
  --cyan: #47bfff;
  --cyan-glow: rgba(71,191,255,.25);
  --lavender: #ede6ff;
  --bg-dark: #0d0d1a;
  --bg-darker: #080812;
  --bg-card: rgba(255,255,255,.04);
  --bg-glass: rgba(255,255,255,.06);
  --border-glass: rgba(255,255,255,.1);
  --text-heading: #ffffff;
  --text-body: #b0b4cc;
  --text-muted: #6a6e85;
  --text-dark: #1a1a2e;
  --white: #ffffff;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --container: 1200px;
  --nav-h: 72px;
}

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Typography ───────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; color: var(--text-heading); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text-heading); }
h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-heading); }
h4 { font-size: 1rem; font-weight: 600; color: var(--text-heading); }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(134,59,255,.12); border: 1px solid rgba(134,59,255,.25);
  padding: 6px 16px; border-radius: 100px; font-size: .8rem; font-weight: 600;
  color: var(--primary); margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px;
}
.section-subtitle { font-size: 1.1rem; color: var(--text-body); max-width: 640px; margin: 12px auto 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px; font-size: .95rem; font-weight: 600;
  transition: all .3s ease; letter-spacing: .2px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; box-shadow: 0 4px 24px var(--primary-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--primary-glow); }
.btn-outline {
  background: transparent; color: var(--cyan);
  border: 2px solid rgba(71,191,255,.4);
}
.btn-outline:hover { background: rgba(71,191,255,.08); border-color: var(--cyan); }
.btn-sm { padding: 10px 24px; font-size: .85rem; }

/* ══════════════════════════════════════════════════════════════
   1. NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; height: var(--nav-h);
  display: flex; align-items: center;
  transition: all .35s ease;
}
.navbar.scrolled {
  background: rgba(13,13,26,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg, .nav-logo img { width: 36px; height: 34px; }
.nav-logo span { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: -.5px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.7);
  transition: color .2s; position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.menu-toggle { display: none; background: none; padding: 8px; color: #fff; }
.menu-toggle svg { width: 28px; height: 28px; }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(8,8,18,.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.3rem; font-weight: 600; color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   2. HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #1a0a3e 0%, #0d0d2b 50%, #08081a 100%);
  position: relative; overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute; border-radius: 50%; opacity: .08;
  background: var(--primary); filter: blur(40px);
}
.hero-shape:nth-child(1) { width: 500px; height: 500px; top: -100px; right: -100px; animation: heroFloat 8s ease-in-out infinite; }
.hero-shape:nth-child(2) { width: 350px; height: 350px; bottom: -50px; left: -80px; animation: heroFloat 10s ease-in-out infinite reverse; background: var(--cyan); }
.hero-shape:nth-child(3) { width: 200px; height: 200px; top: 40%; left: 50%; animation: heroFloat 6s ease-in-out infinite 1s; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-inner {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(134,59,255,.15); border: 1px solid rgba(134,59,255,.3);
  padding: 8px 20px; border-radius: 100px; font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.85); margin-bottom: 24px;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--cyan); }
.hero-sub { font-size: 1.15rem; color: var(--text-body); margin-bottom: 36px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}

/* ── Weighbridge Scene ────────────────────────────────── */
.wb-scene {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 420px;
  margin: 0 auto;
}

/* Platform */
.wb-platform {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
}
.wb-platform-surface {
  height: 14px;
  background: linear-gradient(180deg, #4a4a7a, #3a3a5c);
  border-radius: 4px 4px 0 0;
  border: 1px solid #5a5a8a;
  border-bottom: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 20px;
  overflow: hidden;
}
.wb-platform-stripe {
  width: 40px;
  height: 2px;
  background: rgba(134,59,255,.4);
  border-radius: 1px;
}
.wb-platform-base {
  height: 18px;
  background: linear-gradient(180deg, #2a2a48, #1a1a2e);
  border-radius: 0 0 6px 6px;
  border: 1px solid #3a3a5c;
  border-top: 2px solid #5a5a8a;
}
.wb-scale-lights {
  position: absolute;
  bottom: -8px;
  right: 12px;
  display: flex;
  gap: 5px;
}
.wb-light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a3a5c;
}
.wb-light-active {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,.6);
  animation: wb-blink 2s ease-in-out infinite;
}
.wb-light-active:nth-child(2) {
  animation-delay: .5s;
}

@keyframes wb-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* Truck */
.wb-truck {
  position: absolute;
  bottom: 78px;
  left: 50%;
  transform: translateX(-52%);
  width: 280px;
  animation: wb-truck-settle 3s ease-out forwards;
}
.wb-truck-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

@keyframes wb-truck-settle {
  0% { transform: translateX(-52%) translateY(-30px); opacity: 0; }
  40% { transform: translateX(-52%) translateY(2px); opacity: 1; }
  60% { transform: translateX(-52%) translateY(-3px); }
  80% { transform: translateX(-52%) translateY(1px); }
  100% { transform: translateX(-52%) translateY(0); }
}

/* Cameras */
.wb-camera {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.wb-camera-front {
  left: 8px;
  bottom: 160px;
}
.wb-camera-top {
  right: 30px;
  top: 40px;
}
.wb-camera-body {
  background: rgba(20,20,40,.8);
  border: 1px solid rgba(134,59,255,.4);
  border-radius: 8px;
  padding: 6px;
  position: relative;
  z-index: 2;
  animation: wb-cam-pulse 3s ease-in-out infinite;
}
.wb-camera-body:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(71,191,255,.3);
}

@keyframes wb-cam-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(134,59,255,.2); }
  50% { box-shadow: 0 0 16px rgba(134,59,255,.4); }
}

.wb-camera-label {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8080aa;
  font-weight: 600;
}

/* Camera flash effect */
.wb-camera-flash {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71,191,255,.4) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}
.wb-camera-front .wb-camera-flash {
  top: -10px;
  left: -10px;
  animation: wb-flash 4s ease-in-out infinite;
}
.wb-camera-top .wb-camera-flash {
  top: -10px;
  right: -10px;
  animation: wb-flash 4s ease-in-out 2s infinite;
}

@keyframes wb-flash {
  0%, 85%, 100% { opacity: 0; transform: scale(.5); }
  90% { opacity: 1; transform: scale(1.2); }
  95% { opacity: .3; transform: scale(1); }
}

/* Camera targeting lines (dashed) */
.wb-camera-line {
  position: absolute;
  border-left: 1.5px dashed rgba(71,191,255,.25);
  height: 80px;
  top: 50px;
  left: 50%;
  transform-origin: top;
  transform: rotate(25deg);
  animation: wb-line-glow 4s ease-in-out infinite;
}
.wb-camera-line-top {
  height: 100px;
  transform: rotate(-15deg);
  border-left-color: rgba(134,59,255,.25);
  animation-delay: 2s;
}

@keyframes wb-line-glow {
  0%, 85%, 100% { opacity: .3; }
  90% { opacity: 1; }
}

/* Weight display panel */
.wb-weight-panel {
  position: absolute;
  right: 0;
  bottom: 130px;
  background: rgba(13,13,26,.85);
  border: 1px solid rgba(134,59,255,.3);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  min-width: 170px;
  z-index: 3;
}
.wb-weight-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), transparent, var(--cyan));
  opacity: .2;
  z-index: -1;
}
.wb-wp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.wb-wp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.wb-wp-dot.green {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,.6);
  animation: wb-blink 1.5s ease-in-out infinite;
}
.wb-wp-title {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8080aa;
  font-weight: 600;
}
.wb-weight-panel .hwd-value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.wb-weight-panel .hwd-value span {
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 500;
}
.wb-wp-label {
  font-size: .65rem;
  color: #6a6a8a;
  margin-top: 2px;
}

/* Data flow dots */
.wb-data-flow {
  position: absolute;
  display: flex;
  gap: 6px;
}
.wb-data-flow span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0;
}
.wb-data-flow-1 {
  bottom: 100px;
  left: 60px;
  transform: rotate(-30deg);
}
.wb-data-flow-1 span:nth-child(1) { animation: wb-dot-flow 2s ease-in-out 0s infinite; }
.wb-data-flow-1 span:nth-child(2) { animation: wb-dot-flow 2s ease-in-out .3s infinite; }
.wb-data-flow-1 span:nth-child(3) { animation: wb-dot-flow 2s ease-in-out .6s infinite; }

.wb-data-flow-2 {
  right: 80px;
  top: 140px;
  transform: rotate(60deg);
}
.wb-data-flow-2 span:nth-child(1) { animation: wb-dot-flow 2s ease-in-out 1s infinite; }
.wb-data-flow-2 span:nth-child(2) { animation: wb-dot-flow 2s ease-in-out 1.3s infinite; }
.wb-data-flow-2 span:nth-child(3) { animation: wb-dot-flow 2s ease-in-out 1.6s infinite; }

@keyframes wb-dot-flow {
  0%, 100% { opacity: 0; transform: translateX(0); }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translateX(20px); }
}

/* Status badges */
.wb-status-badges {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  white-space: nowrap;
}
.wb-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #a0a0c0;
}
.wb-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.wb-badge-green .wb-badge-dot {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,.5);
}
.wb-badge-blue .wb-badge-dot {
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan-glow);
  animation: wb-blink 1.5s ease-in-out infinite;
}

/* Hero wave divider */
.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ══════════════════════════════════════════════════════════════
   3. STATS BAR
   ══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--lavender) 0%, #f0e8ff 100%);
  padding: 48px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary-dark); }
.stat-label { font-size: .9rem; font-weight: 500; color: #5a4e7a; margin-top: 4px; }

/* ══════════════════════════════════════════════════════════════
   4. PROBLEMS
   ══════════════════════════════════════════════════════════════ */
.problems { background: var(--bg-dark); }
.problems-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}
.problem-card {
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-top: 3px solid var(--primary); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .3s, box-shadow .3s;
  backdrop-filter: blur(8px);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(134,59,255,.15); }
.problem-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(134,59,255,.12); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.problem-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.problem-card h4 { margin-bottom: 8px; font-size: .95rem; }
.problem-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   5. FEATURES
   ══════════════════════════════════════════════════════════════ */
.features { background: var(--white); color: var(--text-dark); }
.features h2, .features h3, .features h4 { color: var(--text-dark); }
.features .section-subtitle { color: #5a5a7a; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: #f8f6ff; border: 1px solid #e8e0f8;
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(134,59,255,.1); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 4px 16px var(--primary-glow);
}
.feature-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin-bottom: 14px; font-size: 1.1rem; }
.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: #4a4a6a; line-height: 1.5;
}
.feature-list li::before {
  content: '';
  min-width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   6. INTEGRATIONS STRIP
   ══════════════════════════════════════════════════════════════ */
.integrations {
  background: linear-gradient(180deg, #f8f6ff 0%, var(--lavender) 100%);
  padding: 64px 0;
}
.integrations h2 { color: var(--text-dark); }
.integrations .section-subtitle { color: #5a5a7a; }
.integration-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  margin-top: 40px;
}
.integration-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 24px; background: var(--white); border: 1px solid #e8e0f8;
  border-radius: var(--radius-sm); min-width: 120px;
  transition: transform .3s, box-shadow .3s;
}
.integration-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(134,59,255,.1); }
.integration-item svg { width: 32px; height: 32px; }
.integration-item span { font-size: .78rem; font-weight: 600; color: var(--text-dark); text-align: center; }

/* ══════════════════════════════════════════════════════════════
   7. WORKFLOW
   ══════════════════════════════════════════════════════════════ */
.workflow { background: var(--white); color: var(--text-dark); }
.workflow h2 { color: var(--text-dark); }
.workflow .section-subtitle { color: #5a5a7a; }
.workflow-timeline {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; margin-top: 56px; position: relative;
}
.workflow-step {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; max-width: 160px; position: relative; text-align: center;
}
.workflow-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px var(--primary-glow);
  position: relative; z-index: 2; transition: transform .3s;
}
.workflow-step:hover .workflow-circle { transform: scale(1.1); }
.workflow-circle svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.workflow-step-num {
  position: absolute; top: -8px; right: -4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan); color: var(--bg-dark);
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.workflow-step h4 { margin-top: 14px; font-size: .85rem; color: var(--text-dark); }
.workflow-step p { font-size: .78rem; color: #6a6a8a; margin-top: 4px; line-height: 1.5; }
/* Connection line */
.workflow-connector {
  flex: 0 0 40px; height: 2px; background: linear-gradient(90deg, var(--primary), var(--cyan));
  margin-top: 32px; border-radius: 2px; opacity: .4;
}

/* ══════════════════════════════════════════════════════════════
   8. PRICING
   ══════════════════════════════════════════════════════════════ */
.pricing {
  background: linear-gradient(135deg, #1a0a3e 0%, var(--bg-dark) 100%);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px; align-items: start;
}
.price-card {
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius); overflow: hidden;
  backdrop-filter: blur(8px); transition: transform .3s;
}
.price-card.featured {
  border-color: var(--primary); transform: scale(1.04);
  box-shadow: 0 8px 40px var(--primary-glow);
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-header {
  padding: 28px 24px; text-align: center;
  background: linear-gradient(135deg, rgba(134,59,255,.15), rgba(71,191,255,.08));
}
.price-card.featured .price-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.price-tier { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cyan); margin-bottom: 8px; }
.price-card.featured .price-tier { color: rgba(255,255,255,.7); }
.price-header h3 { font-size: 1.3rem; }
.price-amount {
  padding: 24px; text-align: center;
  border-bottom: 1px solid var(--border-glass);
}
.price-value { font-size: 2.4rem; font-weight: 800; color: var(--white); }
.price-value .currency { font-size: 1.2rem; font-weight: 500; vertical-align: super; margin-right: 4px; }
.price-period { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }
.price-amc { font-size: .78rem; color: var(--text-body); margin-top: 8px; }
.price-body { padding: 24px; }
.price-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: var(--text-body); margin-bottom: 10px;
}
.price-check { color: var(--success); font-weight: 700; min-width: 18px; }
.price-cross { color: var(--text-muted); min-width: 18px; }
.price-footer { padding: 16px 24px 24px; text-align: center; }

/* ══════════════════════════════════════════════════════════════
   8b. REPORTING & ANALYTICS
   ══════════════════════════════════════════════════════════════ */
.reporting {
  background: linear-gradient(180deg, var(--white) 0%, #f8f5ff 100%);
  color: var(--text-dark);
}
.reporting h2 { color: var(--text-dark); }
.reporting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.report-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(134, 59, 255, .1);
  box-shadow: 0 4px 20px rgba(134, 59, 255, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(134, 59, 255, .12);
}
.report-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.report-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.report-card p {
  font-size: .88rem;
  color: #5a5a7a;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .reporting-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reporting-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   8B. NOTIFICATIONS
   ══════════════════════════════════════════════════════════════ */
.notifications {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #110a24 50%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}
.notifications::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(134,59,255,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.notifications h2 { color: #fff; }
.notifications .section-subtitle { color: #b0b0cc; }

/* Benefits bar */
.notif-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.notif-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(134,59,255,.1);
  border: 1px solid rgba(134,59,255,.2);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: #d0c8f0;
  transition: all .3s ease;
}
.notif-benefit-item:hover {
  background: rgba(134,59,255,.18);
  border-color: rgba(134,59,255,.4);
  transform: translateY(-2px);
}

/* Card grid */
.notif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.notif-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(134,59,255,.15);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.notif-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(134,59,255,.15);
  border-color: rgba(134,59,255,.35);
}
.notif-card-highlight {
  background: rgba(245,158,11,.06);
  border-color: rgba(245,158,11,.25);
  box-shadow: 0 8px 32px rgba(245,158,11,.1);
}
.notif-card-highlight:hover {
  box-shadow: 0 20px 50px rgba(245,158,11,.18);
  border-color: rgba(245,158,11,.4);
}
.notif-card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 14px;
  border-radius: 100px;
}
.notif-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.notif-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.notif-card p {
  font-size: .88rem;
  color: #a0a0c0;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Feature list inside highlighted card */
.notif-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.notif-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: #c0c0dc;
  padding: 4px 0;
}
.notif-feature-list li svg {
  flex-shrink: 0;
}

/* Channel badges */
.notif-channels {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}
.notif-channel {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(134,59,255,.12);
  color: #b0a0d8;
}
.notif-channel.tg { background: rgba(0,136,204,.15); color: #4dc9f6; }
.notif-channel.wa { background: rgba(37,211,102,.12); color: #25d366; }
.notif-channel.em { background: rgba(134,59,255,.12); color: #b090e8; }
.notif-channel.sm { background: rgba(239,68,68,.12); color: #f87171; }

/* Owner callout */
.notif-owner-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(134,59,255,.12) 0%, rgba(71,191,255,.08) 100%);
  border: 1px solid rgba(134,59,255,.2);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}
.notif-callout-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
}
.notif-callout-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.notif-callout-text p {
  font-size: .9rem;
  color: #a8a8c8;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .notif-grid { grid-template-columns: repeat(2, 1fr); }
  .notif-benefits { gap: 16px; }
}
@media (max-width: 640px) {
  .notif-grid { grid-template-columns: 1fr; }
  .notif-benefits { gap: 10px; }
  .notif-benefit-item { padding: 8px 14px; font-size: .82rem; }
  .notif-owner-callout { flex-direction: column; text-align: center; padding: 24px 20px; }
  .notif-callout-icon { margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════════════
   9. FOUNDER
   ══════════════════════════════════════════════════════════════ */
.founder { background: var(--white); color: var(--text-dark); }
.founder h2 { color: var(--text-dark); }
.founder-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 60px;
  margin-top: 48px; align-items: start;
}
.founder-photo-wrap { text-align: center; }
.founder-photo {
  width: 200px; height: 200px; border-radius: 50%;
  object-fit: cover; border: 4px solid var(--primary);
  box-shadow: 0 8px 30px var(--primary-glow); margin: 0 auto;
}
.founder-name { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-top: 20px; }
.founder-title { font-size: .9rem; color: #6a6a8a; margin-top: 4px; }
.founder-company { font-size: .85rem; color: var(--primary); font-weight: 600; margin-top: 4px; }
.founder-stats-row {
  display: flex; justify-content: center; gap: 20px; margin-top: 20px;
}
.founder-stat {
  text-align: center; padding: 10px 16px;
  background: #f8f6ff; border-radius: var(--radius-xs);
}
.founder-stat .num { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); }
.founder-stat .lbl { font-size: .7rem; color: #6a6a8a; text-transform: uppercase; letter-spacing: .5px; }
.founder-bio p { font-size: 1rem; color: #4a4a6a; line-height: 1.8; margin-bottom: 16px; }
.founder-countries {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0;
}
.country-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: #f0edff; border-radius: 100px;
  font-size: .82rem; font-weight: 500; color: #4a4a6a;
}
.expertise-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.exp-tag {
  padding: 6px 14px; background: linear-gradient(135deg, rgba(134,59,255,.08), rgba(71,191,255,.06));
  border: 1px solid rgba(134,59,255,.15); border-radius: 100px;
  font-size: .78rem; font-weight: 500; color: var(--primary-dark);
}
.founder-quote {
  margin-top: 24px; padding: 20px 24px;
  background: linear-gradient(135deg, #f8f4ff, #f0edff);
  border-left: 4px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.founder-quote p { font-style: italic; color: #4a4a6a; margin-bottom: 0; }
.founder-quote cite { display: block; font-size: .82rem; color: var(--primary); font-weight: 600; margin-top: 10px; font-style: normal; }
.founder-linkedin {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 10px 24px; background: #0077b5; color: #fff;
  border-radius: 100px; font-size: .88rem; font-weight: 600;
  transition: background .2s;
}
.founder-linkedin:hover { background: #005e93; }
.founder-linkedin svg { width: 18px; height: 18px; fill: #fff; }

/* ══════════════════════════════════════════════════════════════
   10. TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials {
  background: linear-gradient(135deg, #1a0a3e, var(--bg-dark));
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius); padding: 32px 28px;
  backdrop-filter: blur(8px);
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: .95rem; color: var(--text-body); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: #fff;
}
.testimonial-info .name { font-size: .9rem; font-weight: 600; color: var(--white); }
.testimonial-info .role { font-size: .78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   11. CHATBOT
   ══════════════════════════════════════════════════════════════ */
.chatbot-section { background: var(--white); color: var(--text-dark); }
.chatbot-section h2 { color: var(--text-dark); }
.chatbot-section .section-subtitle { color: #5a5a7a; }
.chatbot-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  margin-top: 48px; align-items: center;
}
.chatbot-features { display: flex; flex-direction: column; gap: 20px; }
.chatbot-feature {
  display: flex; gap: 16px; align-items: flex-start;
}
.chatbot-feature-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(134,59,255,.1), rgba(71,191,255,.08));
  display: flex; align-items: center; justify-content: center;
}
.chatbot-feature-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 2; }
.chatbot-feature h4 { margin-bottom: 4px; color: var(--text-dark); }
.chatbot-feature p { font-size: .88rem; color: #5a5a7a; }
.chat-mockup {
  background: #f8f6ff; border: 1px solid #e8e0f8;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 40px rgba(134,59,255,.1);
}
.chat-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.chat-header-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--success); }
.chat-header span { color: #fff; font-weight: 600; font-size: .9rem; }
.chat-messages { padding: 20px; display: flex; flex-direction: column; gap: 12px; min-height: 240px; }
.chat-msg {
  padding: 12px 16px; border-radius: 14px; max-width: 85%; font-size: .88rem; line-height: 1.5;
}
.chat-msg.bot {
  background: #fff; color: var(--text-dark); border: 1px solid #e8e0f8;
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; align-self: flex-end; border-bottom-right-radius: 4px;
}
.chat-input {
  padding: 14px 20px; border-top: 1px solid #e8e0f8;
  display: flex; align-items: center; gap: 12px;
}
.chat-input input {
  flex: 1; border: none; outline: none; font-size: .88rem;
  background: transparent; color: var(--text-dark); font-family: inherit;
}
.chat-input button {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.chat-input button svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; pointer-events: none; }

/* ── Floating Chat Widget ─────────────────────────────────────── */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; font-family: 'Inter', sans-serif; }
.chat-widget-toggle {
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, #6d28d9));
  box-shadow: 0 4px 20px rgba(134,59,255,.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.chat-widget-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(134,59,255,.5); }
.chat-widget-badge {
  position: absolute; top: -4px; right: -4px;
  background: #10b981; color: #fff; font-size: .6rem; font-weight: 700;
  padding: 2px 6px; border-radius: 8px; letter-spacing: .5px;
}
.chat-widget-window {
  display: none; position: absolute; bottom: 72px; right: 0;
  width: 380px; max-height: 520px; border-radius: 16px; overflow: hidden;
  background: #fff; box-shadow: 0 12px 48px rgba(0,0,0,.15);
  flex-direction: column; animation: chatSlideUp .25s ease-out;
}
@media (max-width: 480px) {
  .chat-widget-window { width: calc(100vw - 32px); right: -8px; bottom: 68px; max-height: 70vh; }
  .chat-widget { bottom: 16px; right: 16px; }
}
@keyframes chatSlideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.chat-widget.open .chat-widget-window { display: flex; }
.chat-widget.open .chat-icon-open { display: none; }
.chat-widget.open .chat-icon-close { display: block !important; }

.chat-widget-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, #6d28d9));
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
}
.chat-widget-header-left { display: flex; align-items: center; gap: 10px; }
.chat-widget-dot { width: 10px; height: 10px; border-radius: 50%; background: #10b981; flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
.chat-widget-title { color: #fff; font-weight: 600; font-size: .9rem; line-height: 1.2; }
.chat-widget-status { color: rgba(255,255,255,.7); font-size: .7rem; }
.chat-widget-close { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; padding: 4px; border-radius: 6px; }
.chat-widget-close:hover { color: #fff; background: rgba(255,255,255,.1); }

.chat-widget-messages {
  flex: 1; padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px;
  min-height: 240px; max-height: 340px; scroll-behavior: smooth; background: #f8f6ff;
}
.chat-widget-messages .chat-msg {
  padding: 10px 14px; border-radius: 14px; max-width: 88%; font-size: .85rem; line-height: 1.5;
}
.chat-widget-messages .chat-msg.bot {
  background: #fff; color: #1a1a2e; border: 1px solid #e8e0f8;
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.chat-widget-messages .chat-msg.user {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, #6d28d9));
  color: #fff; align-self: flex-end; border-bottom-right-radius: 4px;
}
.chat-widget-messages .chat-msg.bot.typing { color: #999; font-style: italic; }
.chat-widget-messages .chat-msg.bot.typing::after {
  content: ''; display: inline-block; width: 4px; height: 14px;
  background: var(--primary); margin-left: 4px; animation: blink-cursor .8s step-end infinite;
  vertical-align: text-bottom;
}

.chat-widget-input {
  padding: 12px 16px; border-top: 1px solid #e8e0f8;
  display: flex; align-items: center; gap: 10px; background: #fff;
}
.chat-widget-input input {
  flex: 1; border: 1px solid #e8e0f8; border-radius: 20px; padding: 10px 16px;
  font-size: .85rem; outline: none; font-family: inherit; background: #f8f6ff; color: #1a1a2e;
}
.chat-widget-input input:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(134,59,255,.15); }
.chat-widget-input button {
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer; flex-shrink: 0;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.chat-widget-input button:hover { background: var(--primary-dark, #6d28d9); }
.chat-widget-input button:disabled { opacity: .5; cursor: not-allowed; }
.chat-widget-input button svg { pointer-events: none; }
.chat-widget-input input:disabled { opacity: .6; }

/* Live Chat enhancements */
.chat-live .chat-messages { max-height: 360px; overflow-y: auto; scroll-behavior: smooth; }
.chat-live .chat-input input { background: #fff; border: 1px solid #e8e0f8; border-radius: 20px; padding: 8px 16px; }
.chat-live .chat-input input:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(134,59,255,.15); }
.chat-live-badge { font-size: .65rem; background: var(--success); color: #fff; padding: 2px 8px; border-radius: 10px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.chat-header-dot-live { animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.chat-msg.bot.typing { color: var(--text-muted); font-style: italic; }
.chat-msg.bot.typing::after { content: ''; display: inline-block; width: 4px; height: 14px; background: var(--primary); margin-left: 4px; animation: blink-cursor .8s step-end infinite; vertical-align: text-bottom; }
@keyframes blink-cursor { 50% { opacity: 0; } }
.chat-input button:disabled { opacity: .5; cursor: not-allowed; }
.chat-input input:disabled { opacity: .6; }

/* ══════════════════════════════════════════════════════════════
   12. CONTACT FORM
   ══════════════════════════════════════════════════════════════ */
.contact {
  background: linear-gradient(135deg, #1a0a3e, var(--bg-dark));
}
.contact-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px;
  margin-top: 48px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.7); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border-glass);
  border-radius: var(--radius-xs); color: var(--white);
  font-size: .9rem; font-family: inherit; outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: var(--bg-dark); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.radio-label {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: rgba(255,255,255,.04);
  border: 1px solid var(--border-glass); border-radius: var(--radius-xs);
  cursor: pointer; font-size: .85rem; color: var(--text-body);
  transition: all .2s;
}
.radio-label:has(input:checked) { border-color: var(--primary); background: rgba(134,59,255,.1); color: var(--white); }
.radio-label input { display: none; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
.form-success {
  display: none; text-align: center; padding: 40px;
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius);
}
.form-success.show { display: block; }
.form-success h3 { color: var(--success); margin-bottom: 8px; }
.contact-info {
  display: flex; flex-direction: column; gap: 20px;
}
.contact-card {
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius); padding: 28px;
  backdrop-filter: blur(8px);
}
.contact-card h3 { margin-bottom: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px; font-size: .9rem; color: var(--text-body);
}
.contact-item-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  background: rgba(134,59,255,.12); display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 2; }
.contact-cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.contact-cta-card h3 { margin-bottom: 8px; }
.contact-cta-card p { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 20px; }

/* ══════════════════════════════════════════════════════════════
   13. FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-darker); padding: 64px 0 0;
  border-top: 1px solid var(--border-glass);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand p { font-size: .88rem; color: var(--text-muted); margin-top: 12px; line-height: 1.7; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a { display: block; font-size: .88rem; color: var(--text-body); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 48px; padding: 20px 0;
  border-top: 1px solid var(--border-glass);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--text-muted);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 18px; height: 18px; fill: var(--text-body); }
.footer-social a:hover svg { fill: #fff; }
.made-in-india { display: flex; align-items: center; gap: 6px; }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="left"].revealed { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].revealed { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(.9); }
[data-reveal="scale"].revealed { transform: scale(1); }

/* Staggered children */
[data-stagger] > * { transition-delay: calc(var(--i) * .08s); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .founder-grid { grid-template-columns: 1fr; text-align: center; }
  .founder-countries { justify-content: center; }
  .expertise-tags { justify-content: center; }
  .chatbot-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .menu-toggle { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .problems-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .workflow-timeline { flex-direction: column; align-items: center; gap: 0; }
  .workflow-connector { width: 2px; height: 30px; margin-top: 0; }
  .workflow-step { max-width: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-pad { padding: 64px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .founder-stats-row { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
