/* =========================================================
   CRESCENT LOGICS — Global Stylesheet
   Pure CSS. No framework. Premium corporate logistics.
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --primary: #FF5A00;
  --primary-hover: #E04E00;
  --primary-tint: #FFF1E8;
  --secondary: #0A192F;
  --secondary-hover: #050D1A;
  --secondary-soft: #122B4A;
  --bg: #FFFFFF;
  --bg-muted: #F8F9FA;
  --bg-dark: #0A192F;
  --text: #111827;
  --text-muted: #4B5563;
  --text-faint: #9CA3AF;
  --border: #E5E7EB;
  --border-strong: #D1D5DB;
  --success: #10B981;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(10,25,47,0.08);
  --shadow-lg: 0 12px 40px rgba(10,25,47,0.15);
  --radius: 4px;
  --radius-lg: 6px;
  --container: 1280px;
  --header-h: 84px;
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
svg { display: inline-block; flex-shrink: 0; }
/* Default constrain inline SVGs */
.site-header__topbar a svg,
.nav-primary a svg,
.btn svg:not(.feature-icon),
.faq-item summary svg,
.testimonial-card svg,
.hero-trust__item svg,
.location-pill svg,
.social-row svg { width: 16px; height: 16px; }
.card__icon svg,
.process__step svg { width: 28px; height: 28px; }
.float-btn svg { width: 26px; height: 26px; }
.menu-toggle svg { width: 22px; height: 22px; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-weight: 800;
}
.h1, h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; letter-spacing: -0.035em; }
.h2, h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.025em; }
.h3, h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 700; }
.h4, h4 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--text-muted); }
.lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.65; max-width: 64ch; }
.overline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}
.text-white { color: #fff; }
.text-white p, .text-white .lead { color: rgba(255,255,255,0.78); }
.text-white h1, .text-white h2, .text-white h3, .text-white h4 { color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1280px) { .container { padding: 0 64px; } }

.section { padding: 80px 0; }
.section-lg { padding: 120px 0; }
.section-sm { padding: 56px 0; }
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}
.gap-lg { gap: 48px; }
.gap-sm { gap: 12px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; } .mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.max-w-3xl { max-width: 760px; } .max-w-2xl { max-width: 640px; }

