:root {
  --bg: #05080d;
  --panel: #0b111b;
  --panel-2: #111a26;
  --ink: #f5f8ff;
  --muted: #a8b3c4;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #0588ee;
  --blue-2: #2db4ff;
  --red: #ff334e;
  --steel: #d9e2ec;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(5, 8, 13, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 86px;
  height: 56px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a,
.text-link {
  transition: color 180ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--blue-2);
}

.header-call {
  border: 1px solid rgba(45, 180, 255, 0.55);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
  background: rgba(5, 136, 238, 0.14);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 124px clamp(18px, 6vw, 82px) 56px;
  overflow: hidden;
  background: #f5f7fa;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #05080d 0%, #08111c 42%, rgba(8, 17, 28, 0.38) 66%, rgba(245, 247, 250, 0) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(460px, 1.32fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  min-height: calc(88vh - 180px);
}

.hero-content {
  position: relative;
  width: 100%;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(45, 180, 255, 0.38);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(2, 6, 12, 0.98), rgba(7, 16, 28, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(8px);
}

.hero-van-panel {
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.hero-van-panel img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.08) contrast(1.02) brightness(1.08);
}

.hero-logo {
  width: min(230px, 56vw);
  margin-bottom: 18px;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 460px;
  margin-bottom: 14px;
  font-size: clamp(1.95rem, 3.25vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: #ffffff;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 480px;
  color: #ffffff;
  font-size: clamp(1rem, 1.24vw, 1.08rem);
  font-weight: 650;
  line-height: 1.5;
  text-shadow: none;
}

.hero-actions,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 14px 32px rgba(5, 136, 238, 0.28);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(10, 17, 27, 0.86);
  color: var(--steel);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 92px clamp(18px, 6vw, 82px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.about-grid,
.founder-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.95fr);
  gap: 26px;
}

.about-copy,
.contact-card,
.estimate-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 26, 38, 0.92), rgba(8, 13, 20, 0.94));
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.about-copy p,
.feature-copy p,
.quote-band p,
.contact-card p,
.service-card p {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.timeline span {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--steel);
  font-size: 0.92rem;
}

.timeline strong {
  display: block;
  color: var(--blue-2);
  font-size: 1rem;
}

.owner-panel {
  display: grid;
  gap: 16px;
}

.about-visual {
  display: grid;
  gap: 16px;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-visual.fleet-photo img {
  object-fit: contain;
  background: #02060c;
}

.owner-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(45, 180, 255, 0.36);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(5, 136, 238, 0.16), rgba(17, 26, 38, 0.94));
  box-shadow: var(--shadow);
}

.owner-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(45, 180, 255, 0.8);
}

.owner-card h3 {
  margin-bottom: 6px;
  font-size: 1.6rem;
}

.owner-card span,
.stats span {
  display: block;
  color: var(--muted);
}

.stats {
  display: grid;
  gap: 16px;
}

.stats div {
  padding: 26px;
  border-left: 4px solid var(--blue);
  background: var(--panel-2);
  border-radius: 8px;
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.services {
  background: #080d14;
}

.founder-story {
  background: linear-gradient(180deg, #080d14, #05080d);
}

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

.service-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #111a26, #090e16);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 180, 255, 0.62);
}

.service-card span {
  color: var(--blue-2);
  font-weight: 800;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  padding: 88px clamp(18px, 6vw, 82px);
  background: linear-gradient(135deg, #05080d, #0d1724);
}

.feature-split.marine {
  background: linear-gradient(135deg, #09111a, #05080d);
}

.diagnostics-feature {
  background: linear-gradient(135deg, #0b1017, #101a24);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.marine .feature-image img {
  aspect-ratio: 3 / 2;
}

.feature-copy ul {
  padding-left: 20px;
  color: var(--steel);
}

.text-link {
  color: var(--blue-2);
  font-weight: 800;
}

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

.projects-section {
  background: linear-gradient(180deg, #05080d, #0a111a);
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.project-showcase + .project-showcase {
  margin-top: 34px;
}

.project-secondary {
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  margin-top: 34px;
}

.project-hero {
  min-height: 420px;
}

.project-hero img {
  height: 100%;
}

.project-copy {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 26, 38, 0.96), rgba(5, 8, 13, 0.96));
  box-shadow: var(--shadow);
}

.project-copy h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.project-copy p {
  color: var(--muted);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.project-tags span {
  padding: 9px 11px;
  border: 1px solid rgba(45, 180, 255, 0.34);
  border-radius: 6px;
  color: var(--steel);
  background: rgba(5, 136, 238, 0.12);
  font-size: 0.86rem;
  font-weight: 800;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.gallery-item {
  display: block;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.quote-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 58px clamp(18px, 6vw, 82px);
  background:
    linear-gradient(90deg, rgba(5, 136, 238, 0.24), rgba(255, 51, 78, 0.12)),
    #0b111b;
  border-block: 1px solid var(--line);
}

.quote-band div {
  max-width: 760px;
}

.contact-section {
  background: #080d14;
}

.contact-card a {
  color: var(--blue-2);
  font-weight: 700;
}

.socials a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--steel);
  font-weight: 800;
}

.estimate-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #05080d;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.estimate-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--blue-2);
  font-weight: 800;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(5, 136, 238, 0.34);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 84vh;
  border-radius: 8px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #05080d;
  font-weight: 900;
}

.site-footer {
  padding: 28px 18px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

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

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

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-nav.is-open a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero::before {
    background: linear-gradient(180deg, #05080d 0%, #08111c 46%, #f5f7fa 46%, #f5f7fa 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    order: 2;
  }

  .hero-van-panel {
    order: 1;
  }

  .trust-strip,
  .about-grid,
  .founder-grid,
  .feature-split,
  .contact-grid,
  .gallery-grid,
  .project-showcase,
  .project-gallery,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .quote-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .marine .feature-image {
    order: -1;
  }

  .owner-card {
    grid-template-columns: 1fr;
  }

  .owner-card img {
    width: 100%;
    height: auto;
    max-height: 300px;
  }

  .floating-call {
    width: 58px;
    height: 58px;
  }
}
