:root {
  --c-primary: #01164d;
  --c-success: #269721;
  --c-accent: #f87204;
  --c-deep: #01164d;
  --c-dark: #050505;
  --c-text: #132b46;
  --c-text-muted: #576f87;
  --c-bg: #f1f2f4;
  --c-surface: #ffffff;
  --c-line: rgba(1, 22, 77, 0.14);
  --shadow-lg: 0 22px 50px rgba(1, 22, 77, 0.16);
  --shadow-md: 0 12px 28px rgba(1, 22, 77, 0.1);
  --radius-lg: 20px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--c-text);
  line-height: 1.65;
  background: var(--c-bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: "Rajdhani", sans-serif;
  color: #0d2035;
  line-height: 1.12;
  letter-spacing: 0.2px;
}

h1 {
  font-size: clamp(2.1rem, 4.7vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

p,
li {
  color: var(--c-text-muted);
}

a {
  color: var(--c-primary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--c-deep);
}

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

iframe,
video,
canvas,
svg {
  max-width: 100%;
}

p,
li,
a,
h1,
h2,
h3,
h4 {
  overflow-wrap: anywhere;
}

.container {
  width: min(1240px, calc(100% - 2.1rem));
  margin-inline: auto;
}

.section {
  padding: clamp(2.8rem, 6vw, 5rem) 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-deep);
  color: #fff;
  padding: 0.7rem 0.95rem;
  border-radius: 8px;
  z-index: 1200;
  font-weight: 700;
}

.skip-link:focus {
  left: 0.7rem;
  top: 0.7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-strip {
  background: var(--c-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip-inner {
  min-height: 2.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.83rem;
}

.top-strip-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.top-strip-left p,
.top-strip-left a {
  margin: 0;
  color: #e4efff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dot {
  width: 0.33rem;
  height: 0.33rem;
  border-radius: 50%;
  background: var(--c-success);
  flex: 0 0 auto;
}

.top-call {
  background: linear-gradient(135deg, var(--c-success), var(--c-accent));
  color: #fff;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.nav-wrap {
  position: relative;
  overflow: clip;
  background: #fff;
  border-bottom: 1px solid rgba(1, 22, 77, 0.12);
  box-shadow: 0 8px 20px rgba(1, 22, 77, 0.08);
}

.nav-wrap::before,
.nav-wrap::after {
  content: none;
  position: absolute;
  top: 0;
  width: 5.2rem;
  height: 100%;
  pointer-events: none;
}

.nav-wrap::before {
  left: -1.1rem;
  background: linear-gradient(126deg, transparent 0 45%, var(--c-accent) 46% 57%, transparent 58% 100%);
}

.nav-wrap::after {
  right: -1.3rem;
  background: linear-gradient(235deg, transparent 0 44%, var(--c-accent) 45% 62%, transparent 63% 100%);
}

.nav-row {
  min-height: 7rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: 0;
  position: relative;
  overflow: visible;
}

.brand::after {
  content: none;
  position: absolute;
  right: -0.6rem;
  top: 0;
  width: 1.3rem;
  height: 100%;
  background: linear-gradient(135deg, transparent 45%, var(--c-accent) 47%);
}

.brand-logo {
  width: auto;
  height: clamp(4rem, 6.8vw, 5.6rem);
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  flex: 0 0 auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  color: var(--c-deep);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--c-accent);
  background: rgba(248, 114, 4, 0.12);
}

.site-nav a.active {
  background: var(--c-deep);
  color: #fff;
}

.nav-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.quote-btn {
  border: 2px solid var(--c-deep);
  color: var(--c-deep);
  background: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  white-space: nowrap;
}

.quote-btn:hover,
.quote-btn:focus-visible {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  border: 2px solid var(--c-deep);
  border-radius: 999px;
  background: #f5f8ff;
  color: var(--c-deep);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.92rem;
  box-shadow: 0 8px 18px rgba(1, 22, 77, 0.28);
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
  transform: translateY(-1px);
}

.menu-toggle[aria-expanded="true"] {
  background: var(--c-deep);
  border-color: var(--c-deep);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 33rem;
  overflow: clip;
}

.hero-inner {
  min-height: 24rem;
}

.hero-page {
  min-height: 21rem;
}

.hero-page::before,
.hero-page::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-page::before {
  width: min(17vw, 15rem);
  background: linear-gradient(165deg, transparent 0 33%, rgba(248, 114, 4, 0.92) 34% 100%);
}

.hero-page::after {
  width: min(9vw, 8rem);
  background: linear-gradient(165deg, transparent 0 20%, rgba(38, 151, 33, 0.88) 21% 100%);
  right: min(11vw, 10rem);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  filter: saturate(1.05) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(1, 22, 77, 0.9) 0%, rgba(1, 22, 77, 0.76) 55%, rgba(5, 5, 5, 0.55) 100%),
    linear-gradient(180deg, rgba(248, 114, 4, 0.06), rgba(1, 22, 77, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 5rem) 0;
  min-height: inherit;
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.1rem;
}

.hero-page-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3.4rem 0 2.8rem;
}

.hero-page-content h1,
.hero-page-content p {
  color: #fff;
}

.hero-page-content p {
  margin: 0;
  font-weight: 700;
}

.hero-copy {
  background: rgba(1, 17, 40, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 2.5vw, 1.6rem);
  box-shadow: var(--shadow-lg);
}

.hero-copy h1,
.hero-copy p,
.hero-copy .kicker {
  color: #fff;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 0.65rem;
}

.crumb {
  margin: -0.1rem 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d7e8ff;
}

.hero-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-vehicle {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 40px rgba(1, 22, 77, 0.38);
  transform: translateY(1rem);
}

.hero-vehicle img {
  min-height: 15rem;
  max-height: 21rem;
  object-fit: cover;
}

.hero-angle {
  position: absolute;
  left: -2rem;
  right: -2rem;
  bottom: -2.9rem;
  height: 5rem;
  background: linear-gradient(172deg, transparent 24%, var(--c-accent) 25%, var(--c-accent) 42%, #f1f2f4 43%);
  z-index: 3;
}

.btn {
  display: inline-block;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.68rem 1rem;
  border: 1px solid transparent;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--c-accent), #d96507);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #fff;
}

.btn-secondary {
  background: var(--c-success);
  border-color: var(--c-success);
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--c-deep);
  color: var(--c-deep);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  background: var(--c-deep);
  color: #fff;
}

.btn-mini {
  background: var(--c-accent);
  color: #fff;
  padding: 0.52rem 0.75rem;
  font-size: 0.74rem;
}

.btn.full {
  width: 100%;
  text-align: center;
}

.section-head {
  margin-bottom: 1.2rem;
}

.services-preview {
  background: #f4f5f7;
}

.themed-light {
  background: #f4f4f5;
}

.accelerator-section {
  background: #efefef;
  border-top: 1px solid var(--c-line);
}

.accelerator-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.95fr 0.95fr 1.1fr;
  align-items: center;
}

