/* ═══════════════════════════════════════════════
   SONAPANI — Global Styles
═══════════════════════════════════════════════ */

:root {
  --bg:           #050D1A;
  --bg-2:         #080F1F;
  --bg-card:      rgba(255,255,255,0.035);
  --bg-card-hover:rgba(255,255,255,0.07);
  --border:       rgba(255,255,255,0.07);
  --border-glow:  rgba(96,239,255,0.2);

  --primary:      #60EFFF;
  --primary-dark: #0061FF;
  --accent:       #00B4D8;

  --text:         #F0F4FF;
  --text-muted:   rgba(240,244,255,0.55);
  --text-faint:   rgba(240,244,255,0.3);

  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  --shadow:       0 4px 32px rgba(0,0,0,0.5);
  --shadow-glow:  0 0 60px rgba(96,239,255,0.12);

  --font-head:   'Plus Jakarta Sans', sans-serif;
  --font-body:   'Inter', sans-serif;

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--bg-2);
}
.section-gradient {
  background: linear-gradient(135deg, #070E1C 0%, #0A1428 50%, #07101C 100%);
}

/* ── Typography ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(96,239,255,0.08);
  border: 1px solid rgba(96,239,255,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag.light {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}
.section-heading.light { color: #fff; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 14px auto 0; }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(90deg, #60EFFF 0%, #0061FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #60EFFF 0%, #0061FF 100%);
  color: #050D1A;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(96,239,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(96,239,255,0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-card);
}
.btn-ghost:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(5,13,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-icon svg { width: 100%; height: 100%; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #60EFFF, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--bg-card); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, rgba(96,239,255,0.15), rgba(0,97,255,0.15));
  border: 1px solid var(--border-glow);
  color: var(--primary);
  font-weight: 600;
}
.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, #60EFFF, #0061FF);
  color: #050D1A;
  border-color: transparent;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
  background: rgba(5,13,26,0.95);
  backdrop-filter: blur(20px);
}
.mobile-menu.show { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--primary); font-weight: 600; }
.mobile-menu a:hover { color: var(--text); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, #0061FF 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb2 {
  width: 500px; height: 500px;
  top: 0; right: -150px;
  background: radial-gradient(circle, #60EFFF 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb3 {
  width: 400px; height: 400px;
  bottom: 0; left: 40%;
  background: radial-gradient(circle, #00B4D8 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
  opacity: 0.2;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.wave-container {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
}
.waves {
  width: 200%;
  height: 100%;
  animation: waveMove 12s linear infinite;
}
@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 4px #22c55e; }
  50% { box-shadow: 0 0 12px #22c55e, 0 0 20px #22c55e; }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-pillar {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  backdrop-filter: blur(20px);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-top {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #60EFFF, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #60EFFF, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-faint);
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.marquee-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, var(--bg) 0%, rgba(0,97,255,0.06) 50%, var(--bg) 100%);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 0 20px;
}
.marquee-track .dot {
  color: var(--primary);
  padding: 0 4px;
  font-size: 1rem;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60EFFF, transparent);
}

.water-icon-large { width: 120px; height: 120px; margin: 0 auto; }
.water-icon-large svg { width: 100%; height: 100%; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.about-badge-float {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
}

.about-card-side {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, #0061FF, #60EFFF);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,97,255,0.4);
  text-align: center;
}
.about-card-side strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
}
.about-card-side span { font-size: 0.78rem; opacity: 0.85; }

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-text p strong { color: var(--text); }

.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.pillar:hover { border-color: var(--border-glow); background: var(--bg-card-hover); }
.pillar-icon {
  width: 40px; height: 40px;
  background: rgba(96,239,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar > div strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.pillar > div span {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), var(--shadow-glow);
}
.product-card:hover::before { opacity: 1; }

.product-icon {
  width: 64px; height: 64px;
  background: rgba(96,239,255,0.06);
  border: 1px solid rgba(96,239,255,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(96,239,255,0.08);
  border: 1px solid rgba(96,239,255,0.15);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ════════════════════════════════════════
   PARTNERS
════════════════════════════════════════ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.partner-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.partner-logo { margin-bottom: 20px; }
.partner-logo-inner {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.partner-a { background: rgba(0,97,255,0.1); border: 1px solid rgba(0,97,255,0.2); }
.partner-b { background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.2); }
.partner-c { background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2); }
.partner-d { background: rgba(5,150,105,0.1); border: 1px solid rgba(5,150,105,0.2); }

.partner-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.partner-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.partner-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  transition: opacity 0.2s;
}
.partner-link:hover { opacity: 0.7; }

.partner-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-faint);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.why-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(96,239,255,0.15);
  transform: translateY(-3px);
}

.why-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, rgba(96,239,255,0.15), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   COVERAGE
════════════════════════════════════════ */
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.bihar-map-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.map-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.map-dot.active { box-shadow: 0 0 8px #22c55e; animation: pulse 2s infinite; }

.map-zones { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.zone {}
.zone-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.zone-cities {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.zone-bar {
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.zone-fill {
  height: 100%;
  background: linear-gradient(90deg, #60EFFF, #0061FF);
  border-radius: 100px;
  animation: barGrow 1.5s ease-out both;
}
@keyframes barGrow {
  from { width: 0 !important; }
}

/* ════════════════════════════════════════
   TRUSTED BY
════════════════════════════════════════ */
.trusted-by {
  margin-bottom: 56px;
  text-align: center;
}
.trusted-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
}
.trusted-logo-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.trusted-logo-card:hover { color: var(--text); }
.trusted-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* Coloured avatars for hospital testimonials */
.testi-avatar.medanta {
  background: linear-gradient(135deg, #0061FF, #60EFFF);
}
.testi-avatar.paras {
  background: linear-gradient(135deg, #7C3AED, #00B4D8);
}

@media (max-width: 768px) {
  .trusted-logos { flex-direction: column; gap: 4px; }
  .trusted-divider { width: 100%; height: 1px; }
  .trusted-logo-card { padding: 10px 0; }
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.testi-stars {
  color: #FBBF24;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-card > p::before { content: '"'; }
.testi-card > p::after { content: '"'; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60EFFF, #0061FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #050D1A;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info p {
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(96,239,255,0.06);
  border: 1px solid rgba(96,239,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 2px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item span { font-size: 0.9rem; font-weight: 500; }

.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(96,239,255,0.4);
  background: rgba(96,239,255,0.04);
  box-shadow: 0 0 0 3px rgba(96,239,255,0.08);
}
.form-group select option { background: #0D1B2E; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 12px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.form-success.show { display: flex; }
.form-success h3 { font-family: var(--font-head); font-size: 1.4rem; }
.form-success p { color: var(--text-muted); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: #030A15;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-faint); line-height: 1.65; max-width: 280px; }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-faint);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-contact p {
  font-size: 0.87rem;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
.fade-up:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered children inside grids */
.products-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.products-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.products-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.partners-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.partners-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.partners-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.why-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.why-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.why-grid .reveal:nth-child(6) { transition-delay: 0.5s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .coverage-layout { gap: 48px; }
  .contact-layout { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

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

  #hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-headline { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .stat { padding: 0; }
  .stat-divider { width: 100%; height: 1px; }

  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-visual { overflow: visible; padding-bottom: 60px; }
  .about-card-side {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    white-space: nowrap;
  }

  .coverage-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-ghost { justify-content: center; }
  .contact-form { padding: 24px 20px; }
  .orb1 { width: 300px; height: 300px; top: -100px; left: -100px; }
  .orb2 { width: 250px; height: 250px; top: 0; right: -80px; }
  .orb3 { display: none; }
  .hero-badge { font-size: 0.72rem; }
  .hero-pillar { font-size: 0.78rem; padding: 6px 12px; }
}
