/* ═══════════════════════════════════════════════════════
   DRONIMAGINATION — Main Stylesheet
   Design System: DJI Enterprise + ESRI Professional
   ═══════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────── */
:root {
  --bg-primary:    #060B18;
  --bg-secondary:  #0D1526;
  --bg-card:       #111E35;
  --bg-card-hover: #162444;
  --accent-cyan:   #00D4FF;
  --accent-orange: #FF6B00;
  --accent-green:  #00FF9F;
  --accent-purple: #702BA0;
  --text-primary:  #FFFFFF;
  --text-secondary:#94A3B8;
  --text-muted:    #8A9BB0;
  --border:        rgba(255,255,255,0.07);
  --border-active: rgba(0,212,255,0.3);
  --glow-cyan:     0 0 30px rgba(0,212,255,0.25);
  --glow-orange:   0 0 30px rgba(255,107,0,0.25);
  --nav-h:         72px;
  --r:             12px;
  --r-lg:          20px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
canvas { display: block; }

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-secondary); line-height: 1.75; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ──────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  position: relative;
}

.section-dark { background: var(--bg-secondary); }
.section-dark-subtle { background: rgba(13,21,38,0.6); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}
.btn-primary:hover {
  background: #33DDFF;
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0,212,255,0.05);
}

.btn-nav {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 6px;
}
.btn-nav:hover { background: #33DDFF; }

.btn-outline-light {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.75rem 2rem;
}
.btn-outline-light:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── Navigation ──────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(6,11,24,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-primary {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--text-primary);
  line-height: 1.2;
}
.logo-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-highlight {
  color: var(--accent-cyan) !important;
}
.nav-highlight:hover {
  background: rgba(0,212,255,0.08) !important;
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Section ────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #060B18 0%, #060B18 38%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* HUD overlays */
.hud-overlay {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: 'Inter', monospace;
}

.hud-top-left { top: calc(var(--nav-h) + 2rem); left: 2rem; }
.hud-top-right { top: calc(var(--nav-h) + 2rem); right: 2rem; align-items: flex-end; }

.hud-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6,11,24,0.5);
  border: 1px solid rgba(0,212,255,0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
}

.hud-label { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hud-value { color: var(--text-primary); font-weight: 600; min-width: 40px; text-align: right; }
.hud-green { color: var(--accent-green); }
.hud-cyan  { color: var(--accent-cyan); }

.hud-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}
.crosshair-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}
.crosshair-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0.7;
}

@keyframes pulse-ring {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  margin-left: clamp(1.5rem, 6vw, 8rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-title {
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-title .gradient-text {
  display: block;
  font-size: clamp(1.6rem, 3.4vw, 3.2rem);
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* RC Controller */
.rc-controller-wrap {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  width: min(520px, 90vw);
  pointer-events: none;
  opacity: 0.9;
}
.rc-controller-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 -10px 30px rgba(0,212,255,0.15));
}

/* FPV Pilot Overlay */
.fpv-pilot-wrap {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: clamp(200px, 20vw, 300px);
  z-index: 4;
  pointer-events: none;
  animation: pilot-appear 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.6s both;
}
@keyframes pilot-appear {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 0.9; transform: translateY(0); }
}
.fpv-pilot-label {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-orange);
  opacity: 0.7;
  margin-bottom: 0.4rem;
  font-family: 'Inter', sans-serif;
}
.fpv-pilot-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(112,43,160,0.3));
}
/* Goggle screen pulse */
.fpv-goggle { animation: goggle-pulse 2.4s ease-in-out infinite; }
.fpv-face-glow { animation: goggle-pulse 2.4s ease-in-out infinite; }
.fpv-screen { animation: screen-flicker 4s ease-in-out infinite; }
@keyframes goggle-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}
@keyframes screen-flicker {
  0%, 92%, 100% { opacity: 1; }
  94% { opacity: 0.5; }
  96% { opacity: 1; }
  98% { opacity: 0.7; }
}
@media (max-width: 1100px) {
  .fpv-pilot-wrap { width: clamp(160px, 16vw, 220px); right: 2%; }
}
@media (max-width: 768px) {
  .fpv-pilot-wrap { display: none; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 2px;
  animation: scroll-wheel 1.5s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ── Hero Certifications ─────────────────────────────── */
.hero-certs {
  position: absolute;
  right: clamp(2rem, 5vw, 6rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.hero-certs-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.hero-certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.hero-cert-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 120px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-cert-card:hover {
  border-color: rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.04);
}
.hero-cert-img {
  width: 72px;
  height: 52px;
  border: 1.5px dashed rgba(255,255,255,0.18);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.02);
}
.hero-cert-img span {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-cert-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
}
.hero-cert-id {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.03em;
}
@media (max-width: 1100px) { .hero-certs { display: none; } }

/* ── Stats Bar ───────────────────────────────────────── */
#stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0.75rem 3rem;
  flex: 1;
  min-width: 160px;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

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

/* ── Section Headers ─────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Ecosystem Cards ─────────────────────────────────── */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.eco-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  overflow: hidden;
  transition: var(--transition);
}

.eco-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}