/* ---------- Backgrounds ---------- */
.bg-dark { background: var(--secondary); color: #fff; }
.bg-dark p { color: rgba(255,255,255,0.78); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-muted { background: var(--bg-muted); }
.bg-primary { background: var(--primary); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: var(--secondary-hover); }
.btn-outline { background: transparent; border-color: var(--border-strong); color: var(--secondary); }
.btn-outline:hover { border-color: var(--secondary); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-lg { padding: 18px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn .icon { width: 18px; height: 18px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__topbar {
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 8px 0;
}
.site-header__topbar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.site-header__topbar a:hover { color: var(--primary); }
.site-header__topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.site-header__topbar .topbar-info { display: flex; gap: 24px; align-items: center; }
.site-header__topbar .topbar-cta { display: flex; gap: 16px; align-items: center; }
@media (max-width: 768px) { .site-header__topbar { display: none; } }

.site-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  padding: 14px 0;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: auto; width: auto; }
.site-logo__text { font-family: var(--font-heading); font-weight: 900; color: var(--secondary); font-size: 1.15rem; line-height: 1; letter-spacing: -0.02em; }
.site-logo__text small { display: block; color: var(--primary); font-size: 0.62rem; letter-spacing: 0.25em; margin-top: 4px; font-weight: 700; }

.nav-primary { display: flex; align-items: center; gap: 4px; }
.nav-primary > li { position: relative; list-style: none; }
.nav-primary > li > a, .nav-primary > li > button {
  display: flex; align-items: center; gap: 4px;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--secondary);
  border-radius: var(--radius);
  transition: color 0.2s;
}
.nav-primary > li > a:hover, .nav-primary > li > button:hover { color: var(--primary); }
.nav-primary > li > a.active { color: var(--primary); }
.nav-primary > li > a.active::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 2px; background: var(--primary);
}
.nav-primary ul { list-style: none; margin: 0; padding: 0; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  border-radius: var(--radius);
}
.nav-dropdown.wide { min-width: 540px; padding: 20px; }
.nav-dropdown.wide-3 { min-width: 720px; padding: 20px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
.nav-primary > li:hover > .nav-dropdown,
.nav-primary > li:focus-within > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 10px 12px; font-size: 0.9rem; color: var(--secondary);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown a:hover { background: var(--bg-muted); color: var(--primary); }
.nav-dropdown .dropdown-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); padding: 8px 12px 4px; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; padding: 10px; border: 1px solid var(--border); border-radius: var(--radius); }
.menu-toggle svg { width: 22px; height: 22px; color: var(--secondary); }

@media (max-width: 1024px) {
  .nav-primary { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn:not(.btn-primary) { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; top: 0;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__header { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--border); }
.mobile-menu__body { padding: 24px; flex: 1; }
.mobile-menu a, .mobile-menu summary {
  display: block; padding: 14px 0; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  color: var(--secondary); border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.mobile-menu details a { padding-left: 16px; font-weight: 500; font-size: 0.95rem; }
.mobile-menu summary { list-style: none; display: flex; justify-content: space-between; align-items: center; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary::after { content: '+'; font-weight: 400; color: var(--primary); font-size: 1.4rem; }
.mobile-menu details[open] summary::after { content: '−'; }
.mobile-menu__footer { padding: 24px; border-top: 1px solid var(--border); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--secondary);
  color: #fff;
  padding: 80px 0 56px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__modes {
  position: absolute;
  bottom: 24px; right: 32px;
  display: flex; gap: 8px;
  z-index: 3;
}
@media (max-width: 1024px) { .hero__modes { display: none; } }
.hero__mode-pill {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  color: #fff;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 99px;
}
.hero__mode-pill svg { width: 14px; height: 14px; color: var(--primary); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,25,47,0.95) 0%, rgba(10,25,47,0.82) 45%, rgba(10,25,47,0.55) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 1024px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--primary); }
.hero__sub { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 56ch; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px 32px; margin-top: 32px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust__item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.9); }
.hero-trust__item svg { color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; }

/* Page hero (smaller) */
.page-hero {
  position: relative;
  background: var(--secondary);
  color: #fff;
  padding: 96px 0 72px;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.5; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,25,47,0.92), rgba(10,25,47,0.65)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; font-family: var(--font-heading); letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ---------- Quote Form ---------- */
.quote-card {
  background: #fff;
  color: var(--text);
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
}
.quote-card__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-bottom: 20px; }
.quote-card__head h3 { color: var(--secondary); margin: 0; }
.quote-card__head small { color: var(--text-muted); font-size: 0.78rem; font-weight: 600; }
.progress-bar { height: 4px; background: var(--bg-muted); border-radius: 99px; overflow: hidden; margin-bottom: 24px; }
.progress-bar__fill { height: 100%; background: var(--primary); transition: width 0.3s ease; width: 25%; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInUp 0.3s ease; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--secondary); font-family: var(--font-heading); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.2s;
  font-size: 0.95rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.freight-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.freight-type-grid label {
  border: 1.5px solid var(--border); padding: 14px;
  cursor: pointer; border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.88rem; color: var(--secondary);
  transition: all 0.2s;
}
.freight-type-grid input { display: none; }
.freight-type-grid label:hover { border-color: var(--primary); }
.freight-type-grid input:checked + .freight-label { color: var(--primary); }
.freight-type-grid label:has(input:checked) { border-color: var(--primary); background: var(--primary-tint); }
.freight-type-grid svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--primary); }
.form-success {
  text-align: center; padding: 32px 16px;
}
.form-success svg { width: 56px; height: 56px; color: var(--success); margin: 0 auto 16px; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.grid > .card { height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.card__icon {
  width: 56px; height: 56px;
  background: var(--primary-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
}
.card__icon svg { width: 28px; height: 28px; color: var(--primary); }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; margin-bottom: 16px; }
.card__link {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem;
  color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
}
.card__link::after { content: '→'; transition: transform 0.2s; }
.card__link:hover::after { transform: translateX(4px); }

/* Industry / location image card */
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  padding: 24px;
  background-color: var(--secondary);
}
.media-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}
.media-card:hover .media-card__bg { transform: scale(1.06); }
.media-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,25,47,0.1) 0%, rgba(10,25,47,0.9) 100%); z-index: 1; }
.media-card > *:not(.media-card__bg):not(.media-card__overlay) { position: relative; z-index: 2; }
.media-card h3 { color: #fff; margin-bottom: 6px; }
.media-card p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.92rem; }
.media-card .card__link { color: var(--primary); margin-top: 16px; }

/* Stat card */
.stat {
  text-align: left;
  padding: 24px 0;
  border-top: 2px solid var(--primary);
}
.stat__value { font-family: var(--font-heading); font-size: 2.75rem; font-weight: 900; color: var(--secondary); letter-spacing: -0.03em; line-height: 1; }
.bg-dark .stat__value { color: #fff; }
.stat__label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.bg-dark .stat__label { color: rgba(255,255,255,0.7); }

/* Process timeline */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
@media (max-width: 1024px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process { grid-template-columns: 1fr; } }
.process__step { position: relative; padding: 28px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading); font-weight: 900; font-size: 2.5rem;
  color: var(--primary); opacity: 0.18;
  position: absolute; top: 8px; right: 16px;
  letter-spacing: -0.04em;
}
.process__step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.process__step p { font-size: 0.88rem; margin: 0; }
.process__step svg { width: 28px; height: 28px; color: var(--primary); margin-bottom: 16px; }

