/* Total Assurance — premium editorial design system */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  /* Deep brand palette */
  --void: #070b14;
  --navy: #0c1830;
  --navy-mid: #152a4a;
  --navy-lift: #1c2d4f;
  --steel: #2a3f66;
  --ink: #121a2a;
  --body: #3d4a5c;
  --muted: #6b7789;
  --fog: #9aa6b8;

  /* Surfaces — never pure white */
  --surface: #f3f0ea;
  --surface-2: #e9e4db;
  --surface-3: #ddd6ca;
  --paper: #faf7f2;
  --card: rgba(250, 247, 242, 0.72);
  --card-solid: #f7f3ec;
  --glass: rgba(250, 247, 242, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);

  /* Accents from fleet */
  --red: #e31c23;
  --red-deep: #b8141a;
  --red-glow: rgba(227, 28, 35, 0.45);
  --cyan: #1aa3e0;
  --cyan-bright: #5ec8f5;
  --cyan-glow: rgba(26, 163, 224, 0.35);
  --gold: #c9a962;
  --gold-soft: #e4d4a8;

  --line: rgba(18, 26, 42, 0.1);
  --line-light: rgba(255, 255, 255, 0.1);

  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2rem;

  --shadow-sm: 0 2px 8px rgba(7, 11, 20, 0.04);
  --shadow: 0 8px 30px rgba(7, 11, 20, 0.08), 0 2px 8px rgba(7, 11, 20, 0.04);
  --shadow-lg: 0 24px 60px rgba(7, 11, 20, 0.14), 0 8px 20px rgba(7, 11, 20, 0.06);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 50px rgba(7, 11, 20, 0.35);

  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  /* Warm stone base — not white */
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(26, 163, 224, 0.07), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 20%, rgba(227, 28, 35, 0.05), transparent 45%),
    linear-gradient(180deg, #ebe6dc 0%, var(--surface) 30%, #e5e0d6 70%, var(--surface-2) 100%);
  background-attachment: fixed;
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fine noise overlay for premium texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

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

a {
  color: var(--steel);
  text-underline-offset: 0.18em;
  transition: color 0.15s;
}

a:hover {
  color: var(--red);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(var(--max), calc(100% - 3.5rem));
  }
}