.accelerator-copy {
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
  padding: 1.05rem;
}

.accelerator-copy h2 {
  max-width: 12ch;
}

.accelerator-image {
  margin: 0;
  border: 8px solid #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.accelerator-image::before {
  content: "";
  position: absolute;
  left: -0.7rem;
  top: -0.7rem;
  width: 3.3rem;
  height: 3.3rem;
  border-top: 6px solid var(--c-accent);
  border-left: 6px solid var(--c-accent);
}

.accelerator-image img {
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.accelerator-list {
  display: grid;
  gap: 0.55rem;
}

.accelerator-list a {
  display: block;
  background: linear-gradient(135deg, var(--c-deep), var(--c-accent));
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  box-shadow: 0 10px 18px rgba(1, 22, 77, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.accelerator-list a:hover,
.accelerator-list a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.control-band {
  position: relative;
  min-height: 16rem;
  overflow: clip;
}

.control-band-bg,
.control-band-overlay {
  position: absolute;
  inset: 0;
}

.control-band-bg {
  background-position: center;
  background-size: cover;
}

.control-band-overlay {
  background:
    linear-gradient(0deg, rgba(1, 22, 77, 0.84), rgba(1, 22, 77, 0.84)),
    linear-gradient(90deg, rgba(248, 114, 4, 0.12), rgba(38, 151, 33, 0.1));
}

.control-band-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  place-content: center;
  text-align: center;
}

.control-band-content h2,
.control-band-content .kicker {
  color: #fff;
  margin-inline: auto;
}

.control-band-content h2 {
  max-width: 17ch;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 3.1rem;
  height: 3.1rem;
  background: linear-gradient(135deg, transparent 0 48%, rgba(38, 151, 33, 0.16) 49% 100%);
}

.feature-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-card-body {
  padding: 0.95rem;
}

.feature-card-body h3 {
  margin-bottom: 0.35rem;
  font-size: 1.28rem;
}

.feature-index {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-success);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.capability-section {
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at center, rgba(1, 22, 77, 0.08), transparent 64%);
}

.capability-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-card {
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 0.95rem;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.capability-card.highlight {
  background: linear-gradient(145deg, var(--c-success), var(--c-deep));
  border-color: rgba(38, 151, 33, 0.48);
}

.capability-card.highlight h3,
.capability-card.highlight p {
  color: #fff;
}

.accreditation-section {
  background: #fff;
}

.accreditation-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.accreditation-grid article {
  text-align: center;
  border: 1px solid var(--c-line);
  background: #f7f7f8;
  padding: 0.85rem;
  box-shadow: var(--shadow-md);
}

.accreditation-grid span {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #021851;
  color: #fff;
  font-weight: 700;
}

.accreditation-grid p {
  margin: 0.5rem 0 0;
  color: #2a4660;
  font-weight: 600;
}

.about-highlight {
  background: #ffffff;
}

.band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(239, 244, 250, 0.95));
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.section-head.center {
  text-align: center;
}

.section-head.center h2 {
  margin-inline: auto;
  max-width: 20ch;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.panel {
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.section-image {
  border-radius: 8px;
  margin-bottom: 0.8rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-card-body {
  padding: 0.95rem 0.95rem 0.8rem;
}

.service-card-body h3 {
  margin-bottom: 0.45rem;
  font-size: 1.34rem;
}

.link-btn {
  margin-top: 0.5rem;
  display: inline-block;
  background: var(--c-success);
  color: #fff;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  border-radius: 2px;
}

.split-layout {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}

.about-circle {
  margin: 0;
  max-width: 28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--c-success);
  box-shadow: var(--shadow-lg);
}

.about-circle img {
  height: 100%;
  object-fit: cover;
}

.about-copy {
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
  padding: 1.15rem;
}

.about-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.stats-section {
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at center, rgba(1, 22, 77, 0.08), transparent 60%);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid article {
  text-align: center;
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 0.85rem;
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-inline: auto;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-success);
  color: #fff;
  font-weight: 800;
}

.stats-grid h3 {
  margin-bottom: 0.2rem;
  font-size: 2rem;
}

.stats-grid p {
  margin: 0;
  font-weight: 600;
}

.why-request {
  background: #f5f5f5;
}

.request-layout {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.why-copy h2 {
  max-width: 18ch;
}

.tick-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.tick-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #2e4560;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 4px rgba(38, 151, 33, 0.2);
}

.request-card {
  background: var(--c-deep);
  color: #d9e5ff;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.request-card h3 {
  color: #fff;
}

.request-form {
  display: grid;
  gap: 0.5rem;
}

.request-form label {
  color: #d9e5ff;
  font-size: 0.82rem;
  font-weight: 600;
}

.request-form input,
.request-form select {
  width: 100%;
  background: #0a1f63;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.62rem 0.7rem;
  border-radius: 4px;
  font: inherit;
}

.request-form input:focus,
.request-form select:focus {
  outline: 2px solid rgba(38, 151, 33, 0.45);
}

.contact-main {
  padding-top: clamp(3.5rem, 8vw, 7rem);
}

.contact-main-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-left h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
}

.info-card {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.9rem;
  align-items: start;
  background: #f3f3f4;
  border: 1px solid var(--c-line);
  padding: 0.95rem;
  margin-bottom: 0.85rem;
}

.info-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(38, 151, 33, 0.14);
  color: var(--c-success);
  font-size: 1.35rem;
  font-weight: 800;
}

