:root {
  --accent: #f5a623;
  --accent-dark: #c47e08;
  --accent-light: #f8bf60;
  --alert: #ff5a4e;
  --alert-dark: #e2402f;
  --navy-950: #05070b;
  --navy-900: #0a0e15;
  --navy-800: #10151f;
  --navy-700: #171d2b;
  --navy-600: #232b3d;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef1f6;
  --muted: #9aa4b7;
  --muted-dark: #6b7486;
  --radius: 12px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  --max-width: 1200px;
  --font-display: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--navy-900);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: #fff; line-height: 1.18; }

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 16px 0 0;
  font-size: 0.82rem;
  color: var(--muted-dark);
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span[aria-hidden] { margin: 0 6px; }

/* Top utility bar */
.top-bar {
  background: var(--navy-950);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.top-bar a { color: var(--muted); }
.top-bar .top-call { color: var(--accent-light); font-weight: 600; }
.top-bar .top-left { display: flex; gap: 18px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 21, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav > a,
.has-dropdown > a {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--text);
  opacity: 0.82;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a[aria-current="page"],
.has-dropdown > a:hover,
.has-dropdown > a[aria-current="page"] { opacity: 1; color: var(--accent-light); }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " ▾"; font-size: 0.7em; opacity: 0.7; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  background: var(--navy-800);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 8px;
  min-width: 260px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 60;
}

/* Transparent bridge across the 14px gap so the menu stays open
   while the cursor travels from "Services" down to the items. */
.dropdown::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.9;
}
.dropdown a:hover { background: var(--navy-700); opacity: 1; color: var(--accent-light); }
.dropdown a small { display: block; color: var(--muted); font-weight: 400; font-size: 0.78rem; margin-top: 2px; }

.nav-cta {
  background: var(--accent);
  color: var(--navy-950) !important;
  padding: 11px 20px;
  border-radius: 999px;
  opacity: 1 !important;
  font-weight: 700;
}

.nav-cta:hover { background: var(--accent-light); }

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.nav-call svg { flex: none; color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* Eyebrow / badges */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--alert);
  box-shadow: 0 0 0 4px rgba(255, 90, 78, 0.22);
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(245, 166, 35, 0.10), transparent),
              linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  padding: 88px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.85rem;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.hero h1 .hl { color: var(--accent); }

.hero p.lead {
  font-size: 1.12rem;
  color: #c2c9d3;
  margin: 0 0 32px;
  max-width: 48ch;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s, background 0.15s, border-color 0.15s;
  font-family: var(--font-body);
}

.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--accent); color: var(--navy-950); }
.btn-primary:hover { background: var(--accent-light); }

.btn-alert { background: var(--alert); color: #fff; }
.btn-alert:hover { background: var(--alert-dark); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: #fff; }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }

.hero-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hero-photo .tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(5,7,11,0.78);
  border: 1px solid var(--border-strong);
  padding: 10px 14px; border-radius: 10px;
  font-size: 0.8rem; display: flex; align-items: center; gap: 8px;
}
.hero-photo .tag .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--alert);
  box-shadow: 0 0 0 3px rgba(255,90,78,0.3);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* Stats / trust bar */
.stat-bar {
  background: var(--navy-950);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-grid .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-grid .label { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

/* Sections */
section { padding: 84px 0; }
.section-alt { background: var(--navy-800); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head h2 { font-size: 2.1rem; letter-spacing: -0.01em; margin: 0 0 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-head.left { text-align: left; margin: 0 0 40px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card h3 { margin: 0 0 10px; font-size: 1.12rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card a.card-link { display: inline-block; margin-top: 14px; color: var(--accent-light); font-weight: 600; font-size: 0.88rem; }
.card a.card-link:hover { color: var(--accent); }

/* Industry / service tiles with image */
.tile {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy-700);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.tile .tile-img { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-600); }
.tile .tile-img img { width: 100%; height: 100%; object-fit: cover; }
.tile .tile-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tile h3 { font-size: 1.1rem; margin: 0 0 8px; }
.tile p { color: var(--muted); font-size: 0.93rem; margin: 0 0 16px; flex: 1; }

/* Steps / process */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { position: relative; padding-left: 4px; }
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 18px;
}
.step h3 { margin: 0 0 8px; font-size: 1.06rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Checklist */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.checklist li::before {
  content: "✓";
  flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(245,166,35,0.15); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; margin-top: 2px;
}

/* FAQ accordion */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 24px;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 400;
  flex: none;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); margin: 0 0 20px; font-size: 0.96rem; }

/* Areas served */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}
.area-card h4 { margin: 0 0 4px; font-size: 1rem; color: #fff; }
.area-card span { color: var(--muted-dark); font-size: 0.8rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950) 0%, #150f08 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.cta-band h2 { font-size: 2.1rem; margin: 0 0 12px; letter-spacing: -0.01em; }
.cta-band p { color: var(--muted); margin: 0 0 28px; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* Quote / contact form */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.split h2 { font-size: 1.9rem; margin: 0 0 16px; letter-spacing: -0.01em; }
.split p { color: var(--muted); margin: 0 0 16px; }

.contact-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-card h3 { margin: 0 0 20px; font-size: 1.2rem; }

.contact-row { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--border); }
.contact-row:first-of-type { border-top: none; }
.contact-row .label { color: var(--muted-dark); font-size: 0.85rem; min-width: 90px; }
.contact-row .value { font-weight: 600; color: #fff; }
.contact-row .value a:hover { color: var(--accent-light); }

form.contact-form { margin-top: 8px; display: grid; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form label { font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; display: block; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--navy-800);
  color: #fff;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted-dark); }
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form button { justify-self: start; }
.form-note { font-size: 0.85rem; color: var(--muted-dark); margin-top: 4px; }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--muted);
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-grid .brand { margin-bottom: 14px; }
.footer-grid .brand img { height: 30px; }
.footer-grid p { font-size: 0.9rem; max-width: 34ch; }
.footer-grid h4 {
  color: #fff; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.06em; margin: 0 0 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { font-size: 0.9rem; }
.footer-grid a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--alert);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 980px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .top-bar { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .grid-2, .grid-3, .grid-4, .steps, .split, .footer-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .main-nav {
    position: fixed; inset: 76px 0 0 0; background: var(--navy-950);
    flex-direction: column; padding: 24px; gap: 4px; display: none;
    align-items: stretch; overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 14px 4px; border-bottom: 1px solid var(--border); opacity: 1; }
  .nav-call { padding: 14px 4px; }
  .has-dropdown .dropdown {
    position: static; display: block; margin-top: 0; border: none;
    background: var(--navy-900); box-shadow: none; padding-left: 12px;
  }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 2rem; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 58px; }
}
