/* ─── THE FLEET CONTROL — SHARED STYLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0a0a0a;
  --bg-2:        #111111;
  --bg-card:     #1a1a1a;
  --border:      rgba(255,255,255,0.07);
  --border-m:    rgba(255,255,255,0.13);
  --accent:      #e03030;
  --accent-dim:  rgba(220,48,48,0.12);
  --accent-glow: rgba(220,48,48,0.30);
  --green:       #ff6b6b;
  --text:        #f5f5f5;
  --muted:       #888888;
  --dim:         #555555;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
section { padding: 88px 0; }
p { line-height: 1.8; }

/* ─── UTILS ─── */
.label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 8px;
  cursor: pointer; border: none; transition: all 0.2s ease;
  white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 0 22px var(--accent-glow); }
.btn-primary:hover { background: #ff5555; box-shadow: 0 0 36px rgba(220,48,48,0.50); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-m); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-m) 30%, var(--border-m) 70%, transparent 100%);
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 40px); max-width: 1100px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px;
  letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--accent); }
.nav-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--accent-dim); border: 1px solid rgba(220,48,48,0.25);
  color: var(--accent); padding: 2px 8px; border-radius: 4px;
}
.nav-logo, .nav-cta { flex-shrink: 0; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* Hamburger — only shown once the inline links no longer fit */
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-m);
  border-radius: 8px; padding: 8px 10px; cursor: pointer; color: var(--text);
  align-items: center; justify-content: center; flex-shrink: 0;
  min-width: 44px; min-height: 44px; /* iOS minimum tap target */
}
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }
.nav-toggle svg { width: 20px; height: 20px; display: block; }
.nav-toggle .nav-icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-icon-close { display: block; }

/* Links collapse well before they would overflow the bar (was 720px, which
   left a broken 721–900px window where they wrapped and the CTA spilled out). */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  nav { flex-wrap: wrap; row-gap: 0; }
  .nav-links {
    display: none; order: 3; width: 100%;
    flex-direction: column; gap: 0;
    margin-top: 14px; padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 2px; font-size: 15px; }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding-top: 160px; padding-bottom: 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(220,48,48,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900; letter-spacing: -2px;
  max-width: 760px; margin: 0 auto 20px;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p {
  font-size: 18px; color: var(--muted); max-width: 620px;
  margin: 0 auto 36px; line-height: 1.8;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--accent); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb-sep { color: var(--dim); }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; }
.section-header h2 em { font-style: normal; color: var(--accent); }
.section-header p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ─── CONTENT PROSE ─── */
.prose-section { max-width: 780px; margin: 0 auto; }
.prose-section h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.prose-section h2 em { font-style: normal; color: var(--accent); }
.prose-section h3 { font-size: 18px; font-weight: 700; margin: 32px 0 12px; }
.prose-section p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.prose-section ul { list-style: none; margin: 16px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.prose-section ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text); line-height: 1.6;
}
.prose-section ul li::before {
  content: '✓';
  color: var(--accent); font-weight: 700; font-size: 14px;
  margin-top: 1px; flex-shrink: 0;
}

/* ─── ICON CARDS ─── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.icon-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.icon-card:hover { border-color: rgba(220,48,48,0.32); transform: translateY(-3px); }
.ic-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-dim); border: 1px solid rgba(220,48,48,0.20);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ic-icon svg { width: 24px; height: 24px; color: var(--accent); }
.icon-card h3 { font-size: 17px; font-weight: 700; }
.icon-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }

/* ─── STAT BAND ─── */
.stat-band {
  background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.stat-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 40px; letter-spacing: -2px; color: var(--accent); line-height: 1;
}
.stat-item-label { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }

/* ─── CHECK LIST ─── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--text); line-height: 1.6; }
.check-badge {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(220,48,48,0.12); border: 1px solid rgba(220,48,48,0.30);
  display: flex; align-items: center; justify-content: center;
}
.check-badge svg { width: 11px; height: 11px; color: var(--green); }

/* ─── TWO-COL LAYOUT ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-center { align-items: center; }
.col-visual {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
  position: relative; overflow: hidden;
}
.col-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(220,48,48,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── FAQ ─── */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-m); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-family: 'Roboto', sans-serif; font-size: 15px; font-weight: 600;
  text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-chevron { flex-shrink: 0; width: 18px; height: 18px; transition: transform 0.25s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 26px 22px; font-size: 15px; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 240px; }

/* ─── INLINE CTA ─── */
.inline-cta {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 52px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.inline-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(220,48,48,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.inline-cta > * { position: relative; z-index: 1; }
.inline-cta h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.inline-cta h2 em { font-style: normal; color: var(--accent); }
.inline-cta p { font-size: 16px; color: var(--muted); max-width: 480px; margin: 0 auto 32px; line-height: 1.75; }
.inline-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.phone-big {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 32px; color: var(--accent); letter-spacing: -0.5px;
  display: block; margin-bottom: 6px;
}
.phone-big:hover { color: #ff5555; }

/* ─── FOOTER ─── */
footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 32px; margin-bottom: 32px; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.5px; margin-bottom: 8px; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: var(--muted); max-width: 260px; line-height: 1.6; }
.footer-phone-link { font-size: 15px; font-weight: 600; color: var(--accent); margin-top: 14px; display: block; }
.footer-nav-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a { font-size: 14px; color: var(--dim); transition: color 0.2s; }
.footer-nav-col a:hover { color: var(--muted); }
.footer-copy { font-size: 12px; color: var(--dim); text-align: center; padding-top: 24px; border-top: 1px solid var(--border); line-height: 1.8; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  nav { width: calc(100% - 32px); top: 10px; padding: 12px 14px; }
  /* .nav-links visibility is handled by the 900px rule + .open toggle above */
  .nav-badge { display: none; }
  /* keep the collapsed bar on a single row on phones */
  .nav-logo { font-size: 15px; }
  .nav-cta { padding: 9px 14px !important; font-size: 13px !important; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .stat-band-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .inline-cta { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .stat-band-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
