:root {
  --bg: #07111f;
  --bg-2: #0d1c30;
  --panel: rgba(12, 25, 45, 0.82);
  --panel-2: rgba(255,255,255,0.06);
  --text: #e9f0f8;
  --muted: #adbbcb;
  --line: rgba(255,255,255,0.12);
  --brand: #2563eb;
  --brand-2: #0f4ec8;
  --accent: #69d3a9;
  --nav-text: #16355b;
  --shadow: 0 20px 60px rgba(0,0,0,.28);
  --radius: 22px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(78,195,255,0.18), transparent 30%),
    radial-gradient(circle at left center, rgba(29,127,227,0.14), transparent 35%),
    linear-gradient(180deg, #06101d 0%, #091524 45%, #0b1830 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.hero-intro.container { width: min(calc(var(--max) + 40px), calc(100% - 32px)); }
.section { padding: 86px 0; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(16,53,91,.10);
  box-shadow: 0 8px 28px rgba(6,16,29,.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 128px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 292px;
  max-width: min(29vw, 292px);
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(16,53,91,.18);
  color: var(--nav-text);
  border-radius: 12px;
  font-size: 1.2rem;
  padding: 10px 12px;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: var(--nav-text);
}

.nav a:hover { color: var(--brand); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(29,127,227,.28);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 18px 34px rgba(29,127,227,.32); }
.btn-secondary { background: transparent; border-color: var(--line); box-shadow: none; }
.btn-secondary:hover { background: rgba(255,255,255,.05); }
.btn-outline { background: transparent; border-color: rgba(37,99,235,.35); box-shadow: none; color: var(--nav-text); }
.btn-outline:hover { background: rgba(37,99,235,.06); }

.hero { padding: 48px 0 38px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}
.hero-copy,
.hero-visual { padding: 32px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #cde9ff;
  background: rgba(78,195,255,.12);
  border: 1px solid rgba(78,195,255,.2);
  margin-bottom: 18px;
}

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -.03em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); max-width: 22ch; }
h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); }
h3 { font-size: 1.18rem; }

.lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 62ch;
  margin: 18px 0 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.trust-row, .contact-points, .pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.contact-points span,
.pill-grid span,
.fleet-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #d7e3ef;
  font-size: .92rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,9,18,.18), rgba(4,9,18,.60)),
    url('assets/beach-estate.jpg') center/cover;
  opacity: .96;
}

.visual-stack {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.stat-card,
.glass {
  background: rgba(6, 15, 28, .62);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
  max-width: 360px;
}

.stat-card strong { display: block; font-size: 1rem; margin-top: 6px; }
.stat-kicker { color: #93cff7; font-size: .82rem; text-transform: uppercase; font-weight: 700; }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-head p, .section-copy, .muted { color: var(--muted); }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.metric { padding: 24px; }
.metric-value {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.metric-label { display: block; font-weight: 700; margin-bottom: 8px; color: #d7e3ef; }
.metric p { margin: 0; color: var(--muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.inner-grid { grid-template-columns: 1fr 1fr; }

.service, .step, .deliverable, .fleet-card, .contact-card, .faq-item {
  padding: 24px;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(78,195,255,.14);
  color: #d5edff;
  font-weight: 800;
  margin-bottom: 16px;
}

ul.clean {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
ul.clean li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  color: var(--muted);
}
ul.clean li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
}

.dark-band {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.03));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.fleet-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.fleet-image {
  min-height: 420px;
  overflow: hidden;
  position: relative;
}
.fleet-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,9,18,.10), rgba(4,9,18,.28)),
    url('assets/intro.jpg') center/cover;
}

.fleet-copy { padding: 28px; }
.fleet-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }

.split-visual {
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-no {
  display: inline-block;
  font-size: .82rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  color: #d5edff;
  background: rgba(78,195,255,.12);
  border: 1px solid rgba(78,195,255,.2);
  margin-bottom: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 14px;
}
.quote-form label { display: grid; gap: 8px; font-weight: 600; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: white;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(78,195,255,.5);
  box-shadow: 0 0 0 4px rgba(78,195,255,.12);
}

.faq-list { display: grid; gap: 14px; }
details summary { cursor: pointer; font-weight: 700; }
details p { color: var(--muted); margin: 12px 0 0; }

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .hero-grid, .fleet-wrap, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .metrics, .grid-3, .timeline { grid-template-columns: repeat(2, 1fr); }
  .section-head { align-items: start; flex-direction: column; }
  .brand img { max-width: min(34vw, 292px); }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    right: 16px;
    top: calc(100% + 10px);
    min-width: 220px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(16,53,91,.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .metrics, .grid-3, .timeline, .inner-grid { grid-template-columns: 1fr; }
  .hero-copy, .hero-visual, .fleet-copy { padding: 24px; }
  .hero-visual { min-height: 420px; }
  .brand img { width: 191px; max-width: 38vw; }
  .topbar-inner { min-height: 98px; }
}


.hero-intro {
  margin-bottom: 18px;
}

.hero-intro,
.hero-intro h1 {
  display: block;
}


.hero-intro h1 {
  margin: 0 0 6px;
  max-width: none;
  width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.hero-copy .lead {
  margin-top: 0;
}

.hero-lower-image {
  margin-top: auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  min-height: 245px;
}

.hero-lower-image img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 760px) {
  .hero-intro {
    margin-bottom: 14px;
  }
  .hero-lower-image {
    min-height: 190px;
  }
  .hero-lower-image img {
    height: 190px;
  }
}


.section-head p,
.section-copy,
.muted {
  max-width: 64ch;
}

.service h3,
.deliverable h3,
.step h3,
.proof-card h3 {
  letter-spacing: -.02em;
}

.hero-copy .lead,
.contact-card .section-copy {
  font-size: 1.03rem;
}

.proof-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
}

.faq-item summary {
  font-size: 1.02rem;
}

.footer strong {
  color: #f2f7fc;
}


.hero-intro,
.hero-intro h1 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro h1 {
  max-width: 24ch;
}

@media (max-width: 760px) {
  .hero-intro h1 {
    max-width: 16ch;
  }
}


#fleet .section-head,
#fleet .fleet-copy {
  text-align: center;
}

#fleet .fleet-tags {
  justify-content: center;
}

#fleet .fleet-card {
  text-align: center;
}
