/* ============================================================
   SELLERS LOGISTICS & PRODUCTIONS — MAIN STYLESHEET
   Brand colors:
     Primary:   #015487  (deep ocean blue)
     Accent:    #b0c636  (electric lime)
     Secondary: #319db3  (clear teal)
     Light bg:  #e0edf3  (pale sky)
     Dark:      #0a0f1a  (near black)
     White:     #ffffff
   ============================================================ */

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

:root {
  --primary:   #015487;
  --accent:    #b0c636;
  --secondary: #319db3;
  --light:     #e0edf3;
  --dark:      #0a0f1a;
  --white:     #ffffff;
  --font-main: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  --transition: 0.3s ease;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { max-width: 70ch; }

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

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-dark  { background: var(--dark); }
.section-navy  { background: var(--primary); }
.section-light { background: var(--light); color: var(--dark); }
.section-mid   { background: #0d1a2b; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-accent {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent:hover {
  background: #c8dc3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(176,198,54,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: var(--dark);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: #015487;
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  align-items: center;
  text-align: center;
}
.nav-logo .logo-primary {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-logo .logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-cta-pair {
  display: flex;
  gap: 0.5rem;
  margin-left: 0.5rem;
  align-items: center;
}
.nav-cta-pair .btn {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 90vw);
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; padding: 0.75rem 1rem; width: 100%; }
  .nav-cta-pair { flex-direction: column; width: 100%; margin-left: 0; margin-top: 1rem; gap: 0.5rem; }
  .nav-cta-pair .btn { width: 100%; justify-content: center; padding: 0.75rem 1rem; font-size: 1rem; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #015487; /* fallback so bottom always matches stats bar */
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(1,14,30,0.88) 0%,
    rgba(1,84,135,0.65) 50%,
    rgba(10,15,26,0.85) 100%
  );
  z-index: 1;
}
/* Placeholder when no video: */
.hero-video-wrap.no-video {
  background: linear-gradient(160deg, #010e1e 0%, #015487 60%, #0a0f1a 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow .line {
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.hero-eyebrow span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 54ch;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-badges {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  align-items: center;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  white-space: nowrap;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(176,198,54,0.7);
}

/* ---- Credentials Bar ---- */
.creds-bar {
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.creds-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 3rem;
}
.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0;
}
.cred-item .cred-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cred-item .cred-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}
.cred-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
@media (max-width: 600px) {
  .cred-divider { display: none; }
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin: 0 auto;
}
.section-light .section-header p { color: rgba(10,15,26,0.65); }

/* ---- Services Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(2, 10, 22, 0.65);
  border: 1px solid rgba(176,198,54,0.3);
  border-radius: 10px;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.service-card:hover {
  border-color: rgba(176,198,54,0.65);
  background: rgba(2, 10, 22, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(176,198,54,0.2);
  cursor: pointer;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(1,84,135,0.4);
  border: 1px solid rgba(49,157,179,0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-card .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  background: rgba(176,198,54,0.15);
  color: var(--accent);
  border: 1px solid rgba(176,198,54,0.4);
}

/* ---- Equipment Showcase ---- */
.equipment-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.equipment-hero-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}
.equipment-hero-text p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}
.equipment-visual {
  background: linear-gradient(135deg, #0d1a2b, #015487);
  border: 1px solid rgba(49,157,179,0.3);
  border-radius: 12px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 0.75rem;
}
.equipment-visual .eq-icon { font-size: 3rem; opacity: 0.3; }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.eq-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 1.5rem;
  transition: var(--transition);
}
.eq-card:hover {
  border-color: var(--accent);
  background: rgba(176,198,54,0.05);
}
.eq-card h4 { color: var(--accent); margin-bottom: 0.25rem; font-size: 0.95rem; }
.eq-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; max-width: 100%; }

