/* ── VARIABLES ── */
:root {
  --bg: #04080f;
  --bg2: #080f1e;
  --bg3: #0c1628;
  --bg4: #101d30;
  --teal: #00e5b8;
  --teal2: #00c49a;
  --blue: #4da6ff;
  --gold: #f0b429;
  --red: #ff5470;
  --green: #22e87a;
  --text: #ffffff;
  --text2: #b8c8d8;
  --text3: #6b7e94;
  --border: rgba(0, 229, 184, 0.12);
  --border2: rgba(255, 255, 255, 0.05);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 184, 0.35);
  border-radius: 2px;
}

/* ── UTILITIES ── */
.teal {
  color: var(--teal);
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.center {
  text-align: center;
}
.gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes barGrow {
  from {
    height: 0;
  }
  to {
    height: var(--h);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease 0.2s,
    transform 0.7s ease 0.2s;
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.5s;
}
.fade-in-delay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.3s,
    border-color 0.3s,
    backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(4, 8, 15, 0.96);
  backdrop-filter: blur(20px);
  border-color: var(--border2);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-logo span {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.logo-icon {
  width: 33px;
  height: 33px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--bg);
}
.logo-icon.sm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 13px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  color: var(--text3);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--teal);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-demo {
  background: var(--teal);
  color: var(--bg);
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.2px;
  transition: opacity 0.2s;
}
.btn-demo:hover {
  opacity: 0.88;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text2);
  border-radius: 1px;
  transition: background 0.2s;
}
.hamburger.active span {
  background: var(--teal);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 400;
  background: rgba(4, 8, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  padding: 16px 40px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-link {
  font-size: 15px;
  color: var(--text2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border2);
  font-weight: 500;
}
.mobile-link:hover {
  color: var(--teal);
}
.btn-demo-full {
  margin-top: 8px;
  background: var(--teal);
  color: var(--bg);
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow-1 {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 184, 0.07), transparent 70%);
}
.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(77, 166, 255, 0.05),
    transparent 70%
  );
}
.hero-grid-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 184, 0.1);
  border: 1px solid rgba(0, 229, 184, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
  font-size: 11px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.hero-text h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: 400;
  max-width: 460px;
}
.hero-hindi {
  font-size: 15px;
  color: var(--teal);
  margin-bottom: 36px;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  border: none;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.2px;
  box-shadow: 0 6px 20px rgba(0, 229, 184, 0.35);
  transition:
    opacity 0.2s,
    transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* MOCKUP */
.mockup {
  background: var(--bg3);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.mockup-header {
  background: var(--bg4);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border2);
}
.mockup-dots {
  display: flex;
  gap: 5px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot.red {
  background: #ff5f57;
}
.dot.yellow {
  background: #febc2e;
}
.dot.green {
  background: #28c840;
}
.mockup-title {
  font-size: 8px;
  color: var(--teal);
  letter-spacing: 2px;
  font-weight: 700;
}
.mockup-live {
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
}
.mockup-live span:last-child,
.mockup-live {
  font-size: 7px;
  color: var(--text3);
}
.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border2);
}
.kpi {
  background: var(--bg3);
  padding: 10px 12px;
  border-left-width: 2px;
  border-left-style: solid;
}
.kpi.teal-border {
  border-left-color: var(--teal);
}
.kpi.gold-border {
  border-left-color: var(--gold);
}
.kpi.blue-border {
  border-left-color: var(--blue);
}
.kpi.green-border {
  border-left-color: var(--green);
}
.kpi-l {
  font-size: 7px;
  color: var(--text3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.kpi-v {
  font-size: 15px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 2px;
}
.kpi-d {
  font-size: 8px;
  font-weight: 600;
}
.kpi-d.up {
  color: var(--green);
}
.kpi-d.dn {
  color: var(--red);
}
.mockup-chart {
  padding: 14px 16px;
}
.chart-label {
  font-size: 7px;
  color: var(--text3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 56px;
}
.bar {
  flex: 1;
  background: linear-gradient(
    to top,
    rgba(0, 229, 184, 0.4),
    rgba(0, 229, 184, 0.8)
  );
  border-radius: 2px 2px 0 0;
  transition: height 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 0;
}
.chart-tags {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}
.ctag {
  font-size: 7px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}
.ctag.teal {
  color: var(--teal);
  background: rgba(0, 229, 184, 0.1);
}
.ctag.blue {
  color: var(--blue);
  background: rgba(77, 166, 255, 0.1);
}
.ctag.gold {
  color: var(--gold);
  background: rgba(240, 180, 41, 0.1);
}

/* ── STATS ── */
.stats-section {
  padding: 0 0 80px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border2);
  border-radius: 14px;
  overflow: hidden;
}
.stat-item {
  background: var(--bg2);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
  font-weight: 400;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 0;
}
.why-section {
  background: linear-gradient(180deg, transparent, rgba(8, 15, 30, 0.2));
}
.section-head {
  margin-bottom: 52px;
}
.section-head.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-label {
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.section-head p {
  font-size: 15px;
  color: var(--text3);
  max-width: 440px;
  line-height: 1.7;
  font-weight: 400;
}
.hindi-text {
  font-size: 15px;
  color: var(--teal);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-weight: 500;
  margin-top: 8px;
}

/* ── GRIDS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ── CARDS ── */
.card {
  background: linear-gradient(160deg, var(--bg3), var(--bg2));
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid var(--border2);
  height: 100%;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 184, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.card.highlight-card {
  background: linear-gradient(135deg, rgba(0, 229, 184, 0.07), var(--bg3));
  border-color: rgba(0, 229, 184, 0.25);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(0, 229, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.india-icon {
  font-size: 24px;
  margin-bottom: 12px;
}
.card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.card p {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.7;
  font-weight: 400;
}
.tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.tags span {
  font-size: 9px;
  color: var(--teal);
  background: rgba(0, 229, 184, 0.1);
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* INDUSTRY CARDS */
.ind-card {
  background: var(--bg3);
  border-radius: 11px;
  padding: 20px 16px;
  border: 1px solid var(--border2);
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}
.ind-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 184, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.ind-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.ind-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.ind-card p {
  font-size: 10px;
  color: var(--text3);
  line-height: 1.5;
  font-weight: 400;
}

/* ── PROCESS ── */
.process-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(8, 15, 30, 0.25),
    transparent
  );
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.proc-line {
  position: absolute;
  top: 29px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 229, 184, 0.4),
    rgba(77, 166, 255, 0.4),
    rgba(0, 229, 184, 0.4)
  );
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px;
}
.step-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--teal);
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 16px rgba(0, 229, 184, 0.18);
  letter-spacing: -0.5px;
}
.step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.step p {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.65;
  font-weight: 400;
}

/* ── TEAM SECTION ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
}

.team-avatar {
  flex-shrink: 0;
}

.team-info {
  flex: 1;
}

.team-role {
  font-size: 11px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 18px;
  }
  .team-card {
    flex-direction: column;
    gap: 14px;
    padding: 22px 18px;
  }
}
/* ── SUCCESS STORIES — Change #8 ── */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}
.story-card {
  background: linear-gradient(160deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 28px;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.story-card:hover {
  border-color: rgba(0, 229, 184, 0.28);
  transform: translateY(-4px);
}
.story-top {
  margin-bottom: 20px;
}
.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(0, 229, 184, 0.04);
  border: 1px solid rgba(0, 229, 184, 0.1);
  border-radius: 10px;
}
.story-metric {
  text-align: center;
}
.story-metric-val {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.story-metric-lbl {
  font-size: 10px;
  color: var(--text3);
  line-height: 1.4;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 30px);
  position: relative;
}
.price-card.featured {
  background: linear-gradient(160deg, rgba(0, 229, 184, 0.07), var(--bg3));
  border-color: rgba(0, 229, 184, 0.38);
  box-shadow: 0 0 48px rgba(0, 229, 184, 0.08);
}
.featured-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-name {
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}
.plan-price {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.plan-monthly {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 22px;
  font-weight: 400;
}
.plan-divider {
  border: none;
  border-top: 1px solid var(--border2);
  margin-bottom: 20px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text2);
  font-weight: 400;
}
.plan-features li::before {
  content: "✓";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(0, 229, 184, 0.14);
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-outline {
  width: 100%;
  padding: 11px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.2px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  font-family: inherit;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ── CTA ── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(0, 229, 184, 0.05),
    transparent 70%
  );
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}
.cta-sub {
  font-size: 15px;
  color: var(--text3);
  margin-bottom: 12px;
  line-height: 1.7;
  font-weight: 400;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 15px 34px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.28);
  letter-spacing: -0.2px;
  transition:
    opacity 0.2s,
    transform 0.2s;
  margin-top: 12px;
}
.btn-wa:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  padding: 22px 0;
  border-top: 1px solid var(--border2);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  color: var(--text3);
  font-weight: 400;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 11px;
  color: var(--text3);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--teal);
}

