/* ============================================================
   Wrap It Up — Landing page (self-contained)
   Layout/structure adapted from the v3 reference.
   Brand colors + fonts only:
     Display  -> Barlow Condensed   Body -> Poppins
     Accent   -> #42b4f2 (blue)     Accent-2 -> #66f8f8 (cyan)
   ============================================================ */

:root {
  --bg: #0c0f16;
  --bg-2: #141821;
  --bg-3: #1b202b;
  --line: #2a2f3a;
  --text: #f4f4f5;
  --text-dim: #9aa0ab;
  --accent: #42b4f2;
  --accent-2: #2ae7f2;
  --success: #42b4f2;
  --radius: 6px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 62px; /* room for mobile call bar */
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

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

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--accent);
  color: #07120d;
  padding: 17px 26px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(66, 180, 242, 0.25); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
  padding: 15px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color .2s ease, color .2s ease;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ============ STICKY HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 15, 22, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 12px;
}
.header .brand img { height: 38px; width: auto; }
.header-cta { display: flex; align-items: center; gap: 8px; }
.btn-call-sm {
  background: var(--accent);
  color: #07120d;
  padding: 9px 15px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.btn-quote-sm {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 9px 15px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.btn-quote-sm:hover { border-color: var(--accent); color: var(--accent); }

/* Phone number shown as text (replaces the Call button) */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color .2s ease;
}
.header-phone:hover { color: var(--accent); }
.header-phone .pe-7s-call { color: var(--accent); font-size: 20px; line-height: 1; }

/* Burger menu */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  flex: 0 0 auto;
}
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  padding: 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 120;
}
.nav-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a {
  padding: 12px 14px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: background .15s ease, color .15s ease;
}
.nav-menu a:hover { background: var(--bg-3); color: var(--accent); }
.nav-menu .nav-menu-call {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  color: var(--accent);
}
.nav-menu .nav-menu-call .pe-7s-call { font-size: 18px; }
@media (min-width: 768px) { .nav-menu { right: 0; } }