/* ---- How We Operate / Trust Row ---- */
.how-we-operate-body {
  max-width: 800px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.how-we-operate-body p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
  margin-bottom: 1.25rem;
}
.how-we-operate-body p:last-child { margin-bottom: 0; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.trust-card {
  background: rgba(2, 10, 22, 0.65);
  border: 1px solid rgba(176,198,54,0.25);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  transition: var(--transition);
}
.trust-card:hover {
  border-color: rgba(176,198,54,0.55);
  background: rgba(2, 10, 22, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.trust-card h4 {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.trust-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  line-height: 1.65;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .trust-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .trust-row { grid-template-columns: repeat(1, 1fr); }
}

/* ---- Industries ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.industry-pill {
  background: rgba(1,84,135,0.3);
  border: 1px solid rgba(49,157,179,0.2);
  border-radius: 10px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.industry-pill:hover {
  background: rgba(1,84,135,0.55);
  border-color: rgba(176,198,54,0.6);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35), 0 0 0 1px rgba(176,198,54,0.15);
}
.industry-pill-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.industry-pill-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
}
.industry-pill-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.industry-pill-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #013a60 100%);
  border-top: 1px solid rgba(176,198,54,0.2);
  border-bottom: 1px solid rgba(176,198,54,0.2);
  text-align: center;
  padding: 5rem 0;
}
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ---- Services Page ---- */
.service-full {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-full:last-child { border-bottom: none; }
.service-full-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.service-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(176,198,54,0.15);
  line-height: 1;
  letter-spacing: -0.04em;
}
.service-full h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.service-full .service-desc {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  max-width: 65ch;
}
.deliverables-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
  margin-bottom: 1.5rem;
}
.deliverable-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.deliverable-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.client-types {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.disclaimer-box {
  background: rgba(176,198,54,0.07);
  border: 1px solid rgba(176,198,54,0.2);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.disclaimer-box strong { color: var(--accent); }

/* ---- Equipment Page ---- */
.eq-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0 3rem;
}
.eq-hero-visual {
  background: linear-gradient(135deg, #010e1e 0%, #015487 100%);
  border-radius: 16px;
  border: 1px solid rgba(49,157,179,0.4);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eq-hero-visual .big-icon { font-size: 5rem; opacity: 0.25; }
.eq-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.eq-spec {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 0.85rem;
}
.eq-spec .spec-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}
.eq-spec .spec-value { font-size: 0.9rem; font-weight: 600; }
.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.software-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.75rem;
  transition: var(--transition);
}
.software-card:hover {
  border-color: var(--accent);
  background: rgba(176,198,54,0.06);
}
.software-card h4 { color: var(--accent); margin-bottom: 0.5rem; }
.software-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); max-width: 100%; }

/* ---- Portfolio Page ---- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.portfolio-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-item:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.portfolio-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0d1a2b, #015487);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.portfolio-info {
  padding: 1.25rem;
}
.portfolio-info h4 { margin-bottom: 0.3rem; }
.portfolio-info p { font-size: 0.85rem; color: rgba(255,255,255,0.55); max-width: 100%; }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(1,84,135,0.5);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}
.contact-detail-text a { color: var(--white); transition: var(--transition); }
.contact-detail-text a:hover { color: var(--accent); }
.service-area-note {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(49,157,179,0.08);
  border: 1px solid rgba(49,157,179,0.2);
  border-radius: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.service-area-note strong { color: var(--secondary); }
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(49,157,179,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: #0d1a2b; color: var(--white); }

/* ---- Pilot Network Page ---- */
.pilot-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3rem;
}
.pilot-intro h2 { margin-bottom: 1rem; }
.pilot-intro p { color: rgba(255,255,255,0.65); }
.pilot-benefits {
  display: grid;
  gap: 0.75rem;
}
.pilot-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
}
.pilot-benefit-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.pilot-benefit h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.pilot-benefit p { font-size: 0.85rem; color: rgba(255,255,255,0.55); max-width: 100%; }
/* ---- Checkbox / Radio Pill Buttons ---- */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
}
.checkbox-grid-certs {
  grid-template-columns: repeat(2, 1fr);
}
.checkbox-grid-industries {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  user-select: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.35;
}
.checkbox-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.9);
}
.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-item:has(input[type="checkbox"]:checked),
.checkbox-item:has(input[type="radio"]:checked) {
  background: rgba(176,198,54,0.12);
  border-color: rgba(176,198,54,0.55);
  color: var(--accent);
}
.checkbox-item:has(input[type="checkbox"]:checked):hover,
.checkbox-item:has(input[type="radio"]:checked):hover {
  background: rgba(176,198,54,0.18);
  border-color: rgba(176,198,54,0.75);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(160deg, #010e1e 0%, #015487 60%, #0a0f1a 100%);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 58ch;
}

/* ---- Footer ---- */
footer {
  background: #060b14;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-primary {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}
.footer-brand .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
  display: block;
}
.footer-brand p {
  margin-top: 1rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  max-width: 30ch;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); max-width: 100%; }
.footer-certs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cert-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(49,157,179,0.35);
  color: var(--secondary);
}

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- Success Message ---- */
.form-success {
  display: none;
  background: rgba(176,198,54,0.1);
  border: 1px solid rgba(176,198,54,0.35);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pilot-intro { grid-template-columns: 1fr; }
  .eq-hero-grid { grid-template-columns: 1fr; }
  .equipment-hero { grid-template-columns: 1fr; }
  .service-full-inner { grid-template-columns: 1fr; }
}