/* ── RESPONSIVE ── */

/* ── TABLET LANDSCAPE: 1024px ── */
@media (max-width: 1024px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-mock {
    display: none;
  }
  .hero {
    min-height: unset;
    padding: 100px 0 60px;
  }

  .hero-text {
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-sub {
    margin: 0 auto 10px;
  }
  .hero-hindi {
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .badge {
    margin: 0 auto 28px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
  .proc-line {
    display: none;
  }
  .section-head p {
    margin: 0 auto 0;
  }
}

/* ── TABLET PORTRAIT: 768px ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .btn-demo {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* Hero */
  .hero {
    padding: 90px 0 60px;
  }
  .hero-text h1 {
    font-size: clamp(30px, 8vw, 44px);
    letter-spacing: -1px;
  }
  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }

  /* Stats */
  .stats-section {
    padding: 0 0 60px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-num {
    font-size: 28px;
  }

  /* Sections */
  .section {
    padding: 56px 0;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .section-head h2 {
    font-size: clamp(24px, 6vw, 34px);
    letter-spacing: -0.5px;
  }
  .section-head p {
    font-size: 14px;
  }

  /* Grids */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Cards */
  .card {
    padding: 20px 18px;
  }
  .ind-card {
    padding: 18px 14px;
  }
  .ind-icon {
    font-size: 24px;
  }

  /* Pricing */
  .price-card {
    padding: 28px 24px;
  }
  .plan-price {
    font-size: 32px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: clamp(24px, 7vw, 40px);
    letter-spacing: -1px;
  }
  .btn-wa {
    padding: 14px 26px;
    font-size: 14px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Footer */
  .footer-row {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

/* ── MOBILE: 480px ── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Nav */
  #navbar {
    padding: 0 16px;
  }
  .nav-logo span {
    font-size: 15px;
  }

  /* Hero */
  .hero {
    padding: 80px 0 50px;
  }
  .hero-text h1 {
    font-size: clamp(28px, 9vw, 36px);
    letter-spacing: -0.8px;
  }
  .badge {
    font-size: 9px;
    padding: 5px 12px;
  }
  .hero-hindi {
    font-size: 13px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
  .stat-item {
    padding: 20px 14px;
  }
  .stat-num {
    font-size: 24px;
  }
  .stat-label {
    font-size: 11px;
  }

  /* Section */
  .section {
    padding: 48px 0;
  }
  .section-head h2 {
    font-size: clamp(22px, 7vw, 30px);
  }

  /* Grids */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .grid-3 {
    gap: 12px;
  }

  /* Cards */
  .card {
    padding: 18px 16px;
  }
  .card h3 {
    font-size: 15px;
  }
  .card p {
    font-size: 12px;
  }
  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 14px;
  }
  .ind-card {
    padding: 16px 12px;
  }
  .ind-icon {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .ind-card h4 {
    font-size: 12px;
  }
  .ind-card p {
    font-size: 9px;
  }

  /* Process */
  .step {
    padding: 0 10px;
  }
  .step-num {
    width: 50px;
    height: 50px;
    font-size: 15px;
    margin-bottom: 14px;
  }
  .step h3 {
    font-size: 14px;
  }

  /* Pricing */
  .pricing-grid {
    max-width: 100%;
  }
  .plan-price {
    font-size: 28px;
  }
  .plan-features li {
    font-size: 12px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }
  .cta-section h2 {
    font-size: clamp(22px, 8vw, 34px);
    letter-spacing: -0.8px;
  }
  .cta-sub {
    font-size: 13px;
  }
  .hindi-text {
    font-size: 13px;
  }
  .btn-wa {
    font-size: 13px;
    padding: 13px 22px;
  }

  /* Footer */
  footer {
    padding: 20px 5%;
  }
  .footer-copy {
    font-size: 10px;
  }
  .footer-links a {
    font-size: 10px;
  }
}

/* ── SMALL MOBILE: 360px ── */
@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 26px;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    font-size: 13px;
    padding: 12px 20px;
  }
}

/* ── DASHBOARD PREVIEW IMAGE ── */
.dash-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 229, 184, 0.15);
  border: 1px solid rgba(0, 229, 184, 0.15);
}
.dash-img {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.dash-img-wrap:hover .dash-img {
  transform: scale(1.02);
}
.dash-img-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(4, 8, 15, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 184, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ── FAQ SECTION ── */
.faq-section {
  background: linear-gradient(180deg, transparent, rgba(8, 15, 30, 0.2));
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  opacity: 1 !important;
  transform: none !important;
}
.faq-item.open {
  border-color: rgba(0, 229, 184, 0.3);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--teal);
}
.faq-icon {
  font-size: 20px;
  color: var(--teal);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}
.faq-a p {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.75;
  font-weight: 400;
  border-top: 1px solid var(--border2);
  padding-top: 14px;
}

@media (max-width: 768px) {
  .faq-q {
    font-size: 13px;
    padding: 15px 18px;
  }
  .faq-a {
    padding: 0 18px;
  }
  .faq-item.open .faq-a {
    padding: 0 18px 16px;
  }
  .dash-img-badge {
    font-size: 9px;
    padding: 5px 12px;
  }
}

/* ── SOCIAL PROOF STRIP ── */
.proof-strip {
  padding: 0 0 72px;
}
.proof-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 184, 0.06),
    rgba(77, 166, 255, 0.04)
  );
  border: 1px solid rgba(0, 229, 184, 0.18);
  border-radius: 20px;
  padding: 40px 48px;
  align-items: center;
}
.proof-quote-wrap {
  padding-right: 48px;
}
.proof-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.proof-quote {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--teal);
}
.proof-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--bg);
  flex-shrink: 0;
}
.proof-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.proof-role {
  font-size: 11px;
  color: var(--text3);
  font-weight: 400;
}
.proof-divider {
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0 48px;
}
.proof-stats-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.proof-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 3px;
}
.proof-stat-label {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 900px) {
  .proof-inner {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }
  .proof-quote-wrap {
    padding-right: 0;
    margin-bottom: 28px;
  }
  .proof-divider {
    width: 100%;
    height: 1px;
    margin: 0 0 28px;
  }
  .proof-stats-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .proof-stat {
    flex: 1;
    min-width: 100px;
  }
}