/* Schedule Appointment button — original animated gradient pill (bn632) */
.bn632-hover {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border: none;
  padding: 11px 22px;
  white-space: nowrap;
  text-align: center;
  background-size: 300% 100%;
  border-radius: 50px;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.bn632-hover:hover { background-position: 100% 0; }
.bn632-hover:focus { outline: none; }
.bn632-hover.bn20 {
  background-image: linear-gradient(to right, #42b4f2, #7a41f2, #eb31a7, #42b4f2);
  box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 15px 16px 44px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 0%, rgba(66, 180, 242, 0.10), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(42, 231, 242, 0.08), transparent 55%),
    var(--bg);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.hero-pitch h1 {
  font-size: clamp(38px, 9vw, 58px);
  line-height: 0.98;
  margin-bottom: 14px;
}
.hero-pitch h1 .hl { color: var(--accent); }
.hero-sub {
  font-size: clamp(15px, 3.4vw, 16px);
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.5;
  max-width: 560px;
}
.hero-sub b { color: var(--text); font-weight: 600; }
.hero-guarantee-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(66, 180, 242, 0.09);
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 4px;
  border-left: 3px solid var(--accent);
  line-height: 1.35;
}
.hero-guarantee-line .star { font-size: 15px; flex-shrink: 0; }

/* ---------- Google reviews (social proof in the hero) ---------- */
.hero-reviews { margin-top: 26px; max-width: 560px; }
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 16px;
  transition: border-color .2s ease;
}
.reviews-badge:hover { border-color: var(--accent-2); }
.reviews-badge .g-logo { width: 22px; height: 22px; flex: 0 0 auto; display: block; }
.reviews-badge .stars { color: #ffc107; letter-spacing: 2px; font-size: 15px; line-height: 1; display: none; }
.reviews-badge .reviews-meta { display: block; color: var(--text-dim); font-size: 13px; line-height: 1.4; }
.reviews-badge .reviews-meta b { color: var(--text); font-weight: 600; }
.reviews-badge.has-rating .stars { display: block; margin-bottom: 2px; }

.reviews-cards { display: grid; gap: 12px; margin-top: 16px; }
.review-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; }
.review-card .rc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-card .rc-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-2); color: #04222b;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  flex: 0 0 auto; overflow: hidden;
}
.review-card .rc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card .rc-meta { min-width: 0; }
.review-card .rc-name { font-weight: 600; font-size: 14px; line-height: 1.2; }
.review-card .rc-stars { color: #ffc107; font-size: 12px; letter-spacing: 1px; }
.review-card .rc-text { color: var(--text-dim); font-size: 14px; line-height: 1.55; }
.reviews-cta { display: inline-block; margin-top: 14px; color: var(--accent-2); font-weight: 600; font-size: 14px; }
.reviews-cta:hover { text-decoration: underline; }

/* ---------- Hero recent-work mini gallery (fills the space reviews vacated) ---------- */
.hero-work { margin-top: 18px; max-width: 560px; }
.hero-work-label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.hero-work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hw-item {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.hw-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hw-item:hover img { transform: scale(1.06); }
.hero-work-more { display: inline-block; margin-top: 14px; color: var(--accent-2); font-weight: 600; font-size: 13px; }
.hero-work-more:hover { text-decoration: underline; }

/* ---------- Reviews as its own section (moved out of the hero) ---------- */
.reviews-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 60px;
  padding-bottom: 60px;
}
.reviews-section .section-inner { text-align: center; }
.reviews-section .section-eyebrow { color: #42b4f2; margin-bottom: 4px; }
.reviews-section .hero-reviews { margin: 26px auto 0; max-width: 1040px; }
.reviews-section .reviews-cards { gap: 16px; margin-top: 28px; }
.reviews-section .review-card { padding: 18px 20px; }
@media (min-width: 768px) {
  .reviews-section .reviews-cards { grid-template-columns: 1fr 1fr; }
  .reviews-section .review-card { text-align: left; }
}

/* Inline hero form */
.hero-form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 20px;
}
.hero-form { scroll-margin-top: 80px; }
.hero-form h3 { font-size: 22px; margin-bottom: 14px; }
.hero-form .sub { color: var(--text-dim); font-size: 13px; margin-bottom: 14px; }

/* ---------- Form rows (shared) ---------- */
.form-row { margin-bottom: 10px; }
.form-row label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 11px 13px;
  font-size: 16px;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: border-color .15s ease, background .15s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: #6b7280; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(66, 180, 242, 0.04);
}
.form-row textarea { min-height: 62px; resize: vertical; }
.form-row select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2342b4f2' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-row select option { color: #1e1e1e; }

.form-submit {
  width: 100%;
  background: var(--accent);
  color: #07120d;
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(66, 180, 242, 0.25); }
.form-reassure { text-align: center; font-size: 13px; color: var(--text-dim); margin-top: 12px; }
.form-reassure strong { color: var(--accent); font-weight: 600; }
.messages:not(:empty) { margin-bottom: 14px; }
.form-success {
  background: rgba(66, 180, 242, 0.12);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
}
.form-success a { color: var(--accent); font-weight: 700; text-decoration: underline; }

/* ---------- "Text us photos" callout ---------- */
.form-photos {
  background: rgba(66, 180, 242, 0.08);
  border: 1px solid rgba(66, 180, 242, 0.35);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin: 4px 0 12px;
}
.form-photos-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 6px;
}
.form-photos-title [class^="pe-7s-"] { font-size: 20px; line-height: 1; }
.form-photos-body { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin-bottom: 8px; }
.form-photos-body a { color: var(--accent); font-weight: 700; text-decoration: none; white-space: nowrap; }
.form-photos-body a:hover { text-decoration: underline; }
.form-photos-examples {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.5;
}
.form-photos-examples li { position: relative; padding-left: 16px; margin-bottom: 4px; }
.form-photos-examples li:last-child { margin-bottom: 0; }
.form-photos-examples li::before {
  content: "\2022";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}
.form-photos-examples strong { color: var(--text); }

/* ---------- Thin trust strip ---------- */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  padding: 14px 16px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-dim);
}
.hero-trust-strip span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust-strip .check { color: var(--accent); font-weight: 800; }

/* ============ TRUST STATS BAR ============ */
.trust-bar { background: var(--bg); border-bottom: 1px solid var(--line); padding: 26px 16px; }
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  text-align: center;
}
.trust-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.trust-stat .lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-weight: 600;
}