.info-card h3 {
  margin-bottom: 0.3rem;
}

.info-card p {
  margin: 0;
}

.quote-card {
  background: #ececee;
  border: 1px solid rgba(1, 22, 77, 0.1);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.quote-form {
  display: grid;
  gap: 0.7rem;
}

.form-row-two {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(1, 22, 77, 0.15);
  background: #f5f5f6;
  color: #1f3b58;
  font: inherit;
  border-radius: 4px;
  padding: 0.7rem 0.75rem;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(38, 151, 33, 0.4);
}

.map-section {
  padding-top: clamp(2.2rem, 5vw, 3.2rem);
}

.map-frame {
  background: #d8d8d8;
  border: 1px solid #c7c7c7;
  min-height: 20rem;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  min-height: 20rem;
  border: 0;
}

.cta-strip {
  background: var(--c-deep);
  color: #fff;
  padding: 1.25rem 0;
}

.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cta-strip h2,
.cta-strip p {
  color: #fff;
  margin: 0;
}

.cta-strip p {
  opacity: 0.9;
}

.site-footer-main {
  background:
    linear-gradient(145deg, #050505 0%, #01164d 62%, #050505 100%);
  color: #dce6ff;
  padding-top: 2rem;
}

.footer-main-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 1.1fr 0.9fr;
}

.footer-main-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.site-footer-main h3,
.site-footer-main h4 {
  color: #fff;
}

.footer-logo {
  width: clamp(5.4rem, 14vw, 8.2rem);
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

.site-footer-main h4 {
  display: inline-block;
  position: relative;
  margin-bottom: 0.8rem;
  padding-bottom: 0.2rem;
}

.site-footer-main h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 2.15rem;
  height: 2px;
  background: var(--c-success);
}

.site-footer-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.site-footer-main p,
.site-footer-main li,
.site-footer-main a {
  color: #dce6ff;
}

.newsletter-form {
  margin-top: 0.75rem;
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #020e36;
  color: #fff;
  padding: 0.64rem 0.7rem;
  font: inherit;
}

.newsletter-form button {
  border: 0;
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  padding: 0.64rem 0.75rem;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.9rem 0 1.1rem;
}

.footer-bottom p {
  margin: 0;
  color: #c2d3ff;
  font-size: 0.84rem;
}

.service-section {
  border-top: 1px solid var(--c-line);
}

.service-section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(237, 245, 255, 0.9));
}