/* Why us bento */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}
.bento > * { background: #fff; border: 1px solid var(--border); padding: 28px; border-radius: var(--radius); display: flex; flex-direction: column; justify-content: space-between; }
.bento__big { grid-column: span 6; grid-row: span 2; background: var(--secondary); color: #fff; border-color: var(--secondary); }
.bento__big h3 { color: #fff; font-size: 1.75rem; }
.bento__big p { color: rgba(255,255,255,0.85); }
.bento .item { grid-column: span 3; }
.bento .wide { grid-column: span 6; }
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento__big { grid-column: span 6; grid-row: span 1; }
  .bento .item, .bento .wide { grid-column: span 3; }
}
@media (max-width: 600px) {
  .bento > * { grid-column: span 6 !important; }
}
.bento svg.feature-icon { width: 32px; height: 32px; color: var(--primary); margin-bottom: 12px; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(110deg, var(--secondary) 0%, var(--secondary-soft) 100%);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: var(--primary); opacity: 0.15;
  border-radius: 50%;
  filter: blur(40px);
}
.cta-strip__row { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; margin: 0; max-width: 24ch; }
.cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Testimonials */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  height: 100%;
}
.testimonial-card__stars { color: var(--primary); margin-bottom: 16px; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card blockquote { margin: 0 0 24px; font-size: 1.05rem; line-height: 1.7; color: var(--text); font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-heading); }
.testimonial-card__name { font-family: var(--font-heading); font-weight: 700; color: var(--secondary); font-size: 0.95rem; }
.testimonial-card__role { font-size: 0.82rem; color: var(--text-muted); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-weight: 400; color: var(--primary); font-size: 1.6rem; transition: transform 0.2s; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--primary); }
.faq-item .faq-content { padding: 0 0 22px; color: var(--text-muted); line-height: 1.7; }

/* Logo strip */
.logo-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 32px; padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip span { font-family: var(--font-heading); font-weight: 700; color: var(--text-faint); font-size: 1.1rem; letter-spacing: 0.05em; opacity: 0.8; }

/* Texas map / location list */
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 768px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }
.location-pill {
  padding: 16px 20px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--secondary);
  transition: all 0.2s;
}
.location-pill:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.location-pill svg { width: 18px; height: 18px; color: var(--primary); }

/* ---------- Footer ---------- */
.site-footer { background: var(--secondary); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.site-footer h4 { font-size: 0.78rem; color: #fff; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.site-footer a { color: rgba(255,255,255,0.7); display: block; padding: 6px 0; font-size: 0.92rem; transition: color 0.2s; }
.site-footer a:hover { color: var(--primary); }
.site-footer .grid { gap: 48px; }
.footer-brand { font-family: var(--font-heading); font-weight: 900; color: #fff; font-size: 1.2rem; margin-bottom: 16px; }
.footer-bottom {
  margin-top: 56px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0;
}
.social-row a:hover { border-color: var(--primary); background: var(--primary); }
.social-row svg { width: 16px; height: 16px; }

/* ---------- Sticky CTAs / Floating widgets ---------- */
.sticky-cta-mobile {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.sticky-cta-mobile .btn { flex: 1; padding: 12px; font-size: 0.88rem; }
@media (max-width: 768px) { .sticky-cta-mobile { display: flex; } body { padding-bottom: 68px; } }

.floating-actions {
  position: fixed; right: 18px; bottom: 18px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 80;
}
@media (max-width: 768px) { .floating-actions { bottom: 80px; } }
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: #fff;
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.wa { background: #25D366; }
.float-btn.quote { background: var(--primary); }
.float-btn svg { width: 26px; height: 26px; }

/* ---------- Animations ---------- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { transform: translateX(-100%); } to { transform: translateX(0); } }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="100"] { transition-delay: 0.1s; }
[data-reveal][data-delay="200"] { transition-delay: 0.2s; }
[data-reveal][data-delay="300"] { transition-delay: 0.3s; }
[data-reveal][data-delay="400"] { transition-delay: 0.4s; }

/* ---------- Utilities ---------- */
.eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.eyebrow-row::before { content: ''; width: 32px; height: 2px; background: var(--primary); display: inline-block; }

.hr-divider { border: 0; border-top: 1px solid var(--border); margin: 56px 0; }

/* Selection */
::selection { background: var(--primary); color: #fff; }

/* Focus visible */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 2px; }
