:root {
  --blue: #12586F;
  --blue-dark: #0F3E52;
  --teal: #12586F;
  --orange: #F5821F;
  --bg-light: #F4F6F7;
  --border: #D5DADD;
  --text: #202D34;
  --text-muted: #5B6770;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(15, 62, 82, 0.08);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--blue-dark); margin: 0 0 .5em; line-height: 1.25; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin: 0 0 .6em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue-dark); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* ===== Topbar ===== */
.topbar {
  background: var(--blue-dark);
  color: #cfe0e8;
  font-size: .82rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item a { color: #e7f0f4; }
.topbar-item a:hover { color: var(--orange); }
.topbar-hours { margin-left: auto; opacity: .9; }

/* ===== Header ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-head); color: var(--blue-dark); font-size: 1.05rem; letter-spacing: .02em; }
.brand-text small { color: var(--text-muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 600;
  color: var(--text);
  font-size: .95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--blue); border-color: var(--orange); }
.main-nav a.active { color: var(--blue); border-color: var(--orange); }

.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--blue-dark); border-radius: 2px; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--blue-dark) 0%, var(--teal) 55%, var(--blue) 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 80px 24px 60px;
}
.hero-copy { color: var(--white); }
.hero-copy h1 { color: var(--white); font-size: 2.5rem; }
.hero-sub { color: #dbe8ee; max-width: 46ch; margin-bottom: 1.6em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 15px 25px rgba(0,0,0,.25)); }

.hero-banner { position: relative; z-index: 1; background: var(--blue-dark); }
.hero-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  flex-wrap: wrap;
}
.hero-banner-inner span { color: var(--white); font-weight: 700; font-size: 1.05rem; }

/* ===== Features ===== */
.features { padding: 60px 0; background: var(--bg-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature { text-align: left; }
.feature-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  color: var(--blue);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.feature h3 { font-size: 1.05rem; }
.feature p { color: var(--text-muted); font-size: .92rem; margin: 0; }

/* ===== About ===== */
.about { position: relative; padding: 90px 0; overflow: hidden; }
.about-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.about-decor-dots {
  position: absolute; left: 40px; bottom: 10px;
  width: 130px; height: 130px;
  background-image: radial-gradient(var(--border) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: .7;
}
.about-intro { position: relative; z-index: 1; max-width: 760px; margin: 0 auto 56px; text-align: center; }
.about-intro .eyebrow { justify-content: center; }
.about-intro h2 { font-size: 1.9rem; }
.about-intro .about-lead { color: var(--text-muted); }
.about-showcase {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.about-art-wrap { position: relative; }
.about-blob {
  position: absolute; inset: -30px;
  background: radial-gradient(circle at 30% 30%, rgba(18,88,111,.14), transparent 65%);
  border-radius: 50%;
  z-index: -1;
}
.about-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.about-chip-1 { top: 6px; right: -14px; }
.about-copy p { color: var(--text-muted); }

@media (max-width: 720px) {
  .about-decor-dots { display: none; }
  .about-showcase { grid-template-columns: 1fr; }
  .about-chip { position: static; display: inline-block; margin: 6px 6px 0 0; }
}
.check-list { margin-top: 1.2em; }
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: .7em;
  color: var(--text);
  font-weight: 600;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
}
.check-list li::after {
  content: "";
  position: absolute; left: 5px; top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.cert-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.4em; }
.cert-strip-center { justify-content: center; margin-top: 1.8em; }
.cert-badge {
  display: inline-flex; align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .78rem;
}

/* ===== Leadership ===== */
.leadership { padding: 0 0 80px; }
.leadership-card {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.leader-photo {
  flex: none;
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.leader-title { color: var(--orange); font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 .5em; }
.leader-info h3 { margin-bottom: .15em; }
.leader-info p:last-child { color: var(--text-muted); margin: 0; font-size: .93rem; }

@media (max-width: 600px) {
  .leadership-card { flex-direction: column; text-align: center; }
}

/* ===== Explainer (animated "how it works" player) ===== */
.explainer { padding: 80px 0; }
.explainer-note { color: var(--text-muted); font-size: .85rem; font-style: italic; margin-top: -.4em; }
.explainer-player {
  position: relative;
  max-width: 800px;
  margin: 0 auto 46px;
}
.explainer-scene {
  position: relative;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(120deg, var(--blue-dark) 0%, var(--teal) 60%, var(--blue) 100%);
  box-shadow: var(--shadow);
}
.explainer-scene .road { position: absolute; left: 0; right: 0; bottom: 0; height: 64px; background: #12181c; }
.explainer-scene .lane-marks {
  position: absolute; left: 0; right: 0; bottom: 30px; height: 6px;
  background-image: repeating-linear-gradient(to right, var(--orange) 0 26px, transparent 26px 48px);
  animation: laneScroll 1.1s linear infinite;
}
.gantry { position: absolute; right: 130px; bottom: 64px; width: 14px; }
.gantry-pole { width: 10px; height: 120px; background: #0a2530; border-radius: 2px; }
.gantry-cam { position: absolute; top: 4px; left: -14px; width: 34px; height: 16px; background: #e6edf2; border-radius: 4px; }
.scan-pulse {
  position: absolute; top: 8px; left: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--orange);
  animation: scanPulse 6s linear infinite;
}
.barrier-post { position: absolute; right: 116px; bottom: 64px; width: 8px; height: 60px; background: #0a2530; border-radius: 2px; }
.barrier-arm {
  position: absolute; right: 60px; bottom: 122px;
  width: 90px; height: 8px; border-radius: 3px;
  background: repeating-linear-gradient(to right, var(--orange) 0 12px, #e6edf2 12px 24px);
  transform-origin: right center;
  animation: barrierLift 6s linear infinite;
}
.car {
  position: absolute; bottom: 64px; left: -110px;
  width: 96px; height: 34px;
  animation: carDrive 6s linear infinite;
}
.car-body { position: relative; width: 100%; height: 24px; background: #e6edf2; border-radius: 8px 8px 4px 4px; box-shadow: inset 0 -4px 0 rgba(0,0,0,.08); }
.car-body::before {
  content: ""; position: absolute; top: -12px; left: 18px; width: 46px; height: 16px;
  background: #e6edf2; border-radius: 8px 8px 0 0;
}
.car-wheel { position: absolute; bottom: -6px; width: 16px; height: 16px; border-radius: 50%; background: #12181c; }
.car-wheel-l { left: 12px; }
.car-wheel-r { right: 12px; }

.player-toggle {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,37,48,.55);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.player-toggle:hover { background: rgba(10,37,48,.8); }

.explainer-scene.paused .lane-marks,
.explainer-scene.paused .scan-pulse,
.explainer-scene.paused .barrier-arm,
.explainer-scene.paused .car { animation-play-state: paused; }

@keyframes laneScroll { from { background-position-x: 0; } to { background-position-x: -48px; } }
@keyframes carDrive { 0% { left: -110px; } 100% { left: 105%; } }
@keyframes barrierLift {
  0%, 40% { transform: rotate(0deg); }
  50%, 75% { transform: rotate(-72deg); }
  85%, 100% { transform: rotate(0deg); }
}
@keyframes scanPulse {
  0%, 34% { opacity: 0; transform: scale(.6); }
  38% { opacity: .9; transform: scale(1); }
  46%, 100% { opacity: 0; transform: scale(1.8); }
}

.explainer-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.explainer-step { display: flex; gap: 14px; }
.explainer-step span {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.explainer-step h4 { margin: 0 0 .3em; font-size: .98rem; }
.explainer-step p { margin: 0; color: var(--text-muted); font-size: .87rem; }

@media (max-width: 960px) {
  .explainer-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .gantry, .barrier-post, .barrier-arm { display: none; }
  .explainer-steps { grid-template-columns: 1fr; }
}

/* ===== Solutions ===== */
.solutions { padding: 80px 0; background: var(--bg-light); }
.section-heading { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.solution-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.solution-tile:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(15,62,82,.18); }
.tile-media { position: relative; height: 190px; overflow: hidden; }
.tile-media svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; transition: transform .3s ease; }
.solution-tile:hover .tile-media svg { transform: scale(1.05); }
.tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,48,0) 35%, rgba(10,37,48,.92) 100%);
}
.tile-label { position: absolute; left: 18px; right: 18px; bottom: 14px; }
.tile-label .tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.tile-label h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.tile-body { padding: 20px 22px 26px; }
.tile-body p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ===== Why us ===== */
.why-us { background: var(--blue-dark); padding: 60px 0; }
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.2rem; color: var(--orange); line-height: 1; margin-bottom: .3em; }
.stat span { color: #cfe0e8; font-size: .85rem; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-item h3 { color: var(--orange); font-size: 1.05rem; }
.why-item p { color: #cfe0e8; font-size: .9rem; margin: 0; }

@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Contact ===== */
.contact { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--white);
  color: var(--text);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.checkbox-field input { width: auto; margin-top: 3px; }
.form-note { min-height: 1.2em; color: var(--teal); font-weight: 600; font-size: .9rem; margin: 10px 0 0; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.info-card h4 { margin: 0 0 6px; font-size: .95rem; color: var(--blue-dark); }
.info-card p { margin: 0; color: var(--text-muted); }
.info-card a:hover { color: var(--blue); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* ===== Footer ===== */
.site-footer { background: #0A2C3A; color: #b7ccd6; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 24px 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { width: 52px; height: 52px; }
.footer-brand p { font-size: .88rem; color: #93aab5; margin: 0; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: .9rem; color: #b7ccd6; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 24px; }
.footer-bottom p { margin: 0; font-size: .82rem; text-align: center; color: #7d94a0; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar-hours { display: none; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 24px; border-bottom: 1px solid var(--border); }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-copy h1 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 24px 24px; }
}

/* ===== Inner page header (Careers / Blog) ===== */
.page-header {
  background: linear-gradient(120deg, var(--blue-dark) 0%, var(--teal) 60%, var(--blue) 100%);
  padding: 56px 0 40px;
  text-align: center;
}
.page-header h1 { color: var(--white); font-size: 2.1rem; margin-bottom: .3em; }
.breadcrumb { color: #cfe0e8; font-size: .9rem; }
.breadcrumb a { color: #e7f0f4; font-weight: 600; }
.breadcrumb a:hover { color: var(--orange); }

/* ===== Careers page ===== */
.why-work { padding: 70px 0; }
.why-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
}
.why-work-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.why-work-card h3 { font-size: 1.05rem; }
.why-work-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }

.openings { padding: 0 0 80px; }
.openings-panel {
  background: var(--bg-light);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.openings-panel h3 { margin-bottom: .5em; }
.openings-panel p { color: var(--text-muted); margin-bottom: 1.4em; }

/* ===== Blog page ===== */
.blog-list { padding: 70px 0 90px; }
.blog-empty {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 50px 30px;
  background: var(--bg-light);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.blog-empty .feature-icon { margin: 0 auto 18px; }
.blog-empty h3 { margin-bottom: .5em; }
.blog-empty p { color: var(--text-muted); margin: 0; }

@media (max-width: 720px) {
  .why-work-grid { grid-template-columns: 1fr; }
}