.service-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.service-layout.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.service-image {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-image img {
  min-height: 21rem;
  max-height: 28rem;
  object-fit: cover;
}

.service-copy {
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-success);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.service-number {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--c-success);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.check-list {
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.check-list li {
  position: relative;
  padding-left: 1.25rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 4px rgba(38, 151, 33, 0.15);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .accelerator-grid {
    grid-template-columns: 1fr 1fr;
  }

  .accelerator-list {
    grid-column: span 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .capability-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accreditation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .hero-content,
  .accelerator-grid,
  .split-layout,
  .request-layout,
  .contact-main-grid,
  .service-layout,
  .service-layout.reverse,
  .footer-main-grid,
  .footer-main-grid-4,
  .feature-grid,
  .capability-grid,
  .accreditation-grid,
  .card-grid.two-col {
    grid-template-columns: 1fr;
  }

  .accelerator-list {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .hero-vehicle {
    transform: none;
    margin-inline: auto;
    max-width: 38rem;
  }

  .about-circle {
    margin-inline: auto;
    max-width: 22rem;
  }

  .top-strip-left {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-strip-left p,
  .top-strip-left a {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
  }

  .top-call {
    white-space: normal;
    text-align: center;
  }

  .hero-angle {
    left: 0;
    right: 0;
    bottom: -2.3rem;
  }

  .service-image img {
    min-height: 16rem;
    max-height: 22rem;
  }
}

@media (max-width: 840px) {
  .top-strip-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0;
  }

  .top-strip-left {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .top-strip-left a,
  .top-strip-left p {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
  }

  .dot {
    display: none;
  }

  .nav-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand tools"
      "nav nav";
    gap: 0.75rem;
    padding: 0.7rem 0;
  }

  .nav-wrap::before,
  .nav-wrap::after {
    width: 3rem;
    opacity: 0.62;
  }

  .brand {
    grid-area: brand;
    padding: 0;
  }

  .brand::after {
    width: 0.9rem;
    right: -0.45rem;
  }

  .brand-logo {
    height: clamp(3.3rem, 11vw, 4.4rem);
  }

  .nav-tools {
    grid-area: tools;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .quote-btn {
    display: none;
  }

  .site-nav {
    grid-area: nav;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(1, 22, 77, 0.18);
    border-radius: 10px;
    padding: 0.55rem;
    box-shadow: 0 10px 24px rgba(1, 22, 77, 0.16);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 7px;
    font-size: 0.94rem;
    color: var(--c-deep);
    padding: 0.58rem 0.78rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--c-accent);
    background: rgba(248, 114, 4, 0.12);
  }

  .hero {
    min-height: 28rem;
  }

  .hero-inner {
    min-height: 21rem;
  }

  .hero-page {
    min-height: 18rem;
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-image img {
    min-height: 14rem;
    max-height: 20rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1240px, calc(100% - 1.2rem));
  }

  .section {
    padding: clamp(2.2rem, 7vw, 3.2rem) 0;
  }

  .site-header {
    position: sticky;
  }

  .top-strip-inner {
    padding: 0.5rem 0;
  }

  .top-strip-left {
    gap: 0.38rem;
  }

  .top-call {
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .card-grid.three-col,
  .feature-grid,
  .capability-grid,
  .accreditation-grid,
  .stats-grid,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .about-actions .btn,
  .cta-strip .btn {
    text-align: center;
    width: 100%;
  }

  .hero {
    min-height: 24.5rem;
  }

  .hero-inner,
  .hero-page {
    min-height: 17rem;
  }

  .hero-page-content {
    padding: 2.6rem 0 2rem;
  }

  .hero-copy {
    border-left-width: 3px;
  }

  .hero-vehicle img {
    min-height: 12rem;
    max-height: 16rem;
  }

  .hero-angle {
    bottom: -1.9rem;
    height: 3.8rem;
  }

  .service-image img {
    min-height: 12rem;
    max-height: 16rem;
  }

  .stats-grid h3 {
    font-size: 1.6rem;
  }

  .info-card {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .info-icon {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.05rem;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 16rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.45rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .cta-strip-inner {
    align-items: stretch;
  }

  .top-strip-left p {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .footer-logo {
    width: clamp(4.8rem, 34vw, 6.8rem);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1240px, calc(100% - 0.95rem));
  }

  .nav-row {
    gap: 0.55rem;
  }

  .brand {
    padding: 0;
  }

  .brand-logo {
    height: clamp(3rem, 12vw, 3.8rem);
  }

  .menu-toggle {
    min-height: 2.25rem;
    font-size: 0.72rem;
    padding: 0.36rem 0.76rem;
  }

  .site-nav a {
    font-size: 0.9rem;
    padding: 0.55rem 0.65rem;
  }

  .hero-copy,
  .panel,
  .about-copy,
  .service-copy,
  .request-card,
  .quote-card {
    padding: 0.8rem;
  }

  .top-call {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
