:root {
  --bg: #f4efe9;
  --bg-deep: #120f0d;
  --bg-soft: #efe5db;
  --panel: rgba(255, 250, 245, 0.72);
  --panel-strong: rgba(255, 249, 243, 0.96);
  --line: rgba(104, 82, 62, 0.16);
  --text: #1c1714;
  --muted: #685d54;
  --primary: #a77b45;
  --primary-strong: #c89d61;
  --primary-soft: rgba(167, 123, 69, 0.12);
  --dark: #171310;
  --white: #fffaf5;
  --shadow: 0 24px 60px rgba(25, 17, 14, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top, rgba(199, 157, 97, 0.18), transparent 20%),
    linear-gradient(180deg, #f8f5f1 0%, #f3efe9 100%);
  color: var(--text);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(18, 15, 13, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow: 0 12px 28px rgba(167, 123, 69, 0.42);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-copy strong { font-size: 1rem; }
.brand-copy span {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 250, 245, 0.72);
}
.navmenu {
  display: flex;
  gap: 22px;
  color: rgba(255, 250, 245, 0.7);
  font-size: 0.9rem;
}
.navmenu a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.88rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--dark), #2a211d);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(18, 15, 13, 0.18);
}
.btn-primary::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow: 0 0 0 6px rgba(167, 123, 69, 0.12);
}
.btn-secondary {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}

