@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600&family=Share+Tech+Mono&display=swap');

:root {
  --col-bg: #0a0c0f;
  --col-surface: #111418;
  --col-surface2: #171b21;
  --col-border: #1e2530;
  --col-red: #e03a1e;
  --col-red-glow: #ff4d2e;
  --col-blue: #1ab4f5;
  --col-blue-dim: #0d7fb0;
  --col-silver: #c8d4e0;
  --col-silver-dim: #7a8fa0;
  --col-white: #f0f4f8;
  --col-muted: #4a5a6a;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--col-bg);
  color: var(--col-silver);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,180,245,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,180,245,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10,12,15,0.92);
  border-bottom: 1px solid var(--col-border);
  backdrop-filter: blur(12px);
  overflow: visible;
}

/* Push nav down when WP admin bar is visible */
.admin-bar .site-nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-nav {
        top: 46px;
    }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark { width: 38px; height: 38px; }
.nav-logo-mark svg { width: 100%; height: 100%; }

.nav-logo .custom-logo-link {
    display: flex;
    align-items: center;
}

.nav-logo .custom-logo {
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.nav-logo .custom-logo-link,
.nav-logo .custom-logo-link img,
.nav-logo img,
.site-nav img {
    height: 60px !important;
    width: auto !important;
    max-width: 280px !important;
    object-fit: contain !important;
    display: block !important;
    background: transparent !important;
    mix-blend-mode: lighten;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.nav-logo-text span { display: block; }
.nav-logo-text .t1 { color: var(--col-white); font-size: 20px; }
.nav-logo-text .t2 { color: var(--col-blue); font-size: 13px; letter-spacing: 0.2em; font-weight: 500; }

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

.nav-menu a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--col-silver-dim);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--col-red);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-menu a:hover { color: var(--col-white); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--col-white);
  background: var(--col-red);
  border: none;
  padding: 10px 22px;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--col-red-glow); transform: translateY(-1px); color: var(--col-white); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(26,180,245,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(224,58,30,0.08) 0%, transparent 60%);
}

.hero-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--col-blue), transparent);
  animation: scanline 4s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes scanline {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { top: 100%; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--col-blue);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--col-blue);
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--col-white);
  margin-bottom: 8px;
  animation: fadeUp 0.8s ease both;
}

.hero-h1 .accent { color: var(--col-red); }

.hero-h1-sub {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--col-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-desc {
  font-size: 17px;
  color: var(--col-silver-dim);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.18;
  animation: fadeIn 1.2s 0.5s ease both;
}

.hero-visual svg { width: 100%; height: 100%; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 0.18; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-reverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
.spin-slow { animation: spin-slow 12s linear infinite; transform-origin: center; }
.spin-reverse { animation: spin-reverse 8s linear infinite; transform-origin: center; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--col-white);
  background: var(--col-red);
  border: none;
  padding: 14px 32px;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover { background: var(--col-red-glow); transform: translateY(-2px); color: var(--col-white); }

.btn-secondary {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--col-blue);
  background: transparent;
  border: 1px solid var(--col-blue-dim);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(26,180,245,0.08);
  border-color: var(--col-blue);
  transform: translateY(-2px);
  color: var(--col-blue);
}

/* ── TRUST BAR ── */
.trust-bar {
  position: relative;
  z-index: 1;
  background: var(--col-surface);
  border-top: 1px solid var(--col-border);
  border-bottom: 1px solid var(--col-border);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-icon { width: 20px; height: 20px; color: var(--col-blue); flex-shrink: 0; }

.trust-item span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--col-silver-dim);
}

.trust-divider { width: 1px; height: 24px; background: var(--col-border); flex-shrink: 0; }

/* ── SECTION SHARED ── */
section { position: relative; z-index: 1; }

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--col-blue);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--col-blue);
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--col-white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-h2 .accent { color: var(--col-red); }

.section-intro {
  font-size: 17px;
  color: var(--col-silver-dim);
  max-width: 580px;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services { padding: 100px 48px; }
.services-header { margin-bottom: 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--col-red);
  transition: height 0.3s;
}

.service-card:hover::before { height: 100%; }
.service-card:hover { border-color: rgba(224,58,30,0.3); }

.service-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--col-muted);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.service-icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--col-blue); }

.service-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--col-white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.service-desc {
  font-size: 14px;
  color: var(--col-silver-dim);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid var(--col-border);
  color: var(--col-muted);
  text-transform: uppercase;
}

