/* ==========================================================================
   SKYTEX 2.0 HIGH-END AEROSPACE DESIGN SYSTEM
   Full CSS Reset for Buttons, Custom Dark Pills, Glassmorphism & Fine Typography
   ========================================================================== */

:root {
  /* Premium Dark Mode Colors */
  --bg-main: #060911;
  --bg-surface: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.9);
  --bg-glass: rgba(15, 23, 42, 0.85);
  
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(56, 189, 248, 0.3);
  --border-hover: rgba(56, 189, 248, 0.6);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-inverse: #020617;
  
  /* Aerospace Color Palette */
  --accent-sky: #38bdf8;
  --accent-cyan: #06b6d4;
  --accent-blue: #2563eb;
  --accent-indigo: #6366f1;
  --accent-emerald: #10b981;

  /* Sector Badges */
  --badge-police: rgba(56, 189, 248, 0.15);
  --badge-police-text: #38bdf8;
  --badge-forestry: rgba(16, 185, 129, 0.15);
  --badge-forestry-text: #34d399;
  --badge-wildlife: rgba(245, 158, 11, 0.15);
  --badge-wildlife-text: #fbbf24;
  --badge-defence: rgba(99, 102, 241, 0.15);
  --badge-defence-text: #818cf8;
  --badge-disaster: rgba(236, 72, 153, 0.15);
  --badge-disaster-text: #f472b6;

  --nav-bg: rgba(6, 9, 17, 0.88);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(56, 189, 248, 0.18);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.95);
  
  --border-subtle: rgba(0, 0, 0, 0.1);
  --border-accent: rgba(2, 132, 199, 0.3);
  --border-hover: rgba(2, 132, 199, 0.6);
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-inverse: #ffffff;
  
  --accent-sky: #0284c7;
  --accent-cyan: #0891b2;
  --accent-blue: #1d4ed8;
  --accent-indigo: #4338ca;
  --accent-emerald: #059669;

  --nav-bg: rgba(248, 250, 252, 0.92);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.1);

  --badge-police: rgba(2, 132, 199, 0.1);
  --badge-police-text: #0369a1;
  --badge-forestry: rgba(5, 150, 105, 0.1);
  --badge-forestry-text: #047857;
  --badge-wildlife: rgba(217, 119, 6, 0.1);
  --badge-wildlife-text: #b45309;
  --badge-defence: rgba(67, 56, 202, 0.1);
  --badge-defence-text: #3730a3;
  --badge-disaster: rgba(219, 39, 119, 0.1);
  --badge-disaster-text: #be185d;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Explicit Reset for all Interactive Controls */
button, input, select, textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Background Grid & Ambient Glow Orbs */
.bg-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 60px 60px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-sky);
  top: -150px;
  left: 30%;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--accent-indigo);
  top: 700px;
  right: -100px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header Typography */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-sky);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

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

/* Glassmorphism Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.brand-logo img {
  height: 34px;
  width: auto;
}

.logo-text {
  background: linear-gradient(135deg, #ffffff, var(--accent-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-sky);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.btn-nav-cta {
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
}

/* Theme Toggle Button */
.theme-btn {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.theme-btn:hover {
  border-color: var(--accent-sky);
  background: rgba(30, 41, 59, 0.9);
}

/* ==========================================================================
   Hero Section (#home) - Mission Focus
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 5rem 0;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.hero-center-content {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid var(--border-accent);
  color: var(--accent-sky);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-sky);
  box-shadow: 0 0 10px var(--accent-sky);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Hero Pillars Grid */
.hero-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--accent-sky);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  text-align: left;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--border-hover);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pillar-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Key Metrics Strip */
.hero-metrics-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.m-box {
  text-align: center;
}

.m-val {
  font-size: 1.75rem;
  font-weight: 900;
}

.m-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.2rem;
}

.m-divider {
  width: 1px;
  height: 35px;
  background: var(--border-subtle);
}

/* ==========================================================================
   BUTTON DESIGN SYSTEM (Completely Overhauled)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  outline: none;
  color: var(--text-main);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-sky) 0%, var(--accent-blue) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: var(--accent-sky);
  transform: translateY(-3px);
}

/* OVERHAULED SECTOR FILTER BUTTONS */
.filter-section {
  padding: 4rem 0 1.5rem 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text-muted) !important;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .filter-btn {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: #334155 !important;
}

.filter-btn:hover {
  color: var(--text-main) !important;
  border-color: var(--accent-sky) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(56, 189, 248, 0.15);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-blue)) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
}

/* Core Technology Features Grid */
.features-section {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--accent-sky);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--border-hover);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Products Fleet Grid */
.products-section {
  padding: 2rem 0 6rem 0;
}

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

.product-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--accent-sky);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--border-hover);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.product-img {
  max-width: 90%;
  max-height: 190px;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badge-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  color: var(--accent-sky);
  border: 1px solid var(--border-accent);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.product-tagline {
  font-size: 0.85rem;
  color: var(--accent-sky);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tag {
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: capitalize;
}

.tag-police { background: var(--badge-police); color: var(--badge-police-text); }
.tag-forestry { background: var(--badge-forestry); color: var(--badge-forestry-text); }
.tag-wildlife { background: var(--badge-wildlife); color: var(--badge-wildlife-text); }
.tag-defence { background: var(--badge-defence); color: var(--badge-defence-text); }
.tag-disaster { background: var(--badge-disaster); color: var(--badge-disaster-text); }

.product-quick-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
  text-align: center;
}

.qs-val {
  font-size: 1rem;
  font-weight: 800;
}

.qs-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.product-card-footer {
  margin-top: auto;
}

.btn-sm {
  width: 100%;
  padding: 0.7rem;
  font-size: 0.85rem;
}

/* Compare Tool Section */
.compare-section {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.compare-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.selector-box {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.selector-box label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.compare-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-card) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338bdf8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 1rem center/16px;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.8rem 2.5rem 0.8rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  min-width: 220px;
}

.vs-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-blue));
  color: #ffffff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 1.25rem;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  font-size: 0.95rem;
}

.compare-table th {
  background: var(--bg-card-hover);
  font-weight: 800;
  color: var(--accent-sky);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  max-width: 840px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--accent-sky);
  color: #ffffff;
}

.modal-header-flex {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.modal-img-wrap {
  width: 250px;
  height: 170px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-title-area h2 {
  font-size: 2rem;
  font-weight: 800;
}

.modal-tagline {
  color: var(--accent-sky);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.modal-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 1.75rem 0 1rem 0;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-subtle);
}

.app-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
}

.app-list li {
  background: var(--bg-card);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

.spec-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.spec-box-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.spec-box-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.25rem;
}

/* About Us Section */
.about-section {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.ah-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.ah-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Careers Section */
.careers-section {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.15);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.career-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.career-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
}

.career-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-sky);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.career-role {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.career-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.career-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-sky);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.c-icon {
  font-size: 1.5rem;
  background: rgba(56, 189, 248, 0.1);
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

.contact-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.contact-card p, .contact-card a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.form-control {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-sky);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}

.footer-logo img {
  height: 28px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .careers-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.3rem; }
  .hero-pillars-grid { grid-template-columns: 1fr; }
  .hero-metrics-strip { flex-direction: column; gap: 1rem; text-align: center; }
  .m-divider { display: none; }
  .nav-menu { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
}