.hero { padding: 94px 0 70px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(167, 123, 69, 0.24);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
h1, h2, h3, h4 {
  margin: 0 0 14px;
  letter-spacing: -0.05em;
  color: var(--dark);
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
}
h1 { font-size: clamp(3.1rem, 4.8vw, 5.1rem); line-height: 0.9; }
h2 { font-size: clamp(2.5rem, 3vw, 3.3rem); line-height: 0.95; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 30px;
}
.stat-card {
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.46);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.stat-card strong { display: block; font-size: 1.9rem; color: var(--dark); }
.stat-card span { color: var(--muted); }

.hero-panel {
  border: 1px solid rgba(104, 82, 62, 0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(250,244,238,0.9));
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.truck-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(243,234,224,0.9));
  border: 1px solid rgba(104, 82, 62, 0.1);
  border-radius: 24px;
  overflow: hidden;
}
.truck-image {
  height: 300px;
  background: linear-gradient(180deg, rgba(22, 20, 19, 0.2), rgba(25, 17, 14, 0.22)), url('https://images.unsplash.com/photo-1605559424843-9e4c179367c1?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}
.card-body { padding: 22px; }
.badge-row {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; color: var(--muted);
}
.label-badge {
  display: inline-flex;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(167, 123, 69, 0.12);
  border: 1px solid rgba(167, 123, 69, 0.2);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-line {
  display: flex; align-items: end; justify-content: space-between;
  margin-top: 18px;
}
.price-line strong { font-size: 2rem; letter-spacing: -0.06em; color: var(--dark); }

section { padding: 84px 0; }
.section-header {
  display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 28px;
}
.section-header p { margin: 0; color: var(--muted); max-width: 620px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.glass-card {
  background: rgba(255,255,255,0.54);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.service-card { padding: 22px; min-height: 270px; }
.service-icon {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center; background: linear-gradient(135deg, rgba(167,123,69,0.14), rgba(200,157,97,0.18)); color: var(--primary); font-size: 1.4rem; margin-bottom: 18px;
}
.service-card p, .case-body p, .review-card p, .blog-card p, .text-block { color: var(--muted); }
.service-meta {
  margin-top: 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--dark);
}
.case-card { overflow: hidden; }
.case-card img { height: 220px; object-fit: cover; }
.case-body { padding: 20px; }
.case-tag { color: var(--primary); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.reliability-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.feature-box { padding: 24px 18px; text-align: center; }
.feature-box strong { display: block; font-size: 1.9rem; color: var(--dark); }
.review-card { padding: 22px; }
.stars { color: #b2874d; letter-spacing: 0.2em; }
.review-meta { margin-top: 18px; }
.faq-item {
  margin-bottom: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.4); overflow: hidden;
}
.faq-item summary {
  list-style: none; padding: 20px 18px; cursor: pointer; color: var(--dark); font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0; padding: 0 18px 20px; color: var(--muted); }
.contact-box { padding: 24px; }
.field { display: grid; gap: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.9rem 1rem; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,0.5); color: var(--text); font: inherit;
}
.field textarea { min-height: 140px; resize: vertical; }
.checkbox-line { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.checkbox-line input { width: auto; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--dark); }
.footer {
  border-top: 1px solid var(--line); background: rgba(17, 14, 12, 0.95); padding: 48px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; gap: 28px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; color: rgba(255,255,255,0.72); }
.footer small { color: rgba(255,255,255,0.68); }

.page-banner {
  padding: 72px 0 38px; border-bottom: 1px solid var(--line);
}
.page-content { padding: 56px 0; }
.table-wrap { overflow-x: auto; }
.table-wrap table {
  width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.44); border: 1px solid var(--line);
}
.table-wrap th, .table-wrap td {
  text-align: left; padding: 16px 18px; color: var(--muted); border-bottom: 1px solid var(--line);
}
.table-wrap th { color: var(--dark); }

.admin-shell { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 48px 0; }
.sidebar {
  background: rgba(255,255,255,0.5); border: 1px solid var(--line); border-radius: 24px; padding: 18px;
}
.sidebar a {
  display: block; padding: 0.8rem 0.9rem; border-radius: 12px; color: var(--muted); margin-bottom: 8px;
}
.sidebar a.active, .sidebar a:hover { background: rgba(167,123,69,0.12); color: var(--dark); }
.admin-panel {
  background: rgba(255,255,255,0.46); border: 1px solid var(--line); border-radius: 24px; padding: 24px;
}
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-bottom: 20px; }
.stat-box {
  background: rgba(15,23,42,0.52); border: 1px solid var(--line); border-radius: 18px; padding: 18px;
}
.stat-box strong { display: block; font-size: 1.8rem; color: var(--white); }
.request-list { display: grid; gap: 12px; }
.request-item {
  display: grid; grid-template-columns: 1fr auto; gap: 14px; background: rgba(15,23,42,0.52); border: 1px solid var(--line); border-radius: 16px; padding: 16px;
}
.badge {
  display: inline-flex; padding: 0.4rem 0.7rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700; border: 1px solid transparent;
}
.badge-new { background: rgba(59,130,246,0.12); color: #93C5FD; border-color: rgba(59,130,246,0.25); }
.badge-progress { background: rgba(249,115,22,0.12); color: #FDBA74; border-color: rgba(249,115,22,0.25); }
.badge-closed { background: rgba(34,197,94,0.12); color: #86EFAC; border-color: rgba(34,197,94,0.25); }

.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; background: rgba(15,23,42,0.94); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
}
.cookie-banner.hidden { display: none; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .hero-grid, .grid-3, .grid-2, .grid-4, .footer-grid, .reliability-grid, .admin-shell, .stat-grid { grid-template-columns: 1fr; }
  .navmenu {
    position: absolute; left: 16px; right: 16px; top: 78px; display: none; flex-direction: column; align-items: flex-start; background: rgba(15,23,42,0.96); border: 1px solid var(--line); border-radius: 18px; padding: 16px;
  }
  .navmenu.open { display: flex; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,0.02); color: var(--white); }
  .section-header { align-items: flex-start; flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* Premium industrial refresh */
:root {
  --bg: #0b0d0d; --bg-deep: #070808; --bg-soft: #121515;
  --panel: #121515; --panel-strong: #171a1a;
  --line: rgba(236, 240, 235, 0.14); --text: #eef1ec; --muted: #a2a8a2;
  --primary: #d6ff3f; --primary-strong: #e2ff72; --primary-soft: rgba(214, 255, 63, 0.1);
  --dark: #eef1ec; --white: #f7f8f4; --shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
}
body { font-family: 'Manrope', sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; }
.topbar { background: rgba(11, 13, 13, 0.88); border-color: var(--line); }
.navbar { min-height: 88px; }
.brand-mark { width: 38px; height: 38px; border-radius: 2px; background: var(--primary); color: #0b0d0d; box-shadow: none; font-family: 'Manrope', sans-serif; font-size: 1rem; }
.brand-copy span { color: var(--muted); }
.navmenu { gap: 30px; color: #c7ccc6; }
.navmenu a { position: relative; }
.navmenu a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--primary); transition: right .2s ease; }
.navmenu a:hover::after { right: 0; }
.nav-actions > .btn-secondary { border: 0; padding: .7rem 0; }
.nav-cta { padding: .72rem 1rem; border: 1px solid var(--line); color: var(--white); font-size: .84rem; font-weight: 700; }
.hero { padding: 54px 0 0; min-height: calc(100vh - 88px); display: flex; align-items: center; overflow: hidden; background: linear-gradient(90deg, rgba(214,255,63,.035) 1px, transparent 1px), linear-gradient(rgba(214,255,63,.025) 1px, transparent 1px); background-size: 84px 84px; }
.hero-grid { grid-template-columns: .95fr 1.05fr; gap: 70px; }
.hero-kicker { color: var(--primary); margin: 0 0 24px; font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; color: var(--text); }
h1 { max-width: 760px; font-size: clamp(3.9rem, 6.5vw, 7.3rem); font-weight: 700; line-height: .84; letter-spacing: -.075em; }
h1 em { color: var(--primary); font-style: normal; font-weight: 500; }
h2 { font-size: clamp(2.2rem, 3.4vw, 4rem); line-height: 1; letter-spacing: -.06em; }
h3 { letter-spacing: -.035em; }
.lead { max-width: 630px; color: #b5bbb4; font-size: 1.05rem; }
.hero-actions { align-items: center; margin-top: 30px; gap: 24px; }
.btn { border-radius: 2px; }
.btn:hover { transform: none; }
.btn:focus-visible, .navmenu a:focus-visible, .nav-cta:focus-visible, .text-link:focus-visible, .mobile-toggle:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { filter: brightness(1.06); }
}
.btn-primary { background: var(--primary); color: #0b0d0d; box-shadow: none; }
.btn-primary::before { display: none; }
.btn-secondary { border-color: var(--line); color: var(--white); }
.text-link { color: var(--white); font-weight: 700; font-size: .9rem; }
.text-link span { color: var(--primary); margin-left: 6px; }
.stats-row { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 42px; gap: 28px; }
.stat-card { padding: 0; border: 0; border-radius: 0; background: none; box-shadow: none; }
.stat-card strong { color: var(--white); font-size: 1.65rem; }
.stat-card span { color: var(--muted); font-size: .72rem; line-height: 1.35; display: block; }
.hero-panel { padding: 0; border: 0; border-radius: 0; background: none; box-shadow: none; }
.truck-image { height: min(68vh, 690px); min-height: 520px; filter: saturate(.7) contrast(1.08); background-image: linear-gradient(180deg, transparent 52%, rgba(5,7,7,.88)), url('https://images.unsplash.com/photo-1605559424843-9e4c179367c1?auto=format&fit=crop&w=1600&q=88'); }
.hero-image-caption { display: flex; justify-content: space-between; align-items: center; margin-top: -62px; padding: 0 24px 24px; position: relative; color: #d9ded8; font-size: .78rem; }
.hero-image-caption strong { color: var(--primary); letter-spacing: .12em; }
section { padding: 104px 0; }
.eyebrow { padding: 0; border: 0; border-radius: 0; background: none; color: var(--primary); letter-spacing: .14em; }
.glass-card, .faq-item { background: var(--panel); border-color: var(--line); border-radius: 4px; box-shadow: none; backdrop-filter: none; }
.service-card { min-height: 290px; padding: 28px; }
.service-icon { display: none; }
.service-card p, .case-body p, .review-card p, .blog-card p, .text-block, .section-header p { color: var(--muted); }
.service-meta, .price-line strong, .feature-box strong, .faq-item summary, .form-status { color: var(--white); }
.case-card img { filter: grayscale(.45) contrast(1.08); }
.case-tag, .stars { color: var(--primary); }
.field input, .field textarea, .field select { background: #0d1010; color: var(--white); border-radius: 2px; }
@media (max-width: 960px) {
  .navbar { min-height: 72px; }
  .nav-actions > .btn-secondary, .nav-cta { display: none; }
  .navmenu { top: 72px; background: #101313; border-radius: 2px; }
  .mobile-toggle { border-radius: 2px; flex-direction: column; gap: 5px; }
  .mobile-toggle span { width: 18px; height: 1px; background: currentColor; }
  .hero { padding: 64px 0 0; min-height: 0; }
  .hero-grid { gap: 48px; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  .truck-image { min-height: 420px; height: 62vh; }
  .stats-row { gap: 16px; }
}
@media (max-width: 540px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand-copy span { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn, .hero-actions .text-link { width: 100%; }
  .hero-actions .text-link { padding: .75rem 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row .stat-card:last-child { grid-column: 1 / -1; }
  section { padding: 76px 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* FleetOne navy / orange corporate brand */
:root {
  --bg: #0a0f1f;
  --bg-deep: #070b16;
  --bg-soft: #11182b;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(20, 29, 49, 0.94);
  --line: rgba(255, 255, 255, 0.13);
  --text: #ffffff;
  --muted: #aeb8ca;
  --primary: #ff6b00;
  --primary-strong: #ff8a1f;
  --primary-soft: rgba(255, 107, 0, 0.12);
  --gold: #c9a83e;
  --dark: #ffffff;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 107, 0, 0.1), transparent 25rem),
    radial-gradient(circle at 8% 42%, rgba(201, 168, 62, 0.055), transparent 30rem),
    var(--bg);
}

.topbar {
  background: rgba(10, 15, 31, 0.72);
  border-bottom: 0.5px solid var(--line);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
}

.brand-mark {
  border-radius: 11px;
  background: linear-gradient(145deg, var(--primary-strong), var(--gold));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(255, 107, 0, 0.24);
}
.brand-copy strong { letter-spacing: -.025em; }
.brand-copy span { letter-spacing: .08em; text-transform: none; }
.navmenu { color: rgba(255,255,255,.72); }
.navmenu a::after { background: linear-gradient(90deg, var(--primary), var(--gold)); }

.hero {
  min-height: calc(100svh - 88px);
  background:
    radial-gradient(circle at 58% 25%, rgba(255, 107, 0, 0.09), transparent 25rem),
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 55%);
}
h1 { font-size: clamp(3.5rem, 6vw, 6.8rem); line-height: .9; letter-spacing: -.065em; text-wrap: balance; }
h1 em { color: var(--primary); }
h2 { text-wrap: balance; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.65; text-wrap: pretty; }
.text-link span, .hero-image-caption strong, .eyebrow, .case-tag, .stars { color: var(--primary); }

.btn {
  min-height: 50px;
  border-radius: 16px;
  padding-inline: 1.35rem;
  touch-action: manipulation;
  transition: filter .3s ease, box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #e97b18 58%, var(--gold) 130%);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(255, 107, 0, 0.22);
}
.btn-secondary { background: rgba(255,255,255,.055); }
.btn:focus-visible, .navmenu a:focus-visible, .text-link:focus-visible, .mobile-toggle:focus-visible {
  outline-color: var(--primary);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { filter: brightness(.94); transform: translateY(-2px); }
  .glass-card:hover { transform: translateY(-3px); border-color: rgba(255, 107, 0, .28); box-shadow: 0 28px 70px rgba(0,0,0,.3); }
}

.stats-row { border-color: var(--line); }
.stat-card strong { color: var(--white); }
.stat-card strong::first-letter { color: var(--gold); }
.hero-panel { position: relative; }
.hero-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  pointer-events: none;
  z-index: 1;
}
.truck-image { border-radius: 28px; background-image: linear-gradient(180deg, rgba(10,15,31,.02) 30%, rgba(10,15,31,.92)), url('https://images.unsplash.com/photo-1605559424843-9e4c179367c1?auto=format&fit=crop&w=1600&q=88'); }

.glass-card, .faq-item {
  background: var(--panel);
  border: .5px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.case-card { overflow: hidden; }
.case-card img { filter: saturate(.75) contrast(1.04); }
.feature-box { text-align: left; }
.feature-box strong { color: var(--gold); }
.service-meta { border-top: .5px solid var(--line); padding-top: 18px; }

.field input, .field textarea, .field select {
  min-height: 50px;
  border: .5px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(4, 8, 19, .5);
  color: var(--white);
  font-size: 16px;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #758098; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(4, 8, 19, .72);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .13);
}
.checkbox-line input { accent-color: var(--primary); }
.footer { background: rgba(5, 9, 20, .96); border-color: var(--line); }
.cookie-banner { background: rgba(15, 22, 39, .94); border-color: var(--line); backdrop-filter: blur(20px); }

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .navmenu { background: rgba(10, 15, 31, .98); border-radius: 18px; }
  .mobile-toggle { border-radius: 12px; }
}
@media (max-width: 540px) {
  h1 { font-size: clamp(3.2rem, 16vw, 4.6rem); }
  .truck-image, .hero-panel::before { border-radius: 20px; }
  .glass-card, .faq-item { border-radius: 18px; }
  .btn { width: 100%; }
}

/* === Layout fixes (2026-08-29) === */
html, body { overflow-x: clip; max-width: 100%; }

.page-banner {
  padding: 48px 0 32px;
  overflow: hidden;
}
.page-banner h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: var(--white);
  text-wrap: pretty;
}
.page-banner .eyebrow { margin-bottom: 12px; }

.case-card img {
  width: 100%;
  max-width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
}

.truck-image {
  background-image: linear-gradient(180deg, rgba(10,15,31,.02) 30%, rgba(10,15,31,.92)), url('/images/hero-truck.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 960px) {
  .page-banner { padding: 32px 0 20px; }
  .page-banner h1 { font-size: clamp(1.45rem, 5.5vw, 2rem); }
  .case-card img { height: 200px; }
}

@media (max-width: 540px) {
  .page-banner { padding: 28px 0 18px; }
  .page-banner h1 { font-size: clamp(1.35rem, 6.5vw, 1.8rem); }
  .case-card img { height: 180px; }
}

/* === Hero mobile fix (2026-08-29) === */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-panel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-panel::before {
    inset: 0;
    border-radius: 20px;
  }
  .truck-image {
    width: 100%;
    min-height: 220px;
    height: 52vw;
    max-height: 300px;
  }
  .hero-image-caption {
    margin-top: -48px;
    padding: 0 16px 16px;
    font-size: .78rem;
    gap: 12px;
  }
  .hero-image-caption span {
    flex: 1;
    line-height: 1.4;
  }
}
