:root {
  --bg-main: #121a2f;
  --bg-surface: #162039;
  --bg-elevated: #1d2a4a;
  --bg-glass: rgba(22, 32, 57, 0.72);
  --accent: #f0ae35;
  --accent-glow: rgba(240, 174, 53, 0.25);
  --accent-dim: rgba(240, 174, 53, 0.12);
  --text-white: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(240, 174, 53, 0.4);
  --border-navy: rgba(30, 48, 86, 0.7);
  --status-green: #10b981;
  --status-red: #ef4444;
  --font-main: "Plus Jakarta Sans", -apple-system, sans-serif;
  --font-mono: "Geist Mono", monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --container-max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-white);
  font-family: var(--font-main);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

body {
  background-color: var(--bg-main);
  background-image:
    radial-gradient(
      circle at 50% 0%,
      rgba(30, 48, 86, 0.45) 0%,
      transparent 70%
    ),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size:
    100% 100%,
    48px 48px,
    48px 48px;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero-heading {
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 800;
}

.section-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
}

.card-heading {
  font-size: 1.25rem;
  font-weight: 700;
}

.highlight-gold {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.tech-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.tech-eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
}

.mono-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* LAYOUT CONTAINERS */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-py {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  position: relative;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: #0c1220;
  box-shadow: 0 4px 18px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
  background-color: #f7bc4e;
}

.btn-secondary {
  background: rgba(22, 32, 57, 0.6);
  color: var(--text-white);
  border-color: var(--border-navy);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #0c1220;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}

/* NAV BAR */
.navbar-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  background: rgba(18, 26, 47, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
  max-width: 100%;
}

.navbar.scrolled {
  background: rgba(14, 20, 37, 0.96);
  border-bottom-color: var(--border-navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text-white);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
}

/* HERO SECTION */
.hero-section {
  min-height: calc(78vh - 72px);
  display: flex;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  position: relative;
  border-bottom: 1px solid rgb(240 174 53 / 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.metric-item-val {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
}

.metric-item-lbl {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* HUD / AI SIMULATION CONTAINER */
.ai-hud-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.ai-hud-header {
  background: rgba(14, 20, 37, 0.9);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.hud-status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--status-green);
  font-weight: 700;
}

.status-dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--status-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--status-green);
  animation: pulseGreen 1.6s infinite ease-in-out;
}

@keyframes pulseGreen {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.ai-viewport {
  position: relative;
  height: 310px;
  background: #0b101d;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-feed-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: contrast(1.15) brightness(0.85) saturate(1.1);
}

.scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 15px var(--accent);
  animation: sweepScan 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 5;
}

@keyframes sweepScan {
  0% {
    top: 0%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.hud-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 174, 53, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 174, 53, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.bounding-target {
  position: absolute;
  top: 56%;
  width: 176px;
  height: 44px;
  border: 1px dashed rgba(240, 174, 53, 0.5);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px;
  box-shadow: 0 0 20px rgba(240, 174, 53, 0.1);
}

.target-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--accent);
  border-style: solid;
}

.tc-tl {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.tc-tr {
  top: -2px;
  right: -2px;
  border-width: 2px 2px 0 0;
}

.tc-bl {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 2px 2px;
}

.tc-br {
  bottom: -2px;
  right: -2px;
  border-width: 0 2px 2px 0;
}

.plate-readout-pill {
  position: absolute;
  bottom: 24px;
  background: rgba(18, 26, 47, 0.95);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.5),
    0 0 10px var(--accent-glow);
  z-index: 6;
}

.plate-readout-pill .ind-strip {
  background: #003399;
  color: #fff;
  font-size: 0.6rem;
  padding: 1px 3px;
  border-radius: 2px;
  font-weight: 800;
}

.ai-hud-data-grid {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-navy);
}

.hud-datapoint {
  display: flex;
  flex-direction: column;
}

.hud-datapoint-lbl {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.hud-datapoint-val {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
}

.hud-datapoint-val.matched {
  color: var(--accent);
}

/* BRAND STORY STRIP */
.brand-story-strip {
  background: #0e1526;
  border-top: 1px solid var(--border-navy);
  border-bottom: 1px solid var(--border-navy);
  padding: 2.2rem 0;
}

.story-strip-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.story-token-symbol {
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
  flex-shrink: 0;
}

.story-quote {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 820px;
  line-height: 1.6;
}

.story-quote strong {
  color: var(--text-white);
  font-weight: 600;
}

/* CARDS & GRIDS GENERAL */
.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s ease;
  box-shadow: 0 0 8px var(--accent);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  background: var(--bg-elevated);
}

.feature-card:hover::before {
  width: 100%;
}