/* ---- About Snapshot Grid ---- */
.about-snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .deliverables-list { grid-template-columns: 1fr; }
  .eq-specs { grid-template-columns: 1fr; }
  .hero h1 { max-width: 100%; }
  .creds-inner { gap: 1.5rem 2rem; }

  /* About snapshot: single column on mobile */
  .about-snapshot-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Hero badges: wrap naturally, lime color to match eyebrow */
  .hero-badges {
    flex-wrap: wrap;
    gap: 0.6rem 1.25rem;
  }
  .hero-badges .hero-badge {
    color: var(--accent);
    text-shadow: none;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 480px) {
  .btn { padding: 0.7rem 1.25rem; font-size: 0.9rem; }
  .form-card { padding: 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ---- Animated Hero Gradient ---- */
@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-animated-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -45deg,
    #010e1e,
    #015487,
    #015487,
    #0c3e6a,
    #4a5c14,
    #0c3e6a,
    #015487,
    #015487,
    #319db3,
    #015487,
    #0d2e4a,
    #010e1e
  );
  background-size: 600% 600%;
  animation: heroGradientShift 20s ease infinite;
  z-index: 0;
}

/* ---- Pilot Network Page — Animated Gradient Background ---- */
body.page-pilot-network {
  position: relative;
}
body.page-pilot-network::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(
    -45deg,
    #010e1e,
    #015487,
    #015487,
    #0c3e6a,
    #4a5c14,
    #0c3e6a,
    #015487,
    #015487,
    #319db3,
    #015487,
    #0d2e4a,
    #010e1e
  );
  background-size: 600% 600%;
  animation: heroGradientShift 20s ease infinite;
  z-index: -1;
  pointer-events: none;
}
body.page-pilot-network .page-hero {
  background: transparent;
}
body.page-pilot-network .page-hero::after {
  display: none;
}
body.page-pilot-network .section-dark {
  background: rgba(0, 12, 24, 0.62);
}
body.page-pilot-network .section-mid {
  background: rgba(0, 10, 22, 0.52);
}
body.page-pilot-network footer {
  background: rgba(0, 8, 18, 0.82);
}
body.page-pilot-network .form-card {
  background: rgba(0, 12, 28, 0.6);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
}

/* ---- Hero Full-Split Layout ---- */

/* Hard colour-match to stats bar — eliminates any visible seam */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to bottom, transparent 0%, #015487 50%, #015487 100%);
  z-index: 10;
  pointer-events: none;
}

.hero-left {
  flex: 1;
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  padding: 9rem 5vw 7rem;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 100%);
}
.hero-left-inner {
  max-width: 580px;
  width: 100%;
}
.hero-body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.62);
  max-width: 52ch;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

/* Right side — gradient breathes around the card on all 4 sides */
.hero-right {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 4rem 4rem 1rem;
  /* top: 6rem clears navbar + shows gradient above
     right/bottom: 4rem equal breathing room
     left: 1rem pulls card toward center of page */
}

/* Large floating video card */
.hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(49,157,179,0.5);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 32px 90px rgba(0,0,0,0.8),
    0 0 60px rgba(1,84,135,0.4);
  background: #060e1a;
  z-index: 3;
}
.hero-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.18);
  background: linear-gradient(135deg, #060e1a, #0d1f35);
}
.hero-card-placeholder .ph-icon { font-size: 3.5rem; opacity: 0.2; }
.hero-card-placeholder .ph-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: stretch; }
  .hero::after { height: 120px; background: linear-gradient(to bottom, transparent 0%, #015487 60%); }
  .hero-left { padding: 7rem 1.5rem 2.5rem; flex: none; background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.15)); }
  .hero-right { padding: 2rem 1.5rem 3rem; flex: none; }
  .hero-video-frame { width: 100%; }
}

/* ---- CTA Button Group (for banners) ---- */
.cta-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* industry-pill link styles handled in base rule above */

/* ---- Section eyebrow with icon ---- */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.section-eyebrow .section-label { margin-bottom: 0; }

/* ---- Industries Page ---- */
.industry-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.industry-section:last-child { border-bottom: none; }
.industry-section-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}
.industry-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(176,198,54,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
}
.industry-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.industry-desc {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  max-width: 64ch;
}
@media (max-width: 760px) {
  .industry-section-inner { grid-template-columns: 1fr; gap: 1rem; }
  .industry-num { font-size: 2.5rem; }
}

/* ---- About Page ---- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
  padding: 2rem 0 3rem;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.about-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.about-stat .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-stat .stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}
.credential-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.credential-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.experience-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.75rem;
  transition: var(--transition);
}
.experience-card:hover {
  border-color: var(--secondary);
  background: rgba(49,157,179,0.07);
}
.experience-card h4 { color: var(--accent); margin-bottom: 0.5rem; font-size: 1rem; }
.experience-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); max-width: 100%; }
.drones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
}