/* ——— Preview ——— */
.preview-banner {
  background: linear-gradient(90deg, #4c1d95, #6d28d9);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.55rem 1rem;
  position: relative;
  z-index: 100;
}

.preview-banner a {
  color: #fff;
}

/* ——— Top bar ——— */
.topbar {
  background: var(--void);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 50;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
}

.topbar a {
  color: var(--cyan-bright);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.topbar a:hover {
  color: #fff;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 240, 234, 0.82);
  backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(18, 26, 42, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 2.75rem;
  width: auto;
  max-width: min(270px, 50vw);
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
}

@media (min-width: 960px) {
  .logo-img {
    height: 3.15rem;
    max-width: 310px;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 0.1rem;
}

.nav a {
  color: var(--body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--navy);
  background: rgba(18, 26, 42, 0.06);
  text-decoration: none;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.menu-toggle {
  display: inline-flex;
  background: var(--card-solid);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.25rem 0 1rem;
  border-top: 1px solid var(--line);
}

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

.nav-mobile a {
  padding: 0.95rem 0.35rem;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-family: var(--display);
  letter-spacing: -0.01em;
}

@media (min-width: 960px) {
  .nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: transform 0.15s var(--ease), background 0.2s, box-shadow 0.2s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  line-height: 1.2;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(145deg, #ef2a32 0%, var(--red) 45%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #ff3a42 0%, #e31c23 50%, #c41218 100%);
  color: #fff;
  box-shadow: 0 6px 28px var(--red-glow);
}

.btn-secondary {
  background: var(--card-solid);
  color: var(--navy);
  border: 1px solid rgba(18, 26, 42, 0.12);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  border-color: rgba(18, 26, 42, 0.22);
  color: var(--navy);
  background: #fff;
}

.btn-dark {
  background: linear-gradient(145deg, var(--navy-lift), var(--navy));
  color: #fff;
  box-shadow: 0 4px 18px rgba(12, 24, 48, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  background: linear-gradient(145deg, #243a62, var(--navy-mid));
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.btn-lg {
  padding: 1.05rem 1.75rem;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7, 11, 20, 0.97) 0%, rgba(12, 24, 48, 0.92) 32%, rgba(12, 24, 48, 0.55) 62%, rgba(12, 24, 48, 0.35) 100%),
    url("/images/fleet-transit-side.jpg") center 42% / cover no-repeat;
  transform: scale(1.02);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 85% 15%, rgba(26, 163, 224, 0.28), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(227, 28, 35, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-media::after {
  /* subtle grid */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero-stripe {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0 30%, #fff 30% 38%, var(--cyan) 38% 100%);
  z-index: 2;
  box-shadow: 0 -8px 32px rgba(26, 163, 224, 0.25);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .hero .container {
    padding: 5.5rem 0 6.5rem;
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  display: block;
  box-shadow: 0 0 0 4px rgba(227, 28, 35, 0.3);
  animation: pulse 2.4s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(227, 28, 35, 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(227, 28, 35, 0.08);
  }
}

.hero h1 {
  margin: 0 0 1.35rem;
  font-family: var(--display);
  font-size: clamp(2.75rem, 7.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 11ch;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 span,
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--cyan-bright);
  letter-spacing: -0.02em;
}

.hero .lead {
  margin: 0 0 2rem;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 30rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
}

.hero-proof span::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(26, 163, 224, 0.15);
  border: 1px solid rgba(94, 200, 245, 0.45);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235ec8f5'%3E%3Cpath d='M6.5 11.5 3 8l1-1 2.5 2.5L12 4l1 1z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(221, 214, 202, 0.55) 0%, rgba(233, 228, 219, 0.9) 100%);
  border-block: 1px solid rgba(18, 26, 42, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.section-navy {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(26, 163, 224, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(227, 28, 35, 0.1), transparent 45%),
    linear-gradient(165deg, var(--void) 0%, var(--navy) 50%, #132844 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
  font-family: var(--font);
}

.section-navy .eyebrow {
  color: var(--cyan-bright);
}

.section-head h2,
.h2 {
  margin: 0 0 0.9rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--navy);
  text-wrap: balance;
}

.section-navy .section-head h2,
.section-navy .h2 {
  color: #fff;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

/* ——— Trust row ——— */
.trust-row {
  display: grid;
  gap: 0.85rem;
  margin-top: -2.25rem;
  position: relative;
  z-index: 3;
}

@media (min-width: 700px) {
  .trust-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-pill {
  background: linear-gradient(160deg, #faf7f2 0%, #f0ebe3 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--red), transparent);
  opacity: 0.7;
}

.trust-pill strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
  letter-spacing: -0.015em;
}

.trust-pill span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 400;
}

/* ——— Promise / difference ——— */
.promise-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.promise {
  background: linear-gradient(165deg, rgba(250, 247, 242, 0.95) 0%, rgba(233, 228, 219, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 2rem 1.65rem;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.promise:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.promise::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  opacity: 0.85;
}

.promise-num {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.promise h3 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.promise p {
  margin: 0;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

/* ——— Action tiles ——— */
.action-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 700px) {
  .action-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.action-tile {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: linear-gradient(165deg, #faf7f2, #efe9df);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.55rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.2s;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.action-tile::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 163, 224, 0.12), transparent 70%);
  pointer-events: none;
}

.action-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 163, 224, 0.25);
  text-decoration: none;
  color: inherit;
}

.action-tile .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.action-tile h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.action-tile p {
  margin: 0;
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
  font-weight: 400;
}

.action-tile .go {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--red);
  margin-top: 0.35rem;
  letter-spacing: 0.01em;
}

/* ——— Service cards ——— */
.svc-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .svc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #faf7f2, #f0ebe3);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: inherit;
}

.svc-card-img {
  aspect-ratio: 5 / 3.6;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}

.svc-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 11, 20, 0.35) 100%);
  pointer-events: none;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.07);
}

.svc-card-body {
  padding: 1.35rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.svc-card-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.svc-card-body p {
  margin: 0;
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.svc-card-body .go {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--cyan);
  margin-top: 0.35rem;
}

/* ——— Systems ——— */
.as-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  background: linear-gradient(135deg, #faf7f2, #ebe4d8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  margin-bottom: 2.25rem;
}

.as-bar img {
  height: 2.5rem;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.as-bar p {
  margin: 0;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  flex: 1;
  min-width: 14rem;
}

.as-bar strong {
  color: var(--navy);
  font-weight: 600;
}

.system-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .system-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.system-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(175deg, #faf7f2 0%, #ebe4d8 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.system-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.system-card-inner {
  padding: 1.65rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.tier {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.tier-platinum {
  background: linear-gradient(135deg, var(--navy), var(--steel));
  color: var(--cyan-bright);
  box-shadow: 0 2px 10px rgba(12, 24, 48, 0.25);
}

.tier-gold {
  background: linear-gradient(135deg, #f5e6b8, #e8d49a);
  color: #6b4e12;
  border: 1px solid rgba(201, 169, 98, 0.4);
}

.tier-silver {
  background: linear-gradient(135deg, #e8ecf1, #d5dbe3);
  color: #3d4a5c;
}

.system-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.system-card .tagline {
  margin: 0;
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.55;
}

.system-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(18, 26, 42, 0.08);
  border-bottom: 1px solid rgba(18, 26, 42, 0.08);
}

.system-stats div strong {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.system-stats div span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.system-card ul {
  list-style: none;
  margin: 0;
  padding: 1.1rem 0 1.35rem;
}

.system-card ul li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.35rem;
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.45;
}

.system-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
  box-shadow: 0 0 8px var(--cyan-glow);
}

.system-card-foot {
  padding: 0 1.5rem 1.5rem;
}

.system-preview {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 800px) {
  .system-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.system-preview a {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: linear-gradient(165deg, #faf7f2, #ebe4d8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.system-preview a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: inherit;
}

.system-preview h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.system-preview p {
  margin: 0;
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.system-preview .go {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--red);
}

/* ——— Steps ——— */
.steps {
  display: grid;
  gap: 1.1rem;
  counter-reset: step;
  position: relative;
  z-index: 1;
}

@media (min-width: 700px) {
  .steps.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: linear-gradient(165deg, #faf7f2, #ebe4d8);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 1.55rem 1.35rem;
  counter-increment: step;
  box-shadow: var(--shadow);
}

.section-navy .step {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  font-style: italic;
  color: var(--red);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.section-navy .step::before {
  color: var(--cyan-bright);
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--display);
  letter-spacing: -0.015em;
}

.section-navy .step h3 {
  color: #fff;
}

.step p {
  margin: 0;
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
}

.section-navy .step p {
  color: rgba(255, 255, 255, 0.65);
}

/* ——— Specials ——— */
.specials {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .specials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .specials {
    grid-template-columns: repeat(4, 1fr);
  }
}

.special {
  background: linear-gradient(165deg, #faf7f2, #ebe4d8);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.special::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}

.special strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.45rem;
}

.special h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--display);
}

.special p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  background: linear-gradient(165deg, #faf7f2, #efe9df);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.08rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  align-items: center;
  letter-spacing: -0.015em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  font-family: var(--font);
  color: var(--cyan);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 1.4rem 1.25rem;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-body p {
  margin: 0;
}

/* ——— Quote band ——— */
.quote-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.quote-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-band-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem 2rem;
  background: linear-gradient(transparent 0%, rgba(7, 11, 20, 0.55) 35%, rgba(7, 11, 20, 0.94) 100%);
  color: #fff;
}

.quote-band-content p {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 28rem;
}

.quote-band-content cite {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cyan-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ——— Pills ——— */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill {
  background: linear-gradient(165deg, #faf7f2, #ebe4d8);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.01em;
}

/* ——— Split ——— */
.split {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.checklist {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2rem;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  box-shadow: 0 2px 8px var(--red-glow);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 1.15rem;
  width: 0.35rem;
  height: 0.55rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ——— CTA ——— */
.cta-band {
  background:
    radial-gradient(ellipse 70% 90% at 90% 10%, rgba(26, 163, 224, 0.22), transparent 50%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(227, 28, 35, 0.12), transparent 45%),
    linear-gradient(160deg, var(--void), var(--navy) 55%, #152a4a);
  color: #fff;
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--red), #fff 50%, var(--cyan));
}

.cta-band h2 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta-band p {
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.15rem;
  max-width: 30rem;
  line-height: 1.65;
  font-weight: 300;
}

.cta-band .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}

/* ——— Page hero ——— */
.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(26, 163, 224, 0.22), transparent 55%),
    linear-gradient(160deg, var(--void), var(--navy) 70%, #152a4a);
  color: #fff;
  padding: 3.5rem 0 3.75rem;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 30%, #fff 30% 38%, var(--cyan) 38% 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(2.15rem, 4.5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 34rem;
  font-size: 1.15rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ——— Cards ——— */
.cards {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 700px) {
  .cards.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: linear-gradient(165deg, #faf7f2, #ebe4d8);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.55rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.65;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #fff, var(--surface-2));
  border: 1px solid rgba(18, 26, 42, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

/* ——— Forms ——— */
.form-card {
  background: linear-gradient(165deg, #faf7f2, #ebe4d8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.form-card label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.form-card input,
.form-card select,
.form-card textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(18, 26, 42, 0.12);
  border-radius: 0.85rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(26, 163, 224, 0.2);
  background: #fff;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.65rem 0 0;
  line-height: 1.55;
}

/* ——— Prose ——— */
.prose {
  max-width: 40rem;
}

.prose h2 {
  font-family: var(--display);
  color: var(--navy);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.prose p,
.prose li {
  color: var(--body);
  font-size: 1.1rem;
  line-height: 1.75;
  font-weight: 400;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--void);
  color: rgba(255, 255, 255, 0.5);
  padding: 3.75rem 0 2rem;
  font-size: 0.98rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  height: 2.85rem;
  width: auto;
  max-width: 270px;
  margin-bottom: 1.15rem;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.site-footer h3 {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer a:hover {
  color: var(--cyan-bright);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

/* ——— Utils ——— */
.stack-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.stack-btns.center {
  justify-content: center;
}

.text-muted {
  color: var(--muted);
}

.mt-2 {
  margin-top: 1.5rem;
}

.note {
  background: linear-gradient(165deg, rgba(250, 247, 242, 0.9), rgba(233, 228, 219, 0.95));
  border: 1px solid rgba(18, 26, 42, 0.08);
  border-radius: 1rem;
  padding: 1.15rem 1.35rem;
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.6;
  margin-top: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.note strong {
  color: var(--navy);
  font-weight: 600;
}

.feature-panel {
  background: linear-gradient(165deg, #faf7f2, #ebe4d8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow);
}

.feature-panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.stat-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 480px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stat {
  background: linear-gradient(165deg, #faf7f2, #ebe4d8);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1rem;
  padding: 1.2rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.fleet-mosaic {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 700px) {
  .fleet-mosaic {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 380px;
  }
  .fleet-mosaic .big {
    grid-row: span 2;
  }
}

.fleet-mosaic figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.fleet-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 150px;
}

@media (min-width: 700px) {
  .fleet-mosaic .big img {
    min-height: 100%;
  }
}

/* Mobile call bar */
.mobile-callbar {
  display: none;
}

@media (max-width: 719px) {
  .mobile-callbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(7, 11, 20, 0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.7rem 0.9rem;
    gap: 0.6rem;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  }

  .mobile-callbar .btn {
    flex: 1;
    padding: 0.9rem 0.5rem;
    font-size: 0.9rem;
  }

  body {
    padding-bottom: 5rem;
  }
}