.eco-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.eco-daas  .eco-card-glow { background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%); }
.eco-gis   .eco-card-glow { background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%); }
.eco-training .eco-card-glow { background: radial-gradient(circle, rgba(0,255,159,0.12) 0%, transparent 70%); }

.eco-card:hover .eco-card-glow { opacity: 1; }

.eco-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.eco-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.eco-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.eco-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.eco-features li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.eco-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 0.75rem;
}

.eco-gis .eco-features li::before { color: var(--accent-orange); }
.eco-training .eco-features li::before { color: var(--accent-green); }

.eco-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
}
.eco-gis .eco-link { color: var(--accent-orange); }
.eco-training .eco-link { color: var(--accent-green); }

.eco-link span { display: inline-block; transition: transform 0.2s ease; }
.eco-link:hover span { transform: translateX(4px); }

/* ── DRONEACAD Section ───────────────────────────────── */
#droneacad-section {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.academy-3d-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#academy-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.academy-hud-items {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.acad-hud-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6,11,24,0.6);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  font-family: 'Inter', sans-serif;
}

.acad-hud-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.acad-hud-dot.green  { background: var(--accent-green); }
.acad-hud-dot.cyan   { background: var(--accent-cyan); }
.acad-hud-dot.orange { background: var(--accent-orange); }

.academy-content-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.academy-text .section-eyebrow { margin-bottom: 1rem; }
.academy-text h2 { margin-bottom: 1.25rem; }
.academy-text > p { margin-bottom: 2rem; }

.academy-stats-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.acad-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.acad-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  line-height: 1;
}

.acad-stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.course-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.pill {
  padding: 0.35rem 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.pill:hover, .pill-active {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.3);
  color: var(--accent-cyan);
}

.academy-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.academy-success-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.success-card {
  background: rgba(6,11,24,0.7);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}

.success-card:hover {
  border-color: var(--border-active);
  background: rgba(17,30,53,0.8);
}

.success-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.success-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.success-card p {
  font-size: 0.84rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.success-card p strong { color: var(--accent-cyan); }

.success-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--accent-cyan);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