/* ============ SECTIONS ============ */
section { padding: 56px 16px; scroll-margin-top: 72px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title { font-size: clamp(32px, 8vw, 54px); margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--text-dim); margin-bottom: 32px; max-width: 640px; }

/* Each section eyebrow steps through the Schedule Appointment button gradient
   (blue #42b4f2 -> purple #7a41f2 -> pink #eb31a7), in page order. */
.process-section .section-eyebrow { color: #558ef2; }
#services .section-eyebrow        { color: #6767f2; }
.team-section .section-eyebrow    { color: #c536c0; }
#faq .section-eyebrow             { color: #eb31a7; }

/* ============ GUARANTEE DETAIL ============ */
.guarantee-detail {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guarantee-detail .inner { max-width: 820px; margin: 0 auto; text-align: center; }
.guarantee-detail .seal {
  display: inline-block;
  background: var(--accent);
  color: #07120d;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 6px 13px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.guarantee-detail h2 { font-size: clamp(32px, 8vw, 50px); margin-bottom: 16px; }
.guarantee-detail .lead { font-size: 17px; color: var(--text); margin-bottom: 16px; line-height: 1.55; }
.guarantee-detail .fine { font-size: 12px; color: var(--text-dim); font-style: italic; max-width: 620px; margin: 0 auto; }

/* ============ PROCESS ============ */
.process-section { background: var(--bg); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.process-step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.process-step:hover { border-color: var(--accent); transform: translateY(-2px); }
.process-step .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  opacity: 0.92;
}
.process-step h3 { font-size: 20px; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 14px; margin-bottom: 14px; flex-grow: 1; }
.process-step .timeline {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  background: rgba(66, 180, 242, 0.1);
  color: var(--accent);
  padding: 4px 11px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.process-disclaimer {
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 760px;
}

/* ============ QUOTE SECTION (bottom form) ============ */
.quote-section {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.quote-pitch h2 { margin-bottom: 14px; }
.quote-bullets { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 8px; }
.quote-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.quote-bullets li::before { content: '\2713'; color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.guarantee-mini {
  background: rgba(66, 180, 242, 0.08);
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  margin-top: 20px;
  border-radius: 0 4px 4px 0;
}
.guarantee-mini strong {
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.guarantee-mini p { font-size: 14px; color: var(--text-dim); margin: 0; }
.quote-form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 20px;
}
.quote-form h3 { font-size: 28px; margin-bottom: 4px; }
.quote-form-sub { color: var(--text-dim); font-size: 14px; margin-bottom: 18px; }

/* ============ SERVICES ============ */
/* Coverage-level example graphics (van + pickup) */
.coverage-examples { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
/* Single full-width coverage graphic (has its own title baked in) */
.coverage-examples.coverage-single { grid-template-columns: 1fr; }
.coverage-examples.coverage-single .coverage-card img { max-width: none; border-radius: 12px; }
.coverage-card { margin: 0; }
.coverage-card img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
}
.coverage-card figcaption {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 20px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.service-card .svc-icon {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: var(--accent-2);
  margin-bottom: 12px;
}
.service-card .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(66, 180, 242, 0.1);
  color: var(--accent);
  border-radius: 3px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.service-card h3 { font-size: 21px; margin-bottom: 8px; }
.service-card .lead { color: var(--text-dim); font-size: 14px; margin-bottom: 14px; }
.service-card .bundle-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.service-card .bundle { list-style: none; margin-bottom: 18px; flex-grow: 1; }
.service-card .bundle li {
  padding: 5px 0;
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.service-card .bundle li::before {
  content: '+';
  color: var(--accent);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.1;
  flex-shrink: 0;
}
.service-card .cta-link {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: color .15s ease;
}
.service-card .cta-link:hover { color: var(--accent-2); }

/* ============ FLEET CALLOUT ============ */
.fleet-callout {
  background: linear-gradient(135deg, rgba(66, 180, 242, 0.08), rgba(42, 231, 242, 0.06)), var(--bg-2);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 32px 24px;
  margin-bottom: 40px;
}
.fleet-callout .eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a41f2;
  margin-bottom: 10px;
}
.fleet-callout h3 { font-size: 30px; margin-bottom: 12px; }
.fleet-callout p { color: var(--text-dim); margin-bottom: 20px; }
.fleet-callout .impressions { display: flex; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.fleet-callout .impressions div { flex: 1; min-width: 120px; }
.fleet-callout .impressions .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--text);
  display: block;
  line-height: 1;
}
.fleet-callout .impressions .l {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-weight: 600;
}
.fleet-callout .guarantee-restate {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent);
  padding: 14px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text);
}
.fleet-callout .guarantee-restate strong { color: var(--accent); }

/* ============ PORTFOLIO ============ */
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.portfolio-item {
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item .label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  color: var(--text);
  padding: 5px 11px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
}

/* ============ TEAM ============ */
.team-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.team-content h2 { margin-bottom: 14px; }
.team-content p { color: var(--text-dim); margin-bottom: 14px; font-size: 15px; }
.team-content .sig { font-family: var(--font-display); color: var(--accent); font-size: 19px; margin-top: 8px; letter-spacing: 0.04em; }
.team-placeholder {
  min-height: 280px;
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--line);
  background: var(--bg-3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--text-dim);
}
.team-placeholder .ph-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.team-placeholder .ph-desc { font-size: 13px; max-width: 320px; }
.team-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}

/* ============ PARTNERS ============ */
.partners { background: var(--bg); padding: 34px 16px; border-bottom: 1px solid var(--line); }
.partners h3 {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 22px;
  font-weight: 600;
  text-transform: uppercase;
}
/* Auto-scrolling logo marquee on mobile; static row on desktop (see @768 below) */
.partners-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-logos {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partners-scroll 34s linear infinite;
}
.partners-logos:hover { animation-play-state: paused; }
.partners-logos img {
  flex: 0 0 auto;
  /* margin (not gap) so translateX(-50%) lands exactly on one set for a seamless loop */
  margin-right: 44px;
  max-width: 120px;
  max-height: 48px;
  width: auto;
  opacity: 0.55;
  transition: opacity .2s ease;
}
.partners-logos img:hover { opacity: 1; }
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partners-marquee { -webkit-mask-image: none; mask-image: none; }
  .partners-logos { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 22px 32px; }
  .partners-logos img { margin-right: 0; }
  .partners-logos img[aria-hidden="true"] { display: none; }
}
/* Desktop: static, evenly-spaced row (no scrolling) */
@media (min-width: 768px) {
  .partners-marquee { overflow: visible; -webkit-mask-image: none; mask-image: none; }
  .partners-logos {
    animation: none;
    width: auto;
    max-width: 960px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 24px;
  }
  .partners-logos img { margin-right: 0; }
  .partners-logos img[aria-hidden="true"] { display: none; }
}

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item .answer { padding: 0 20px 20px; color: var(--text-dim); font-size: 15px; }
.faq-item .answer p { margin-bottom: 10px; }
.faq-item .answer p:last-child { margin-bottom: 0; }
.faq-item .answer strong { color: var(--text); }

/* ============ FOOTER ============ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 44px 16px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 28px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 360px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-col a, .footer-col p { display: block; color: var(--text); font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 12px;
  margin-top: 24px;
  line-height: 1.7;
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--accent); }

/* ============ STICKY MOBILE CALL BAR ============ */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: #07120d;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}
.mobile-call-bar a { background: #07120d; color: var(--accent); padding: 8px 15px; border-radius: var(--radius); font-size: 15px; }

/* ============ RESPONSIVE ============ */
/* On phones the sticky call bar covers calling — keep the header compact. */
@media (max-width: 767px) {
  .header .header-phone { display: none; }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .mobile-call-bar { display: none; }
  section { padding: 80px 32px; }
  .hero { padding: 12px 32px 48px; }
  .header-inner { padding: 9px 32px; }
  .header .brand img { height: 38px; }
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "pitch form"
      "work  form"
      ".     form";
    grid-template-rows: auto auto 1fr;
    gap: 18px 48px;
    align-items: start;
  }
  .hero-pitch { grid-area: pitch; }
  .hero-form { grid-area: form; }
  .hero-work { grid-area: work; margin-top: 0; align-self: start; }
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-grid { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .coverage-examples { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .fleet-callout { padding: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .hero-form { padding: 22px 26px; }
  .quote-form { padding: 32px 30px; }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