/* ── CTA / CONTACT FORM ── */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-left {
  padding-top: 12px;
}
.cta-left h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
}
.cta-or-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 20px;
}
.cta-or-line {
  flex: 1;
  height: 1px;
  background: var(--border2);
}
.cta-or-label {
  font-size: 11px;
  color: var(--text3);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Form card */
.cta-form-wrap {
  background: var(--bg3);
  border: 1px solid rgba(0, 229, 184, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.cta-form-head {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 184, 0.1),
    rgba(77, 166, 255, 0.06)
  );
  padding: 22px 28px;
  border-bottom: 1px solid var(--border2);
}
.cta-form-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -0.3px;
}
.cta-form-sub {
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
}
.cta-form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-input {
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.form-input:focus {
  border-color: rgba(0, 229, 184, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 229, 184, 0.08);
}
.form-input::placeholder {
  color: var(--text3);
}
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7e94' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select option {
  background: var(--bg3);
  color: var(--text);
}
.btn-form-submit {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.3px;
  box-shadow: 0 6px 20px rgba(0, 229, 184, 0.3);
  transition:
    opacity 0.2s,
    transform 0.2s;
  width: 100%;
  margin-top: 4px;
}
.btn-form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  font-size: 11px;
  color: var(--text3);
  text-align: center;
  font-weight: 400;
}
/* Success state */
.form-success {
  padding: 48px 28px;
  text-align: center;
}
.success-icon {
  font-size: 40px;
  margin-bottom: 14px;
}
.success-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.success-msg {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-left {
    text-align: center;
  }
  .cta-or-block {
    justify-content: center;
  }
  .btn-wa {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
}
@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-form {
    padding: 20px;
  }
  .cta-form-head {
    padding: 18px 20px;
  }
}

