/* =========================================================
   DRIVE LINK DISPATCH — styles.css
   Dark navy + orange industrial. Plain CSS, no build step.
   ========================================================= */

:root {
  /* Palette */
  --bg: #0A1628;
  --surface: #11243D;
  --border: #1E3A5F;
  --text: #E8EEF5;
  --muted: #9FB1C4;
  --accent: #F97316;
  --accent-hover: #FB8B3C;

  /* Derived */
  --surface-2: #0E1E33;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.7);

  /* Type */
  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --maxw: 1140px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --radius: 6px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Faint industrial grid texture */
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.18) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

p { margin: 0; }

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

.accent { color: var(--accent); }
.muted { color: var(--muted); font-weight: 400; }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: #0A0F18;
  font-weight: 700;
  padding: 0.65rem 1rem;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--surface { background: var(--surface-2); border-block: 1px solid var(--border); }

.section__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__eyebrow {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}
.section__title { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
.section__lead { color: var(--muted); font-size: 1.1rem; margin-top: 0.9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.2rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
  font-size: 0.95rem;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 0.95rem 1.7rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--accent {
  background: var(--accent);
  color: #160B02;
  border-color: var(--accent);
}
.btn--accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Hazard stripe motif ---------- */
.hazard {
  height: 12px;
  width: 100%;
  background-image: repeating-linear-gradient(
    135deg,
    var(--accent) 0,
    var(--accent) 18px,
    #0A0F18 18px,
    #0A0F18 36px
  );
}
.hazard--divider { height: 14px; opacity: 0.92; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

/* Wordmark */
.wordmark { display: inline-flex; align-items: center; gap: 0.7rem; }
.wordmark__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #160B02;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 82% 100%, 0 100%);
}
.wordmark__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--text);
}
.wordmark__sub {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  color: var(--muted);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__cta { color: #160B02 !important; }
.nav__cta:hover { color: #160B02 !important; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0 10px;
}
.nav__toggle span {
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem var(--gutter) 1.25rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .nav__links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links a {
    padding: 0.95rem 0.2rem;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav__cta {
    margin-top: 0.9rem;
    border-bottom: none !important;
    background: var(--accent);
    border-radius: var(--radius);
    text-align: center;
    justify-content: center;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(249, 115, 22, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--surface-2));
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  padding-block: clamp(3.5rem, 11vw, 8rem);
  max-width: 860px;
}
.hero__eyebrow {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  margin-bottom: 1.3rem;
}
.hero__title {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.hero__sub {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  max-width: 660px;
  margin-top: 1.6rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* =========================================================
   EQUIPMENT
   ========================================================= */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.equip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.7rem;
  transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.equip-card:hover {
  transform: translateY(-4px);
  background: #13294a;
}
.equip-card__icon {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.2rem;
}
.equip-icon {
  width: 100%;
  height: auto;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.equip-card__name {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.equip-card__desc { color: var(--muted); font-size: 0.98rem; }

/* Secondary equipment line (subordinate) */
.equip-also {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px dashed var(--border);
}
.equip-also__icons { display: inline-flex; gap: 0.9rem; }
.equip-mini {
  width: 64px;
  height: auto;
  color: var(--muted);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
}
.equip-also__text { color: var(--muted); font-size: 1rem; }
.equip-also__text strong { color: var(--text); font-weight: 600; }

/* =========================================================
   WHY US — pillars
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
}
.pillar__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
}
.pillar__icon svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar__title { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.55rem; }
.pillar__desc { color: var(--muted); font-size: 0.97rem; }

/* =========================================================
   HOW IT WORKS — steps
   ========================================================= */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem 1.6rem;
}
.step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}
.step__title { font-size: 1.18rem; font-weight: 800; margin-bottom: 0.5rem; }
.step__desc { color: var(--muted); font-size: 0.97rem; }

/* =========================================================
   TRUST BAND
   ========================================================= */
.trust {
  background:
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border-block: 1px solid var(--border);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.trust__inner { max-width: 920px; }
.trust__statement {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  line-height: 1.25;
}
.chips {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.chip {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

/* Form */
.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: #61788f; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%239FB1C4' stroke-width='1.8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.form__status {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form__status.is-success { color: #4ade80; }
.form__status.is-error { color: #f87171; }

/* Honeypot */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Direct contact */
.contact__direct {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 1.9rem);
}
.contact__direct-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.4rem; }
.contact__direct-lead { color: var(--muted); font-size: 0.97rem; margin-bottom: 1.3rem; }

.contact-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.7rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, transform 0.05s ease;
}
.contact-item:hover { border-color: var(--accent); }
.contact-item__icon {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
}
.contact-item__icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  color: var(--muted);
}
.contact-item__value { display: block; font-weight: 600; font-size: 0.97rem; word-break: break-word; }

.contact__assure {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--surface-2); border-top: 1px solid var(--border); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.footer__tag { color: var(--muted); font-size: 0.95rem; margin-top: 1rem; max-width: 320px; }
.footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a, .footer__contact a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--accent); }
.footer__contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__bar { border-top: 1px solid var(--border); padding-block: 1.2rem; }
.footer__bar p { color: var(--muted); font-size: 0.85rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .equip-grid, .pillars, .steps { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .equip-grid, .pillars, .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}