/* ── Alumni Slider ───────────────────────────────────── */
.alumni-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: rgba(6,11,24,0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.alumni-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.alumni-slide {
  min-width: 100%;
  padding: 1.75rem 1.5rem 1.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

/* Photo avatar */
.alumni-avatar-wrap { flex-shrink: 0; }

.alumni-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A2848, #0C1828);
  border: 2px dashed rgba(112,43,160,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 2px;
  cursor: default;
  transition: border-color 0.3s;
}
.alumni-avatar:hover { border-color: #702BA0; border-style: solid; }
.alumni-avatar img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%; position: absolute; inset: 0;
}
.avatar-initials {
  font-size: 1.3rem; font-weight: 800; color: #702BA0;
  font-family: 'Inter', sans-serif; line-height: 1;
  letter-spacing: 0.04em;
}
.avatar-cam-hint {
  font-size: 0.6rem; opacity: 0.4; line-height: 1;
  transition: opacity 0.3s;
}
.alumni-avatar:hover .avatar-cam-hint { opacity: 0.85; }

.avatar-defense { background: linear-gradient(135deg, #0E1E38, #060E1A); border-color: rgba(0,212,255,0.5); }
.avatar-defense .avatar-initials { color: #00D4FF; }
.avatar-gis { background: linear-gradient(135deg, #0A2018, #06100C); border-color: rgba(0,255,159,0.5); }
.avatar-gis .avatar-initials { color: #00FF9F; }

/* Slide content */
.alumni-info { flex: 1; min-width: 0; }

.alumni-tag {
  display: inline-block;
  padding: 0.18rem 0.65rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  border: 1px solid;
}
.tag-intl    { background: rgba(112,43,160,0.12); border-color: rgba(112,43,160,0.35); color: #C070E0; }
.tag-defense { background: rgba(0,212,255,0.1);   border-color: rgba(0,212,255,0.3);   color: #00D4FF; }
.tag-gis     { background: rgba(0,255,159,0.08);  border-color: rgba(0,255,159,0.3);   color: #00FF9F; }

.alumni-name {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.2rem;
}
.alumni-location {
  font-size: 0.72rem; color: var(--text-muted);
  margin-bottom: 0.65rem; font-family: 'Inter', sans-serif;
}
.alumni-story {
  font-size: 0.82rem; line-height: 1.65;
  color: var(--text-secondary); margin-bottom: 0.8rem;
  font-style: italic;
}
.alumni-company-row {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
}
.company-badge {
  font-size: 0.72rem; font-weight: 700;
  padding: 0.2rem 0.7rem; border-radius: 100px;
  border: 1px solid rgba(112,43,160,0.4);
  color: #C070E0; background: rgba(112,43,160,0.08);
  font-family: 'Inter', sans-serif; letter-spacing: 0.04em;
}
.company-role { font-size: 0.72rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }

/* CTA slide */
.alumni-cta-slide {
  align-items: center; justify-content: center;
  padding: 2.5rem 2rem;
}
.alumni-cta-inner { text-align: center; max-width: 320px; }
.review-stars { font-size: 1.5rem; color: #FFB800; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.alumni-cta-inner h4 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text-primary); }
.alumni-cta-inner p  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.25rem; }
.review-cta-btns { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.review-leave-link {
  font-size: 0.78rem; color: var(--text-muted);
  font-family: 'Inter', sans-serif; font-weight: 600;
  letter-spacing: 0.06em; text-decoration: none;
  transition: color 0.2s;
}
.review-leave-link:hover { color: var(--accent-purple); }

/* Navigation */
.alumni-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--border);
}
.alumni-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(112,43,160,0.12);
  border: 1px solid rgba(112,43,160,0.3);
  color: var(--accent-purple); font-size: 1.3rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.alumni-arrow:hover { background: rgba(112,43,160,0.28); border-color: rgba(112,43,160,0.6); }

.alumni-dots { display: flex; gap: 0.45rem; }
.a-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(112,43,160,0.25); border: 1px solid rgba(112,43,160,0.35);
  cursor: pointer; transition: all 0.25s; padding: 0;
}
.a-dot-active {
  background: #702BA0; border-color: #702BA0;
  width: 22px; border-radius: 4px;
}

/* ── Projects Grid ───────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  transition: var(--transition);
}

.project-card:hover {
  border-color: rgba(255,107,0,0.25);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.project-card.featured {
  grid-column: span 1;
  border-color: rgba(0,212,255,0.2);
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, var(--bg-card) 60%);
}

.project-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 4px;
  font-size: 0.72rem;
  color: var(--accent-orange);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.project-card.featured .project-tag {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.2);
  color: var(--accent-cyan);
}

.project-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.project-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.project-badge {
  padding: 0.2rem 0.6rem;
  background: rgba(0,255,159,0.08);
  border: 1px solid rgba(0,255,159,0.2);
  border-radius: 4px;
  color: var(--accent-green) !important;
}

.projects-cta { text-align: center; }

/* ── Clients ─────────────────────────────────────────── */
.clients-ticker {
  overflow: hidden;
  margin-bottom: 3.5rem;
  position: relative;
}

.clients-ticker::before,
.clients-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
}
.clients-ticker::before { left: 0; background: linear-gradient(to right, var(--bg-secondary), transparent); }
.clients-ticker::after  { right: 0; background: linear-gradient(to left, var(--bg-secondary), transparent); }

.clients-track {
  display: flex;
  gap: 1rem;
  animation: ticker 30s linear infinite;
  width: max-content;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  padding: 0.6rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.startup-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.startup-badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  min-width: 220px;
}

.badge-icon { font-size: 1.6rem; }

.badge-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ── Blog Grid ───────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}

.blog-card-image { position: relative; height: 200px; overflow: hidden; }

.blog-img-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.daas-img  { background: linear-gradient(135deg, #0a1f3a 0%, #001a2e 50%, #0d2540 100%); }
.lidar-img { background: linear-gradient(135deg, #0a1a0a 0%, #001800 50%, #0d250d 100%); }
.twin-img  { background: linear-gradient(135deg, #1a0a2e 0%, #1a001a 50%, #250d25 100%); }

/* Grid pattern on blog images */
.blog-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.lidar-img::before {
  background-image:
    linear-gradient(rgba(0,255,159,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,159,0.1) 1px, transparent 1px);
}

.twin-img::before {
  background-image:
    linear-gradient(rgba(139,92,246,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.12) 1px, transparent 1px);
}

.blog-img-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
}

.blog-category {
  padding: 0.25rem 0.7rem;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 4px;
  font-size: 0.72rem;
  color: var(--accent-cyan);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.06em;
}

.blog-card-content { padding: 1.5rem; }

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.blog-card-content h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-content h3 a {
  color: var(--text-primary);
  transition: var(--transition);
}

.blog-card-content h3 a:hover { color: var(--accent-cyan); }

.blog-card-content p {
  font-size: 0.84rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.blog-read-more {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-cyan);
}

.blog-read-more:hover { color: #33DDFF; }
.blog-cta { text-align: center; }

/* ── CTA Section ─────────────────────────────────────── */
#cta-section {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) 0;
  overflow: hidden;
}

.cta-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-canvas-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--bg-primary) 80%);
}

.cta-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content .section-eyebrow { margin-bottom: 1rem; }
.cta-content h2 { margin-bottom: 1.25rem; }
.cta-content > p { margin-bottom: 2.5rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-contact-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.cta-contact-item:hover { color: var(--accent-cyan); }

.footer-social-bar {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  padding: 1.25rem 0 0.5rem;
  border-top: 1px solid var(--border);
}
.footer-social-bar .social-link { width: 32px; height: 32px; font-size: 0.9rem; }

/* ── Footer ──────────────────────────────────────────── */
#footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: clamp(4rem, 6vw, 6rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--accent-cyan);
  background: rgba(0,212,255,0.08);
}
.social-link--linkedin { color: #0A66C2; }
.social-link--linkedin:hover { border-color: #0A66C2; background: rgba(10,102,194,0.12); }
.social-link--instagram { color: #E1306C; }
.social-link--instagram:hover { border-color: #E1306C; background: rgba(225,48,108,0.1); }
.social-link--facebook { color: #1877F2; }
.social-link--facebook:hover { border-color: #1877F2; background: rgba(24,119,242,0.1); }
.social-link--youtube { color: #FF0000; }
.social-link--youtube:hover { border-color: #FF0000; background: rgba(255,0,0,0.08); }
.social-link--x { color: var(--text-primary); }
.social-link--x:hover { border-color: var(--accent-cyan); background: rgba(0,212,255,0.08); }

.cta-linkedin { color: #0A66C2; font-weight: 600; }
.cta-linkedin:hover { color: #0A66C2; opacity: 0.85; }

.footer-gstin {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

.footer-col h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--accent-cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--accent-cyan); }

/* ── Reveal Animations ───────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; max-width: 580px; }

/* ── Blog Post Styles ────────────────────────────────── */
.blog-post-content {
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem,4vw,3rem) 6rem;
}
.blog-internal-cta {
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-left: 3px solid var(--accent-cyan);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 2rem;
}
.blog-internal-cta p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
.blog-internal-cta a { color: var(--accent-cyan); font-weight: 600; }
.blog-internal-cta a:hover { color: #33DDFF; }
.service-blog-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: none;
}
.service-blog-link:hover { color: #33DDFF; }

.blog-post-content h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
.blog-post-content h2 { font-size: 1.6rem; margin: 3rem 0 1rem; color: var(--text-primary); }
.blog-post-content h3 { font-size: 1.2rem; margin: 2rem 0 0.75rem; color: var(--text-primary); }
.blog-post-content p  { font-size: 1rem; line-height: 1.85; margin-bottom: 1.5rem; }
.blog-post-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.blog-post-content ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.4rem;
  list-style-type: disc;
}

.blog-post-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.post-meta-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
}

.blog-highlight-box {
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-left: 3px solid var(--accent-cyan);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.5rem;
  margin: 2rem 0;
}

.blog-highlight-box p {
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .ecosystem-grid { grid-template-columns: 1fr; gap: 1rem; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .academy-content-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; background: rgba(6,11,24,0.97); padding: 1rem; border-bottom: 1px solid var(--border); backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .hud-overlay { display: none; }
  .hud-crosshair { display: none; }
  .hero-content { margin-left: 0; padding: 0 1.5rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .rc-controller-wrap { opacity: 0.4; }
  .projects-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .startup-badges { flex-direction: column; align-items: center; }
  .academy-stats-row { gap: 1rem; }
  .academy-success-cards { gap: 0.75rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .section { padding: 3.5rem 0; }
  .eco-card { padding: 1.75rem; }
}

/* ── Ecosystem Flow Pipeline ──────────────────────────────── */
.flow-pipeline {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  margin-top: 3rem;
}

.flow-step {
  text-align: center;
  padding: 1.25rem 0.75rem;
}

.flow-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.flow-step:nth-child(1) .flow-icon { background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.25); }
.flow-step:nth-child(3) .flow-icon { background: rgba(0,255,159,0.1); border: 1px solid rgba(0,255,159,0.25); }
.flow-step:nth-child(5) .flow-icon { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25); }
.flow-step:nth-child(7) .flow-icon { background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.25); }

.flow-step:hover .flow-icon { transform: scale(1.1); }

.flow-step h3 { font-size: 0.92rem; margin-bottom: 0.4rem; font-weight: 600; }
.flow-step > p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.75rem; }

.flow-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem; }
.flow-tags span {
  padding: 0.12rem 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.flow-arrow-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  opacity: 0.35;
  font-size: 1.6rem;
  font-family: monospace;
}

.flow-outcomes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.flow-outcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 2.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.flow-outcome:last-child { border-right: none; }

.outcome-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent-cyan);
  line-height: 1.1;
}

.outcome-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  max-width: 130px;
}

@media (max-width: 1024px) {
  .flow-pipeline { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 2rem; }
  .flow-arrow-cell { display: none; }
  .flow-outcomes { flex-direction: row; }
  .flow-outcome { padding: 0.75rem 1.5rem; }
}
@media (max-width: 768px) {
  .flow-pipeline { grid-template-columns: 1fr; }
  .flow-outcomes { flex-direction: column; align-items: center; }
  .flow-outcome { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
}

/* ── Equipment Strip ──────────────────────────────────────── */
.equipment-strip {
  margin: 4rem 0 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(255,107,0,0.04) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--r-lg);
}

.equip-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.equip-label {
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
}

.equip-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
}

.equip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.equip-item:hover {
  border-color: rgba(255,107,0,0.4);
  background: rgba(255,107,0,0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.1);
}

.equip-item span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

.equip-item small {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.3;
  opacity: 0.75;
}

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

/* ── Custom Cursor ───────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }

  #cur-dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: #00D4FF;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    transform: translate(-50%, -50%);
  }

  #cur-ring {
    position: fixed;
    top: 0; left: 0;
    width: 28px; height: 28px;
    border: 1.5px solid rgba(0,212,255,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    will-change: transform;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  }

  #cur-ring.is-hover {
    width: 44px;
    height: 44px;
    border-color: rgba(0,212,255,0.85);
  }

  .cur-click-ring {
    position: fixed;
    width: 8px; height: 8px;
    margin-left: -4px; margin-top: -4px;
    border: 1.5px solid rgba(0,212,255,0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    animation: click-ripple 0.45s ease-out forwards;
  }

  @keyframes click-ripple {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(6); opacity: 0;   }
  }
}

/* ── Equipment Modal ─────────────────────────────────────── */
.equip-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 20, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.equip-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.equip-modal {
  background: var(--bg-card);
  border: 1px solid rgba(112,43,160,0.35);
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
  position: relative;
}

.equip-modal-overlay.is-open .equip-modal {
  transform: translateY(0) scale(1);
}

.equip-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition);
}

.equip-modal-close:hover {
  background: rgba(255,107,0,0.15);
  border-color: rgba(255,107,0,0.3);
  color: #fff;
}

.equip-modal-photo {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(112,43,160,0.12), rgba(0,212,255,0.06));
  border-radius: 14px 14px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.equip-modal-photo-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.equip-modal-body {
  padding: 1.5rem;
}

.equip-modal-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.4rem;
}

.equip-modal-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.equip-modal-models {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.equip-modal-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.equip-modal-specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.equip-modal-specs li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-purple);
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* ── Video Showcase ──────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.yt-card {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.yt-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background-size: cover;
  background-position: center;
  background-color: #0d1526;
}

.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}

.yt-play:hover {
  background: rgba(0,0,0,0.55);
}

.yt-play:hover svg {
  transform: scale(1.1);
}

.yt-play svg {
  transition: transform 0.2s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Video lightbox */
.yt-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.yt-lightbox.yt-open {
  opacity: 1;
  pointer-events: all;
}

.yt-lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.yt-lb-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.yt-lb-close:hover { background: rgba(255,107,0,0.3); }

.yt-lb-frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.yt-lb-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ── News / Media Coverage ────────────────────────────────── */
.news-media-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}

.news-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem;
  transition: var(--transition);
}

.news-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-3px); }

.news-source-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.news-source-badge {
  font-size: 0.68rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.news-date { font-size: 0.7rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }

.news-card h3 {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.45rem;
  color: var(--text-primary);
}

.news-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.yt-panel-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.yt-card-list { display: flex; flex-direction: column; gap: 1rem; }

.yt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.yt-card:hover { border-color: rgba(255,0,0,0.3); }

.yt-thumb {
  width: 100%;
  height: 130px;
  background: linear-gradient(135deg, #0a1020, #100a20);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.yt-play-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,0,0,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.yt-card:hover .yt-play-btn { background: rgb(255,0,0); transform: scale(1.1); }

.yt-play-btn::after {
  content: '';
  border: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid white;
  margin-left: 3px;
}

.yt-card-body { padding: 0.75rem 1rem; }
.yt-card-body h4 { font-size: 0.82rem; font-family: 'Inter', sans-serif; color: var(--text-primary); margin-bottom: 0.2rem; }
.yt-card-body span { font-size: 0.7rem; color: var(--text-muted); }

@media (max-width: 1024px) {
  .news-media-layout { grid-template-columns: 1fr; }
  .news-cards-grid { grid-template-columns: 1fr 1fr; }
  .yt-card-list { flex-direction: row; }
  .yt-card { flex: 1; }
}
@media (max-width: 768px) {
  .news-cards-grid { grid-template-columns: 1fr; }
  .yt-card-list { flex-direction: column; }
}

/* ── Testimonials Section ─────────────────────────────────── */
.testimonial-videos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tvc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--transition);
}

.tvc-card:hover { border-color: var(--border-active); }

.tvc-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
  overflow: hidden;
}

.tvc-video iframe { width: 100%; height: 100%; border: 0; display: block; }

.tvc-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1526, #060B18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  position: absolute;
  inset: 0;
}

.tvc-play {
  width: 52px; height: 52px;
  background: rgba(255,0,0,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tvc-play::after {
  content: '';
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  margin-left: 4px;
}

.tvc-placeholder p { font-size: 0.78rem; color: var(--text-muted); text-align: center; padding: 0 1rem; margin: 0; }

.tvc-info { padding: 1rem 1.1rem; }
.tvc-info h4 { font-size: 0.92rem; margin-bottom: 0.2rem; color: var(--text-primary); }
.tvc-info span { font-size: 0.75rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }

.testimonials-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover { border-color: var(--border-active); transform: translateY(-3px); }

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-size: 5rem;
  color: var(--accent-cyan);
  opacity: 0.07;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars { color: #FFC107; font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }

.testimonial-card > p { font-size: 0.88rem; line-height: 1.72; margin-bottom: 1.25rem; font-style: italic; }

.testimonial-author strong { display: block; font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--text-primary); margin-bottom: 0.15rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }

.google-reviews-cta {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.g-rating { font-family: 'Inter', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--text-primary); }
.g-stars { color: #FFC107; font-size: 1.1rem; letter-spacing: 0.1em; }
.g-count { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }

@media (max-width: 1024px) {
  .testimonial-videos-row { grid-template-columns: 1fr 1fr; }
  .testimonials-text-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .testimonial-videos-row { grid-template-columns: 1fr; }
  .testimonials-text-grid { grid-template-columns: 1fr; }
}

/* ── Placement Section ────────────────────────────────────── */
.placement-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.p-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.p-stat-card:hover { border-color: rgba(0,255,159,0.3); transform: translateY(-3px); }

.p-stat-num { display: block; font-family: 'Inter', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--accent-green); line-height: 1.1; margin-bottom: 0.35rem; }
.p-stat-lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Inter', sans-serif; }

.placement-destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.placement-dest {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: var(--transition);
}

.placement-dest:hover { border-color: rgba(0,255,159,0.25); background: rgba(0,255,159,0.02); transform: translateY(-3px); }

.placement-flag { font-size: 2.4rem; margin-bottom: 0.75rem; display: block; }
.placement-dest h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.placement-dest p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.placement-roles { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.placement-role {
  padding: 0.15rem 0.55rem;
  background: rgba(0,255,159,0.07);
  border: 1px solid rgba(0,255,159,0.15);
  border-radius: 100px;
  font-size: 0.68rem;
  color: var(--accent-green);
  font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
  .placement-stats-row { grid-template-columns: 1fr 1fr; }
  .placement-destinations { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) { .placement-destinations { grid-template-columns: 1fr; } }

/* ── Manufacturing / R&D ──────────────────────────────────── */
.mfg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.mfg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mfg-card:hover { border-color: rgba(139,92,246,0.3); transform: translateY(-4px); }

.mfg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mfg-card:hover::before { opacity: 1; }

.mfg-icon {
  width: 60px; height: 60px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.8rem;
}

.mfg-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.mfg-card > p { font-size: 0.84rem; line-height: 1.65; margin-bottom: 1rem; }

.mfg-specs { display: flex; flex-direction: column; gap: 0.35rem; }
.mfg-spec { font-size: 0.78rem; color: var(--text-muted); padding-left: 1rem; position: relative; }
.mfg-spec::before { content: '◆'; position: absolute; left: 0; color: var(--accent-purple); font-size: 0.5rem; top: 0.25rem; }

.mfg-status {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--accent-purple);
  font-family: 'Inter', sans-serif;
  margin-top: 1rem;
}

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

/* ── Empanelment ──────────────────────────────────────────── */
.empanelment-section { margin-top: 4rem; }
.empanelment-label {
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 1.25rem;
  display: block;
}

.empanelment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.empanel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem;
  text-align: center;
  transition: var(--transition);
}

.empanel-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-2px); }

.empanel-org {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.empanel-type { font-size: 0.7rem; color: var(--text-muted); }

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

/* ── DRONEACAD Page Hero Canvas ───────────────────────────── */
.acad-hero-wrap {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(180deg, #0A1A0D 0%, var(--bg-primary) 100%);
}

.acad-hero-canvas-bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

#droneacad-page-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.acad-hero-content {
  position: relative;
  z-index: 5;
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  border-bottom: 1px solid var(--border);
}

/* ── Section divider ──────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS — Comprehensive phone view fixes
   ═══════════════════════════════════════════════════════════ */

/* ── 768px additions (extend existing 768px block) ──────── */
@media (max-width: 768px) {
  /* Use small-viewport height so hero fits under mobile address bar */
  #hero { height: 100svh; min-height: 520px; }

  /* Footer bottom stacks */
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; }
  .footer-bottom-links { justify-content: center; }

  /* Hide scroll indicator — takes up valuable space */
  .scroll-indicator { display: none; }

  /* Page hero inner pages */
  .page-hero { padding: calc(var(--nav-h) + 3rem) 0 3rem; }

  /* Equipment strip padding reduction */
  .equipment-strip { padding: 1.5rem 1.25rem; }
  .equip-strip-header { flex-direction: column; align-items: flex-start; gap: 0.25rem; }

  /* Bigger touch targets in mobile nav */
  .nav-links a { padding: 0.85rem 1.5rem; font-size: 1rem; }

  /* CTA contact row */
  .cta-contact-strip { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
}

/* ── 480px — Small phones ───────────────────────────────── */
@media (max-width: 480px) {
  /* Base layout */
  .container { padding: 0 1.1rem; }
  .section { padding: 3rem 0; }

  /* Typography scaling */
  .hero-title { font-size: 2rem !important; }
  h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  h3 { font-size: 1.05rem; }
  .section-header { margin-bottom: 2rem; }
  .section-header .section-eyebrow { font-size: 0.7rem; }
  .section-header p { font-size: 0.9rem; }

  /* Nav — hide tagline to save space */
  .logo-tagline { display: none; }
  .logo-primary { font-size: 0.82rem; letter-spacing: 0.06em; }

  /* Hero — hide controller graphic, make CTA buttons full width */
  .rc-controller-wrap { display: none; }
  .hero-badge { font-size: 0.72rem; padding: 0.3rem 0.75rem; gap: 0.4rem; }
  .hero-sub { font-size: 0.85rem; letter-spacing: 0; margin-bottom: 2rem; }
  .hero-cta { gap: 0.65rem; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; text-align: center; }

  /* Stats bar */
  .stat-item { padding: 0.5rem 0.9rem; }
  .stat-number { font-size: 1.7rem; }
  .stat-label { font-size: 0.72rem; }

  /* Ecosystem cards */
  .eco-card { padding: 1.5rem; }
  .eco-icon { width: 52px; height: 52px; margin-bottom: 0.875rem; }
  .eco-card h3 { font-size: 1.05rem; }
  .eco-card p { font-size: 0.84rem; }

  /* Academy section (index page canvas area) */
  #droneacad-section { min-height: 480px; }
  .academy-content-grid { padding: 2.5rem 0; gap: 2rem; }
  .acad-stat-num { font-size: 1.5rem; }
  .pill { font-size: 0.7rem; padding: 0.25rem 0.65rem; }
  .academy-cta-row { gap: 0.75rem; flex-wrap: wrap; }
  .academy-cta-row .btn { padding: 0.65rem 1.1rem; font-size: 0.82rem; }

  /* Success cards */
  .success-card { padding: 1rem; gap: 0.65rem; }
  .success-icon { font-size: 1.5rem; }
  .success-card h4 { font-size: 0.88rem; }
  .success-card p { font-size: 0.78rem; }

  /* DRONEACAD page hero canvas */
  .acad-hero-wrap { min-height: 480px; }
  .acad-hero-content { padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem; }

  /* Ecosystem flow pipeline */
  .flow-pipeline { padding: 1.1rem 0.9rem; margin-top: 2rem; }
  .flow-step { padding: 0.75rem 0.35rem; }
  .flow-icon { width: 52px; height: 52px; margin-bottom: 0.6rem; }
  .flow-step h3 { font-size: 0.84rem; }
  .flow-step > p { font-size: 0.74rem; }
  .flow-tags span { font-size: 0.62rem; padding: 0.1rem 0.4rem; }
  .flow-outcomes { margin-top: 1.75rem; padding-top: 1.25rem; }
  .flow-outcome { padding: 0.5rem 0.75rem; }
  .outcome-num { font-size: 1.5rem; }
  .outcome-lbl { font-size: 0.7rem; }

  /* Equipment strip */
  .equipment-strip { padding: 1rem 0.9rem; margin-top: 2rem; }
  .equip-label { font-size: 0.7rem; }
  .equip-sub { font-size: 0.7rem; }
  .equip-item { padding: 0.85rem 0.3rem; }
  .equip-item span { font-size: 0.64rem; }

  /* Projects */
  .project-card { padding: 1.4rem; }
  .project-card h3 { font-size: 1rem; }
  .project-card p { font-size: 0.82rem; }

  /* News/Media */
  .news-card { padding: 1.1rem; }
  .news-card h3 { font-size: 0.86rem; }
  .news-card p { font-size: 0.78rem; }
  .yt-thumb { height: 110px; }

  /* Clients/Startup badges */
  .startup-badge { width: 100%; min-width: 0; }
  .badge-title { font-size: 0.82rem; }
  .badge-sub { font-size: 0.7rem; }

  /* Blog */
  .blog-card-content { padding: 1.1rem; }
  .blog-card-content h3 { font-size: 0.92rem; }
  .blog-card-content p { font-size: 0.8rem; }

  /* CTA section */
  .cta-content h2 { font-size: 1.75rem; }
  .cta-content > p { font-size: 0.9rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; justify-content: center; }
  .cta-contact-strip { gap: 0.65rem; align-items: flex-start; }
  .cta-contact-item { font-size: 0.8rem; }

  /* Footer */
  #footer { padding: 2.5rem 0 0; }
  .footer-grid { gap: 1.75rem; }
  .footer-desc { font-size: 0.82rem; }
  .footer-col h3 { font-size: 0.8rem; margin-bottom: 1rem; }
  .footer-col ul li a { font-size: 0.82rem; }
  .footer-gstin { font-size: 0.68rem; }
  .social-link { width: 38px; height: 38px; }

  /* Inner page heroes */
  .page-hero { padding: calc(var(--nav-h) + 2rem) 0 2.5rem; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero p { font-size: 0.95rem; }

  /* Blog post */
  .blog-post-content { padding: calc(var(--nav-h) + 1.5rem) 1.1rem 4rem; }
  .blog-post-content h1 { font-size: 1.5rem; }
  .blog-post-content h2 { font-size: 1.2rem; }
  .blog-post-content p { font-size: 0.9rem; }

  /* Testimonials */
  .testimonial-card { padding: 1.35rem 1.2rem; }
  .testimonial-card > p { font-size: 0.84rem; }
  .tvc-info h4 { font-size: 0.88rem; }
  .google-reviews-cta { padding: 1.5rem 1.1rem; }
  .g-rating { font-size: 2rem; }

  /* Placement */
  .p-stat-card { padding: 1.1rem 0.9rem; }
  .p-stat-num { font-size: 1.7rem; }
  .placement-dest { padding: 1.2rem; }
  .placement-flag { font-size: 1.9rem; }
  .placement-dest h4 { font-size: 0.95rem; }
  .placement-dest p { font-size: 0.8rem; }

  /* Manufacturing R&D */
  .mfg-card { padding: 1.5rem; }
  .mfg-icon { width: 50px; height: 50px; font-size: 1.5rem; }
  .mfg-card h3 { font-size: 0.95rem; }
  .mfg-card > p { font-size: 0.8rem; }
  .mfg-spec { font-size: 0.76rem; }

  /* Empanelment */
  .empanel-card { padding: 0.85rem 0.7rem; }
  .empanel-org { font-size: 0.78rem; }
  .empanel-type { font-size: 0.65rem; }
}

/* ── 360px — Very small phones (older / budget devices) ── */
@media (max-width: 360px) {
  .container { padding: 0 0.875rem; }
  .hero-title { font-size: 1.75rem !important; }
  h2 { font-size: 1.45rem; }
  .hero-badge { font-size: 0.68rem; }
  .logo-primary { font-size: 0.75rem; }
  .stat-number { font-size: 1.55rem; }

  /* Single column for very cramped layouts */
  .empanelment-grid { grid-template-columns: 1fr; }
  .placement-stats-row { grid-template-columns: 1fr; }
  .flow-outcome { width: 100%; border-right: none !important; }
}