.card-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(240, 174, 53, 0.08);
  border: 1px solid rgba(240, 174, 53, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* SECTION 1: THE GAP COMPARISON */
.gap-comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.comparison-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-header-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.timeline-scrub-vis {
  height: 90px;
  background: #0d1424;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.timeline-static-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 100%;
  height: 40px;
  opacity: 0.4;
}

.timeline-static-bars span {
  flex: 1;
  background: var(--text-dim);
  border-radius: 1px;
}

.ai-indexed-event {
  position: absolute;
  left: 65%;
  height: 60px;
  width: 4px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.ai-indexed-tag {
  position: absolute;
  left: 67%;
  top: 15px;
  background: var(--accent);
  color: #0c1220;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
  white-space: nowrap;
}

/* CINEMATIC OVERLAY SECTIONS */
.cinematic-banner-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-navy);
  margin: 3rem 0;
}

.cinematic-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  filter: contrast(1.1) brightness(0.65);
}

.cinematic-overlay-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 26, 47, 0.2) 0%,
    rgba(18, 26, 47, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.cinematic-hud-tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(14, 20, 37, 0.85);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
}

/* WHAT IT WATCHES FOR - GRID */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.capability-tag-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.capability-tag-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.capability-tag-list li::before {
  content: "—";
  color: var(--accent);
  font-family: var(--font-mono);
}

/* ARCHITECTURE PIPELINE VISUAL */
.arch-pipeline-container {
  background: #0e1526;
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  margin-top: 4rem;
  position: relative;
}

.pipeline-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow-x: auto;
  padding: 1rem 0;
}

.pipeline-node {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.2rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
  z-index: 2;
  min-width: 120px;
  transition: all 0.25s ease;
}

.pipeline-node.active-stage {
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.pipeline-connector {
  flex: 1;
  height: 2px;
  background: var(--border-navy);
  position: relative;
  margin: 0 8px;
  min-width: 24px;
}

.pipeline-connector::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 10px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent);
  animation: packetFlow 2.4s infinite linear;
}

@keyframes packetFlow {
  0% {
    left: 0%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.always-on-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.always-on-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* DEPLOYMENT COMPARISON */
.deploy-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.deploy-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}

.deploy-diagram-box {
  background: #0d1322;
  border: 1px dashed var(--border-navy);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.comparison-table-wrapper {
  margin-top: 3rem;
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  overflow-x: auto;
  background: var(--bg-surface);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.comp-table th,
.comp-table td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comp-table th {
  background: #0e1526;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.comp-table td:first-child {
  font-weight: 600;
  color: var(--text-white);
}

.comp-table .hl-val {
  color: var(--accent);
  font-family: var(--font-mono);
}

/* SITES / VERTICALS */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.site-card-featured {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--bg-surface) 0%, #1c2742 100%);
  border: 1px solid var(--border-active);
}

/* FEATURED PETROL PUMP SECTION */
.petrol-split-showcase {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  margin-top: 3.5rem;
}

.petrol-visual {
  position: relative;
  min-height: 480px;
}

.petrol-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.15) brightness(0.75);
}

.petrol-hud-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(18, 26, 47, 0.9);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-sm);
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.petrol-info-pane {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pump-benefit-list {
  margin: 1.75rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pump-benefit-item {
  display: flex;
  gap: 0.85rem;
}

.pump-benefit-item strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.pump-benefit-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* HOW IT WORKS TIMELINE */
.workflow-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  position: relative;
}

.workflow-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.workflow-step:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}