/* ── CTA TRUST LIST & EMAIL ── */
.cta-trust-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 28px 0 28px;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
  font-weight: 500;
}
.cta-trust-icon {
  font-size: 15px;
  flex-shrink: 0;
}
.cta-email-direct {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border2);
  border-radius: 10px;
}
.cta-email-label {
  font-size: 12px;
  color: var(--text3);
  font-weight: 400;
}
.cta-email-link {
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-email-link:hover {
  opacity: 0.8;
}

/* ── SERVICE CARD DASHBOARD PREVIEWS ── */
.svc-card {
  padding: 22px 20px 0;
  display: flex;
  flex-direction: column;
}
.svc-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.svc-card p {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.6;
  margin-bottom: 10px;
}
.svc-card .tags {
  margin-bottom: 14px;
}

/* Preview container */
.dash-preview {
  background: #080f1e;
  border-radius: 10px 10px 12px 12px;
  border: 1px solid rgba(0, 229, 184, 0.12);
  overflow: hidden;
  margin: 0 -20px;
  flex: 1;
}

/* Preview header bar */
.dp-header {
  background: #101d30;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dp-dot.r {
  background: #ff5f57;
}
.dp-dot.y {
  background: #febc2e;
}
.dp-dot.g {
  background: #28c840;
}
.dp-title {
  flex: 1;
  text-align: center;
  font-size: 7px;
  color: var(--teal);
  letter-spacing: 1.8px;
  font-weight: 700;
}
.dp-live {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 6px;
  color: var(--text3);
}
.dp-live-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 4px var(--green);
}