/* ── WHY ── */
.why {
  padding: 100px 48px;
  background: var(--col-surface);
  border-top: 1px solid var(--col-border);
  border-bottom: 1px solid var(--col-border);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-list { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }

.why-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start; }

.why-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 400;
  color: var(--col-border);
  line-height: 1;
  padding-top: 4px;
}

.why-item-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--col-white);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.why-item-desc { font-size: 14px; color: var(--col-silver-dim); line-height: 1.65; }

.cert-panel {
  background: var(--col-surface2);
  border: 1px solid var(--col-border);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.cert-panel::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  border-top: 2px solid var(--col-red);
  border-right: 2px solid var(--col-red);
}

.cert-panel-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--col-blue);
  margin-bottom: 28px;
}

.cert-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.cert-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--col-silver);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cert-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--col-red);
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }

.tool-chip {
  background: var(--col-bg);
  border: 1px solid var(--col-border);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--col-silver-dim);
  text-align: center;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.tool-chip:hover { border-color: var(--col-blue-dim); color: var(--col-blue); }

/* ── FLEET ── */
.fleet { padding: 100px 48px; }

.fleet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fleet-visual {
  position: relative;
  height: 360px;
  border: 1px solid var(--col-border);
  overflow: hidden;
  background: var(--col-surface);
}

.fleet-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  gap: 2px;
}

.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; }

.stat-box {
  background: var(--col-surface2);
  padding: 24px 20px;
  border: 1px solid var(--col-border);
  text-align: center;
}

.stat-val {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--col-white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-val .unit { color: var(--col-red); font-size: 22px; }

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--col-muted);
  text-transform: uppercase;
}

.fleet-benefits { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }

.fleet-benefits li { display: flex; gap: 16px; align-items: flex-start; }

.fleet-check { width: 20px; height: 20px; flex-shrink: 0; color: var(--col-red); margin-top: 2px; }

.fleet-benefits strong {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--col-white);
  font-size: 15px;
  display: block;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.fleet-benefits p { font-size: 13px; color: var(--col-silver-dim); line-height: 1.5; }

/* ── PROCESS ── */
.process {
  padding: 100px 48px;
  background: var(--col-surface);
  border-top: 1px solid var(--col-border);
  border-bottom: 1px solid var(--col-border);
}

.process-header { margin-bottom: 60px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--col-red), var(--col-blue));
  z-index: 0;
}

.process-step { padding: 0 24px; position: relative; z-index: 1; }

.step-dot {
  width: 72px; height: 72px;
  background: var(--col-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.step-dot-num { font-family: var(--font-mono); font-size: 22px; color: var(--col-red); }

.step-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--col-white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.step-desc { font-size: 13px; color: var(--col-silver-dim); line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band {
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(224,58,30,0.12) 0%, transparent 70%);
}

.cta-band-content { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--col-white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.cta-band h2 .accent { color: var(--col-red); }
.cta-band p { font-size: 17px; color: var(--col-silver-dim); max-width: 520px; margin: 0 auto 36px; }

.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-location {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--col-muted);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--col-surface);
  border-top: 1px solid var(--col-border);
  padding: 60px 48px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--col-silver-dim);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--col-white);
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: var(--col-silver-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--col-blue); }

.footer-contact-item {
  font-size: 14px;
  color: var(--col-silver-dim);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--col-red); margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid var(--col-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-family: var(--font-mono); font-size: 11px; color: var(--col-muted); letter-spacing: 0.1em; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ── INNER PAGE ── */
.page-wrap {
  padding-top: 72px;
  min-height: 60vh;
}

.page-hero {
  padding: 80px 48px 60px;
  border-bottom: 1px solid var(--col-border);
}

.page-content {
  padding: 60px 48px;
  max-width: 800px;
}

.page-content h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--col-white);
  margin: 32px 0 12px;
}

.page-content p { color: var(--col-silver-dim); line-height: 1.7; margin-bottom: 16px; }

/* ── CONTACT FORM ── */
.contact-wrap { padding: 80px 48px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--col-blue);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--col-surface2);
  border: 1px solid var(--col-border);
  color: var(--col-white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--col-blue); }

.form-group textarea { min-height: 140px; resize: vertical; }

.form-group select { cursor: pointer; }

.wpcf7-submit { width: 100%; margin-top: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-menu { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-visual { display: none; }
  .services, .fleet, .cta-band { padding: 64px 24px; }
  .why, .process { padding: 64px 24px; }
  .why-inner, .fleet-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 48px 24px 24px; }
  .trust-bar { padding: 16px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { padding: 48px 24px; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