.step-num-badge {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

.workflow-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.workflow-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* LIVE SEARCH DEMO */
.search-console-card {
  background: #0d1322;
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.search-bar-mock {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.filter-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.search-result-row {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* WHY ABHIGYAN - 4 PILLARS */
.four-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

/* SYSTEM HEALTH DASHBOARD */
.health-dashboard-wrap {
  background: #0b101d;
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3.5rem;
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.health-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* CLOSING CTA */
.cta-banner-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, #15203a 100%);
  border-top: 1px solid var(--border-navy);
  border-bottom: 1px solid var(--border-navy);
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

.cta-inner-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-bg-wireframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 500px;
  border: 1px dashed rgba(240, 174, 53, 0.15);
  border-radius: 20px;
  pointer-events: none;
}

/* FOOTER */
.site-footer {
  background: #090d18;
  border-top: 1px solid var(--border-navy);
  padding: 4.5rem 0 2rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-links-col h4 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--accent);
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .capabilities-grid,
  .sites-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-card-featured {
    grid-column: span 2;
  }

  .petrol-split-showcase {
    grid-template-columns: 1fr;
  }

  .petrol-visual {
    min-height: 320px;
  }

  .four-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .health-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .gap-comparison-container,
  .deploy-split-grid,
  .always-on-strip,
  .capabilities-grid,
  .sites-grid,
  .four-pillars-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-card-featured {
    grid-column: span 1;
  }

  .health-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-result-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .ai-hud-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-strip-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .petrol-info-pane {
    padding: 1rem;
  }
  .search-console-card,
  .health-dashboard-wrap {
    padding: 1rem;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(14, 20, 37, 0.98);
  border-bottom: 1px solid var(--border-navy);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-120%);
  transition: transform 0.35s ease-in-out;
  z-index: 999;
}

.mobile-drawer.open {
  transform: translateY(0);
}

/* Contact Us Page Styles */
/* =========================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================= */

.contact-hero-wrap {
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  text-align: center;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
  align-items: start;
}

/* Form Container Card */
.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  min-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  background: #0e1526;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 0.92rem;
  outline: none;
  transition: all 0.25s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  background: #111a2e;
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--bg-surface);
  color: var(--text-white);
}

/* Checkbox/Capabilities Grid */
.cap-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.cap-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #0e1526;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cap-checkbox-label input[type="checkbox"] {
  accent-color: var(--accent);
  cursor: pointer;
}

.cap-checkbox-label:hover {
  border-color: var(--border-active);
  color: var(--text-white);
}

/* Sidebar Info Cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.info-item-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.info-item-content h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.info-item-content p,
.info-item-content a {
  font-size: 0.86rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-item-content a:hover {
  color: var(--accent);
}

/* SLA Assurance Pill */
.survey-sla-box {
  background: #0d1424;
  border: 1px dashed var(--border-active);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-row,
  .cap-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 1.5rem;
  }
}

/* =========================================
   UNIVERSAL HUD BREADCRUMB COMPONENT
   ========================================= */

.breadcrumb-container {
  padding-top: 1.75rem;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 10;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: var(--accent);
}

.breadcrumb-link i {
  width: 13px;
  height: 13px;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.breadcrumb-link:hover i {
  color: var(--accent);
}

.breadcrumb-separator {
  color: var(--text-dim);
  font-size: 0.7rem;
  user-select: none;
  opacity: 0.6;
}

.breadcrumb-current {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-white);
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(240, 174, 53, 0.08);
  border: 1px solid rgba(240, 174, 53, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

.breadcrumb-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

@media (max-width: 640px) {
  .breadcrumb-nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* =========================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================= */

.about-hero-section {
  padding: 3.5rem 0 4.5rem 0;
  text-align: center;
  position: relative;
}

.about-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-active);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  margin: 4rem 0;
}

.about-origin-card {
    border: 1px solid var(--border-navy);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
}

.about-origin-quote {
  font-size: 1.15rem;
  color: var(--text-white);
  line-height: 1.7;
  font-weight: 500;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.25rem 0;
}

/* Stats Counter Ribbon */
.stats-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 4.5rem 0;
  background: #0E1526;
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-subtle);
  padding-right: 1.5rem;
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.stat-subtext {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Mission & Vision Split */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3.5rem 0;
}

.mv-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Engineering Principles Grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.principle-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.principle-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}

.principle-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-story-grid,
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats-ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-ribbon-grid {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.25rem;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1.25rem;
    padding-right: 0;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   WHY CHOOSE US COMPONENT STYLES
   ========================================= */

.why-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.75rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-card:hover {
  border-color: var(--border-active);
  transform: translateY(-5px);
  background: var(--bg-elevated);
}

.why-card-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(240, 174, 53, 0.2);
}

/* Operational Matrix Comparison Table */
.matrix-comparison-wrap {
  margin-top: 4.5rem;
  background: #0D1322;
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.matrix-table th {
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-navy);
  text-align: left;
}

.matrix-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.matrix-table tr:last-child td {
  border-bottom: none;
}

.matrix-table .col-param {
  font-weight: 600;
  color: var(--text-white);
  width: 32%;
}

.matrix-table .col-generic {
  color: var(--text-dim);
  width: 34%;
}

.matrix-table .col-abhigyan {
  color: var(--accent);
  font-weight: 600;
  background: rgba(240, 174, 53, 0.03);
  border-left: 1px solid var(--border-active);
  border-right: 1px solid var(--border-active);
  width: 34%;
}

/* Operational Badges Strip */
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.trust-badge-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

@media (max-width: 1024px) {
  .why-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid-layout,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .matrix-comparison-wrap {
    padding: 1.5rem 1rem;
    overflow-x: auto;
  }
  .matrix-table {
    min-width: 600px;
  }
}