/* KPI row */
.dp-kpis {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
}
.dp-kpis-3 {
  grid-template-columns: repeat(3, 1fr);
}
.dp-kpi {
  background: #080f1e;
  padding: 8px 10px;
  border-left: 2px solid transparent;
}
.dp-kpi.teal-b {
  border-left-color: var(--teal);
}
.dp-kpi.gold-b {
  border-left-color: var(--gold);
}
.dp-kpi.blue-b {
  border-left-color: var(--blue);
}
.dp-kpi.red-b {
  border-left-color: var(--red);
}
.dp-kl {
  font-size: 6px;
  color: var(--text3);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.dp-kv {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.dp-kv.c-gold {
  color: var(--gold);
}
.dp-kv.c-blue {
  color: var(--blue);
}
.dp-kv.green-val {
  color: var(--green);
}
.dp-kv.red-val {
  color: var(--red);
}

/* Bar chart area */
.dp-bars-wrap {
  padding: 10px 12px 12px;
}
.dp-bar-label {
  font-size: 6px;
  color: var(--text3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-weight: 600;
}
.dp-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
}
.dp-bar {
  flex: 1;
  background: linear-gradient(
    to top,
    rgba(0, 229, 184, 0.35),
    rgba(0, 229, 184, 0.7)
  );
  border-radius: 2px 2px 0 0;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dp-bar.hi {
  background: linear-gradient(to top, rgba(0, 229, 184, 0.6), var(--teal));
}
.dp-bar.gold-bar {
  background: linear-gradient(to top, rgba(240, 180, 41, 0.4), var(--gold));
}
.dp-bar.red-bar {
  background: linear-gradient(to top, rgba(255, 84, 112, 0.4), var(--red));
}
.dp-bar.target-bar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

/* Custom dashboard card */
.dp-custom-body {
  padding: 18px 12px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.dp-custom-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 229, 184, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 4px;
}
.dp-custom-text {
  font-size: 11px;
  color: var(--text2);
  font-weight: 600;
}
.dp-custom-sub {
  font-size: 10px;
  color: var(--text3);
}
.dp-custom-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.dp-custom-tags span {
  font-size: 8px;
  color: var(--teal);
  background: rgba(0, 229, 184, 0.08);
  padding: 3px 7px;
  border-radius: 20px;
  font-weight: 700;
}

/* Responsive — hide previews on small mobile to save space
@media (max-width: 480px) {
  .dash-preview {
    display: none;
  }
  .svc-card {
    padding: 18px 16px;
  }
} */

/* @media (max-width: 768px) {
  .svc-demo-mock {
    display: none;
  }
} */

@media (max-width: 768px) {
  .dash-preview,
  .svc-demo-mock {
    display: none;
  }
  .svc-card {
    padding: 18px 16px;
  }
}
