/* ── Design tokens ── */
:root {
  --color-brand-red: #D60000;
  --color-brand-dark: #111111;
  --color-brand-gray: #F5F5F5;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-red-700: #b91c1c;
  --color-red-800: #991b1b;
  --color-red-900: #7f1d1d;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-button: 18px;
  --radius-card: 22px;
  --radius-navbar: 24px;
  --radius-service-card: 26px;
  --navbar-height: 90px;
  --navbar-offset: calc(var(--navbar-height) + 20px);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-brand-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ── Icons ── */
.icon {
  display: block;
  flex-shrink: 0;
}

.icon--xs { width: 0.875rem; height: 0.875rem; }
.icon--sm { width: 1rem; height: 1rem; }
.icon--md { width: 1.25rem; height: 1.25rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }
.icon--nav { width: 1.125rem; height: 1.125rem; }
.icon--brand-red { color: var(--color-brand-red); }
.icon--fill-brand-red { fill: var(--color-brand-red); color: var(--color-brand-red); }

.block { display: block; }

/* ── Layout ── */
.page {
  min-height: 100vh;
  background-color: #ffffff;
  padding-bottom: 5rem;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 768px) {
  .page {
    padding-bottom: 0;
  }
}

/* ── Animations ── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out both;
}

/* ── Call buttons ── */
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: var(--radius-button);
  font-weight: 700;
  transition: all 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.call-btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.call-btn--md { padding: 0.75rem 1.5rem; font-size: 1rem; }
.call-btn--nav { padding: 0.625rem 1.5rem; font-size: 0.875rem; line-height: 1; }
.call-btn--lg { padding: 1rem 2rem; font-size: 1.125rem; }

.call-btn--primary {
  background-color: var(--color-brand-red);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(127, 29, 29, 0.25), 0 4px 6px -4px rgba(127, 29, 29, 0.25);
}

.call-btn--primary:hover {
  background-color: var(--color-red-700);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(127, 29, 29, 0.3), 0 8px 10px -6px rgba(127, 29, 29, 0.3);
}

.call-btn--inverse {
  background-color: #ffffff;
  color: var(--color-brand-red);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.call-btn--inverse:hover {
  background-color: var(--color-brand-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.call-btn--full { width: 100%; }
.call-btn--shrink-0 { flex-shrink: 0; }

/* ── Premium Hero ── */
.hero-premium {
  isolation: isolate;
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-bg-base {
  position: absolute;
  inset: 0;
  background-color: #f7f7f5;
}

.hero-visual {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translate3d(0, var(--hero-parallax-y, 0), 0);
  will-change: transform;
}

@media (min-width: 1024px) {
  .hero-visual-inner {
    right: -4%;
    left: 30%;
  }
}

@media (min-width: 1280px) {
  .hero-visual-inner {
    left: 32%;
  }
}

.hero-truck-layer {
  position: absolute;
  inset: -3%;
  transform: translate3d(var(--hero-mouse-x, 0), var(--hero-mouse-y, 0), 0);
  will-change: transform;
}

.hero-truck-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 55%;
  filter: drop-shadow(-12px 20px 40px rgba(0, 0, 0, 0.18));
  transform-origin: 72% 55%;
  animation: hero-ken-burns 28s ease-in-out infinite alternate;
  will-change: transform;
}

@media (min-width: 1024px) {
  .hero-truck-photo {
    object-position: 62% 50%;
    transform-origin: 62% 50%;
  }
}

.hero-gradient-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #f7f7f5 0%, rgba(247, 247, 245, 0.9) 50%, transparent 100%);
}

@media (min-width: 640px) {
  .hero-gradient-main {
    background: linear-gradient(to bottom, #f7f7f5 0%, rgba(247, 247, 245, 0.85) 50%, transparent 100%);
  }
}

@media (min-width: 1024px) {
  .hero-gradient-main {
    background: linear-gradient(to right, #f7f7f5 42%, rgba(247, 247, 245, 0.8) 52%, transparent 75%);
  }
}

.hero-gradient-side {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.15) 0%, transparent 50%, transparent 100%);
}

@media (min-width: 1024px) {
  .hero-gradient-side {
    display: block;
    left: 32%;
  }
}

.hero-trust-panel {
  position: absolute;
  right: 1rem;
  z-index: 20;
  top: calc(var(--navbar-offset) + 1rem);
  border-radius: var(--radius-card);
  background: rgba(8, 8, 8, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid rgba(214, 0, 0, 0.65);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translate3d(var(--hero-trust-mouse-x, 0), var(--hero-trust-mouse-y, 0), 0);
  will-change: transform;
}

.hero-trust-float-wrap {
  animation: hero-trust-float 5.5s ease-in-out infinite;
}

@media (min-width: 640px) {
  .hero-trust-panel { right: 1.5rem; }
}

@media (min-width: 1024px) {
  .hero-trust-panel { right: 2.5rem; }
}

.hero-trust-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

@media (min-width: 640px) {
  .hero-trust-inner {
    padding: 1.25rem 1.5rem;
  }
}

.hero-trust-row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 0.25rem;
}

.hero-trust-value {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

@media (min-width: 640px) {
  .hero-trust-value { font-size: 1.5rem; }
}

.hero-trust-value .accent { color: var(--color-brand-red); }

.hero-trust-label {
  margin-top: 0.5rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}

.hero-trust-label-short {
  display: none;
}

.hero-trust-asterisk {
  color: var(--color-brand-red);
}

.hero-trust-divider {
  height: 1px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, rgba(214, 0, 0, 0.35) 0%, rgba(255, 255, 255, 0.12) 40%, transparent 100%);
}

@media (max-width: 768px) {
  .hero-premium {
    min-height: clamp(34rem, 92svh, 44rem);
    padding-bottom: 1.5rem;
  }

  .hero-bg-base {
    background-color: #ececea;
  }

  .hero-visual {
    z-index: 0;
  }

  .hero-visual-inner {
    inset: 0;
    left: 0;
    right: 0;
  }

  .hero-truck-layer {
    inset: -6% -4%;
  }

  .hero-truck-photo {
    object-fit: cover;
    object-position: center 42%;
    transform-origin: center center;
    filter: drop-shadow(-8px 16px 32px rgba(0, 0, 0, 0.12));
    animation: none;
  }

  .hero-gradient-main {
    background: linear-gradient(
      102deg,
      rgba(247, 247, 245, 0.82) 0%,
      rgba(247, 247, 245, 0.48) 34%,
      rgba(247, 247, 245, 0.12) 48%,
      transparent 56%
    );
  }

  .hero-ambient-glow {
    top: 18%;
    left: 0;
    width: 42%;
    height: 45%;
    opacity: 0.5;
    background: radial-gradient(ellipse at 30% 50%, rgba(214, 0, 0, 0.05) 0%, transparent 72%);
  }

  .hero-content {
    align-items: flex-start;
    padding-bottom: 0;
  }

  .hero-text-wrap {
    width: 58%;
    max-width: 17.5rem;
  }

  .hero-eyebrow {
    margin-bottom: 0.875rem;
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .hero-title {
    font-size: clamp(1.875rem, 8.5vw, 2.375rem);
  }

  .hero-description {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }

  .hero-trust-panel {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 24px 0;
    transform: none !important;
    will-change: auto;
    border-radius: var(--radius-card);
    background: rgba(8, 8, 8, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .hero-trust-float-wrap {
    animation: none;
  }

  .hero-trust-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem 1rem;
    padding: 0.875rem 1rem;
  }

  .hero-trust-inner > div {
    display: contents;
  }

  .hero-trust-divider {
    display: none;
  }

  .hero-trust-row-grid {
    display: contents;
    column-gap: 0;
  }

  .hero-trust-value {
    font-size: 1.0625rem;
  }

  .hero-trust-label {
    margin-top: 0.3rem;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .hero-trust-label-long {
    display: none;
  }

  .hero-trust-label-short {
    display: inline;
  }

  .hero-service-area {
    margin-top: 24px;
    font-size: 12px;
    white-space: normal;
  }

  .hero-dispatch,
  .hero-scroll-indicator {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex: 1;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: var(--navbar-offset);
  padding-bottom: clamp(5.5rem, 10vh, 7rem);
}

@media (min-width: 640px) {
  .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .hero-content { padding-left: 2rem; padding-right: 2rem; }
}

.hero-text-wrap {
  width: 100%;
  max-width: 36rem;
}

@media (min-width: 1024px) {
  .hero-text-wrap { max-width: 540px; }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-gray-500);
}

.hero-eyebrow-dot {
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--color-brand-red);
  box-shadow: 0 0 0 3px rgba(214, 0, 0, 0.12);
}

.hero-title {
  font-size: clamp(2.375rem, 7.5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--color-brand-dark);
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: clamp(2.75rem, 6.5vw, 4.75rem);
    line-height: 0.9;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: clamp(3.25rem, 4.8vw, 4.85rem);
    letter-spacing: -0.035em;
  }
}

.hero-description {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-600);
}

@media (min-width: 640px) {
  .hero-description { font-size: 1.125rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    gap: 1rem;
  }
}

.hero-service-area {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-gray-500);
  white-space: nowrap;
}

.hero-service-area-pin {
  flex-shrink: 0;
  font-size: 0.85em;
  line-height: 1;
}

@media (max-width: 1023px) {
  .hero-service-area {
    white-space: normal;
  }
}

.hero-cta-primary {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.04em;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-cta-primary { width: auto; }
}

.hero-dispatch {
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  z-index: 20;
  border-radius: var(--radius-card);
  border-left: 3px solid var(--color-brand-red);
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.2s ease;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: hero-dispatch-glow 4.5s ease-in-out infinite;
}

.hero-dispatch:hover {
  background: rgba(0, 0, 0, 0.9);
}

@media (min-width: 640px) {
  .hero-dispatch {
    right: 1.5rem;
    bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-dispatch {
    padding: 1.25rem 1.5rem;
  }
}

.hero-dispatch-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}

.hero-dispatch-phone {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 900;
  color: #ffffff;
  transition: color 0.2s ease;
}

.hero-dispatch:hover .hero-dispatch-phone {
  color: var(--color-brand-red);
}

@media (min-width: 640px) {
  .hero-dispatch-phone { font-size: 1.5rem; }
}

/* ── Hero motion & interactions ── */
.hero-ambient-glow {
  pointer-events: none;
  position: absolute;
  z-index: 4;
  top: 28%;
  left: 4%;
  width: min(52%, 28rem);
  height: 55%;
  background: radial-gradient(ellipse at 35% 50%, rgba(214, 0, 0, 0.07) 0%, rgba(214, 0, 0, 0.02) 45%, transparent 72%);
}

@media (min-width: 1024px) {
  .hero-ambient-glow {
    left: 6%;
    width: min(42%, 32rem);
  }
}

.hero-truck-shine {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 32%,
    rgba(255, 255, 255, 0.02) 42%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.02) 58%,
    transparent 68%
  );
  mix-blend-mode: soft-light;
  opacity: 0;
  animation: hero-truck-light 9s ease-in-out infinite;
}

.hero-enter {
  opacity: 0;
  transform: translateY(22px);
}

.hero-premium.is-loaded .hero-enter--1 {
  animation: hero-enter-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.hero-premium.is-loaded .hero-enter--2 {
  animation: hero-enter-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.hero-premium.is-loaded .hero-enter--3 {
  animation: hero-enter-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}

.hero-premium.is-loaded .hero-enter--4 {
  animation: hero-enter-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
}

.hero-premium.is-loaded .hero-enter--5 {
  animation: hero-enter-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.92s forwards;
}

@keyframes hero-enter-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

@keyframes hero-trust-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes hero-dispatch-glow {
  0%, 100% {
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.35),
      0 8px 20px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(214, 0, 0, 0);
  }

  50% {
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.35),
      0 8px 20px rgba(0, 0, 0, 0.2),
      0 0 26px rgba(214, 0, 0, 0.22);
  }
}

@keyframes hero-truck-light {
  0%, 72% {
    transform: translateX(-115%) skewX(-10deg);
    opacity: 0;
  }

  78% { opacity: 0.85; }

  92% {
    transform: translateX(115%) skewX(-10deg);
    opacity: 0;
  }

  100% {
    transform: translateX(115%) skewX(-10deg);
    opacity: 0;
  }
}

.hero-cta-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-12deg);
  opacity: 0;
  pointer-events: none;
}

.hero-cta-primary:hover::after {
  animation: hero-cta-shine 0.75s ease forwards;
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 30px -6px rgba(127, 29, 29, 0.38),
    0 10px 14px -8px rgba(127, 29, 29, 0.32);
}

@keyframes hero-cta-shine {
  0% {
    transform: translateX(-160%) skewX(-12deg);
    opacity: 0;
  }

  20% { opacity: 1; }

  100% {
    transform: translateX(280%) skewX(-12deg);
    opacity: 0;
  }
}

.hero-btn-services .hero-btn-services-icon {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-btn-services:hover .hero-btn-services-icon {
  animation: hero-services-arrow 0.7s ease-in-out infinite alternate;
}

@keyframes hero-services-arrow {
  from { transform: translateX(0); }
  to { transform: translateX(4px); }
}

.hero-scroll-indicator {
  position: absolute;
  z-index: 15;
  bottom: 1.25rem;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transform: translateX(-50%);
  transition: opacity 0.25s ease;
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

@media (min-width: 640px) {
  .hero-scroll-indicator { bottom: 1.5rem; }
}

.hero-scroll-mouse {
  display: block;
  position: relative;
  width: 22px;
  height: 34px;
  border: 2px solid rgba(17, 17, 17, 0.28);
  border-radius: 12px;
}

.hero-scroll-wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  border-radius: 2px;
  background-color: var(--color-brand-red);
  animation: hero-scroll-wheel 2.2s ease-in-out infinite;
}

@keyframes hero-scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  70%, 100% {
    opacity: 0;
    transform: translateY(9px);
  }
}

/* ── Floating Premium Navigation ── */
.header-shell {
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding-top: 1.25rem;
}

.navbar-float {
  pointer-events: auto;
  display: flex;
  align-items: center;
  width: 92%;
  height: 90px;
  margin: 0 auto;
  padding: 0 1.25rem;
  border-radius: var(--radius-navbar);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

@media (min-width: 640px) {
  .navbar-float { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .navbar-float { padding: 0 2rem; }
}

.navbar-float--scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.navbar-float--open {
  border-bottom-left-radius: var(--radius-button);
  border-bottom-right-radius: var(--radius-button);
}

.navbar-mobile-menu {
  pointer-events: auto;
  width: 92%;
  margin: 0.5rem auto 0;
  padding: 1.25rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  animation: fade-up 0.35s ease-out both;
}

@media (min-width: 1024px) {
  .navbar-mobile-menu { display: none; }
}

.navbar-mobile-menu[hidden] {
  display: none;
}

.navbar-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.navbar-mobile-phone {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
}

.navbar-mobile-cta {
  margin-top: 1rem;
  width: 100%;
}

/* ── Shared button styles ── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-button);
  border: 2px solid var(--color-brand-dark);
  background-color: #ffffff;
  font-weight: 700;
  color: var(--color-brand-dark);
  padding: 1rem 2rem;
  font-size: 1rem;
  width: 100%;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

@media (min-width: 640px) {
  .btn-secondary {
    width: auto;
    font-size: 1.125rem;
  }
}

.btn-secondary:hover {
  background-color: var(--color-brand-dark);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

/* ── Shared card surface ── */
.card-surface {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.header-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.header-logo-inner {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 0;
  transform: translateY(0) scale(1);
  transform-origin: center center;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.header-logo-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-10deg);
  opacity: 0;
  pointer-events: none;
}

.header-logo-link:hover .header-logo-inner,
.header-logo-link:focus-visible .header-logo-inner {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 4px 14px rgba(214, 0, 0, 0.32));
}

.header-logo-link:hover .header-logo-inner::after,
.header-logo-link:focus-visible .header-logo-inner::after {
  animation: header-logo-shine 0.8s ease forwards;
}

@keyframes header-logo-shine {
  0% {
    transform: translateX(-160%) skewX(-10deg);
    opacity: 0;
  }

  12% { opacity: 1; }

  88% { opacity: 1; }

  100% {
    transform: translateX(280%) skewX(-10deg);
    opacity: 0;
  }
}

.header-logo-img {
  display: block;
  height: auto;
  width: 155px;
  object-fit: contain;
  object-position: left;
}

@media (min-width: 640px) {
  .header-logo-img { width: 170px; }
}

@media (min-width: 1024px) {
  .header-logo-img { width: 180px; }
}

.header-logo-img--footer {
  width: 140px !important;
}

.navbar-logo-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.navbar-nav {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .navbar-nav { display: flex; }
}

.navbar-actions {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .navbar-actions { display: flex; }
}

@media (min-width: 1280px) {
  .navbar-actions { gap: 1.25rem; }
}

.navbar-cta {
  box-shadow: 0 4px 16px rgba(214, 0, 0, 0.28);
}

.navbar-cta:hover {
  box-shadow: 0 8px 24px rgba(214, 0, 0, 0.35);
}

.navbar-mobile-toggle-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .navbar-mobile-toggle-wrap { display: none; }
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #4b5563;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.35rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-brand-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--color-brand-dark); }
.nav-link:hover::after,
.nav-link-active::after { transform: scaleX(1); }

.nav-link-active {
  color: var(--color-brand-red);
  font-weight: 600;
}

.nav-separator {
  margin: 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-gray-300);
  user-select: none;
}

@media (min-width: 1280px) {
  .nav-separator { margin: 0 1.5rem; }
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background-color: rgba(17, 17, 17, 0.03);
  padding: 0 1rem;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-phone:hover {
  background-color: rgba(17, 17, 17, 0.06);
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-phone-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-brand-dark);
}

.nav-phone-text--bold { font-weight: 600; }

.nav-link-mobile {
  border-left: 2px solid transparent;
  padding: 0.875rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(17, 17, 17, 0.75);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav-link-mobile:hover {
  border-left-color: var(--color-brand-red);
  background-color: rgba(17, 17, 17, 0.03);
  color: var(--color-brand-dark);
}

.nav-link-mobile-active {
  border-left-color: var(--color-brand-red);
  background-color: rgba(214, 0, 0, 0.04);
  color: var(--color-brand-red);
  font-weight: 600;
}

.navbar-call-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-button);
  background-color: var(--color-brand-red);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(127, 29, 29, 0.2), 0 2px 4px -2px rgba(127, 29, 29, 0.2);
}

.navbar-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-button);
  color: var(--color-brand-dark);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-menu-btn:hover {
  background-color: var(--color-gray-100);
  color: var(--color-brand-red);
}

/* ── Section typography ── */
.section-eyebrow {
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand-red);
}

.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-brand-dark);
}

.section-description {
  margin-top: 1rem;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #6b7280;
}

.section-br-desktop { display: none; }

@media (min-width: 640px) {
  .section-br-desktop { display: block; }
}

/* ── Premium Services Section ── */
.services-premium {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f8f7 0%, #f3f3f2 50%, #fafafa 100%);
}

@media (min-width: 640px) {
  .services-premium { padding: 6rem 0; }
}

@media (min-width: 1024px) {
  .services-premium { padding: 7rem 0; }
}

.services-bg-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(214, 0, 0, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 8% 75%, rgba(214, 0, 0, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
}

.services-intro { max-width: 700px; }

.services-intro .section-title {
  text-transform: uppercase;
}

.services-title-accent {
  color: #e30613;
}

.services-intro .section-description {
  max-width: 700px;
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #5c6370;
}

.services-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .services-stats { gap: 1rem; margin-top: 3rem; }
}

.service-stat-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-stat-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(214, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-stat-value {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-brand-dark);
}

.service-stat-value em {
  font-style: normal;
  color: var(--color-brand-red);
}

.service-stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b919a;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
    margin-top: 3.5rem;
  }
}

.service-card {
  position: relative;
  border-radius: var(--radius-service-card);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(214, 0, 0, 0.12) 45%, rgba(17, 17, 17, 0.06) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(214, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
}

@media (min-width: 1024px) {
  .service-card--stagger-1 { margin-top: 2.5rem; }
  .service-card--stagger-2 { margin-top: -0.5rem; }
}

.service-card--expanded {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.09), 0 8px 28px rgba(214, 0, 0, 0.07);
}

.service-card-glow {
  pointer-events: none;
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card-glow,
.service-card--expanded .service-card-glow { opacity: 1; }

.service-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
}

@media (min-width: 640px) {
  .service-card-inner { padding: 2rem 1.75rem 1.75rem; }
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.service-card-icon {
  display: flex;
  height: 4rem;
  width: 4rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(214, 0, 0, 0.12) 0%, rgba(214, 0, 0, 0.04) 100%);
  box-shadow: 0 8px 24px rgba(214, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: var(--color-brand-red);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .service-card-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(214, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-card-icon .icon { width: 2rem; height: 2rem; }

.service-count-badge {
  flex-shrink: 0;
  border-radius: 9999px;
  background: rgba(17, 17, 17, 0.05);
  padding: 0.35rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.service-card-title {
  margin-top: 1.5rem;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-brand-dark);
}

@media (min-width: 640px) {
  .service-card-title { font-size: 1.5rem; }
}

.service-card-desc {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #6b7280;
}

.service-card-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-brand-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease, gap 0.25s ease;
}

.service-card-toggle:hover {
  color: var(--color-brand-red);
  gap: 0.65rem;
}

.service-card-toggle-icon {
  display: inline-flex;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-toggle-icon--open { transform: rotate(90deg); }

.service-list-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-list-wrapper--open { grid-template-rows: 1fr; }

.service-list-inner { overflow: hidden; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-button);
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-dark);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-list-item:hover {
  background-color: rgba(214, 0, 0, 0.05);
  transform: translateX(4px);
}

.service-list-item-icon {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(214, 0, 0, 0.08);
  color: var(--color-brand-red);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.service-list-item:hover .service-list-item-icon {
  background: var(--color-brand-red);
  color: #fff;
}

.services-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
  border-radius: var(--radius-service-card);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
  .services-cta {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    text-align: left;
  }
}

.services-cta-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-brand-dark);
}

.services-cta-desc {
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  color: #6b7280;
}

/* ── About Section ── */
.about-section {
  background-color: #ffffff;
  padding: 4.5rem 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .about-section { padding: 5.5rem 0; }
}

@media (min-width: 1024px) {
  .about-section { padding: 6.5rem 0; }
}

.about-grid {
  display: grid;
  align-items: stretch;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 3.5rem;
    align-items: stretch;
  }
}

.about-visual {
  position: relative;
  display: flex;
  min-height: 0;
}

@media (min-width: 1024px) {
  .about-visual {
    align-self: stretch;
    height: 100%;
  }
}

.about-visual-glow {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  top: 8%;
  left: -6%;
  width: 55%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 0, 0, 0.14) 0%, rgba(214, 0, 0, 0.04) 45%, transparent 70%);
  filter: blur(2px);
}

.about-image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(214, 0, 0, 0.06);
  aspect-ratio: 4 / 5;
}

@media (min-width: 1024px) {
  .about-image-frame {
    height: 100%;
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.about-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image-frame:hover .about-image {
  transform: scale(1.04);
}

.about-image-badge {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 2px solid rgba(214, 0, 0, 0.75);
  background: rgba(8, 8, 8, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.625rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .about-image-badge {
    right: 1.25rem;
    bottom: 1.25rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.75rem;
  }
}

.about-image-badge-dot {
  width: 0.4375rem;
  height: 0.4375rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-brand-red);
  box-shadow: 0 0 8px rgba(214, 0, 0, 0.65);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-reveal {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-reveal--left {
  transform: translateX(-28px);
}

.about-reveal--right {
  transform: translateX(28px);
  transition-delay: 0.1s;
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.about-heading { margin-bottom: 1.75rem; }

.about-heading .section-title {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-title-accent {
  color: var(--color-brand-red);
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-gray-600);
}

.about-text + .about-text { margin-top: 1.125rem; }

.about-points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2.25rem;
}

.about-point {
  display: flex;
  gap: 1rem;
  border-radius: 18px;
  border: 1px solid transparent;
  padding: 0.875rem 1rem;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.about-point:hover {
  border-color: rgba(214, 0, 0, 0.08);
  background: rgba(214, 0, 0, 0.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
}

.about-point-icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(214, 0, 0, 0.12) 0%, rgba(214, 0, 0, 0.04) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-point:hover .about-point-icon {
  transform: scale(1.05);
  box-shadow:
    0 8px 20px rgba(214, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.about-point-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
}

.about-point-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-gray-600);
}

@media (min-width: 640px) {
  .about-point-desc { font-size: 0.9375rem; }
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-600);
}

/* ── Fleet Section ── */
.fleet-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-gray-100);
  background: linear-gradient(180deg, #fafafa 0%, var(--color-brand-gray) 50%, #f8f8f7 100%);
  padding: 5.5rem 0;
}

@media (min-width: 640px) {
  .fleet-section { padding: 6.5rem 0; }
}

@media (min-width: 1024px) {
  .fleet-section { padding: 7.5rem 0; }
}

.fleet-bg-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(255, 255, 255, 0.95) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 15% 50%, rgba(214, 0, 0, 0.04) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 85% 50%, rgba(214, 0, 0, 0.04) 0%, transparent 65%);
}

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

/* Center-aligned premium header */
.fleet-header {
  max-width: 40rem;
  margin: 0 auto 4rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .fleet-header { margin-bottom: 4.5rem; }
}

.fleet-prelabel {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-brand-red);
}

.fleet-prelabel::before,
.fleet-prelabel::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 0, 0, 0.45));
}

.fleet-prelabel::after {
  background: linear-gradient(90deg, rgba(214, 0, 0, 0.45), transparent);
}

.fleet-title {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
}

.fleet-lead {
  margin: 1.25rem auto 0;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #6b7280;
}

.fleet-lead + .fleet-lead {
  margin-top: 1rem;
}

.fleet-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
  max-width: 52rem;
  margin: 0 auto 3.5rem;
  padding: 1.75rem 1rem;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

@media (min-width: 640px) {
  .fleet-stats {
    gap: 1.75rem 2rem;
    padding: 2rem 1.5rem;
    margin-bottom: 4rem;
  }
}

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

.fleet-stat {
  text-align: center;
}

.fleet-stat-value {
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
}

.fleet-stat-accent {
  color: var(--color-brand-red);
}

.fleet-stat-label {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

/* Symmetrical 3-column grid */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

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

@media (min-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.25rem;
  }
}

/* Uniform equal-height cards */
.fleet-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: #ffffff;
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s ease,
    filter 0.55s ease;
}

.fleet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  opacity: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(214, 0, 0, 0.1) 0%, transparent 68%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(214, 0, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.fleet-card-reveal {
  opacity: 0;
  transform: translateY(36px);
}

.fleet-card-reveal.is-visible {
  animation: fleet-card-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fleet-card-reveal:nth-child(1).is-visible { animation-delay: 0s; }
.fleet-card-reveal:nth-child(2).is-visible { animation-delay: 0.1s; }
.fleet-card-reveal:nth-child(3).is-visible { animation-delay: 0.2s; }
.fleet-card-reveal:nth-child(4).is-visible { animation-delay: 0.3s; }
.fleet-card-reveal:nth-child(5).is-visible { animation-delay: 0.4s; }
.fleet-card-reveal:nth-child(6).is-visible { animation-delay: 0.5s; }

@keyframes fleet-card-enter {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fleet-card.is-visible:hover {
  z-index: 2;
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(214, 0, 0, 0.14);
  filter: brightness(1.03);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.1),
    0 12px 28px rgba(214, 0, 0, 0.08),
    0 0 0 1px rgba(214, 0, 0, 0.06);
}

.fleet-card.is-visible:hover::before {
  opacity: 1;
}

.fleet-card-media {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: linear-gradient(160deg, #f4f4f2 0%, #ececea 100%);
}

.fleet-card-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  z-index: 2;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.fleet-card.is-visible:hover .fleet-card-media::after {
  left: 140%;
  opacity: 1;
}

.fleet-image-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #ebebea;
}

.fleet-image-placeholder-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  background: rgba(214, 0, 0, 0.06);
  box-shadow: inset 0 0 0 1px rgba(214, 0, 0, 0.1);
  font-size: 2.875rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-brand-red);
}

.fleet-image-placeholder-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
}

.fleet-card-img {
  width: 100%;
  height: 100%;
}

.fleet-card-img--photo,
.fleet-card-img--illustration {
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet-card-img--photo {
  object-fit: cover;
  object-position: center center;
  height: 106%;
  width: 100%;
  margin-top: -3%;
  transform: translate3d(0, var(--fleet-parallax-y, 0px), 0);
  will-change: transform;
}

.fleet-card-img--dispatch {
  object-position: 20% center;
}

.fleet-card-img--commercial {
  object-position: center left;
}

.fleet-card-img--illustration {
  object-fit: contain;
  object-position: center bottom;
  padding: 1.5rem 1.5rem 0.5rem;
}

.fleet-card.is-visible:hover .fleet-card-img--photo {
  transform: translate3d(0, var(--fleet-parallax-y, 0px), 0) scale(1.08);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet-card.is-visible:hover .fleet-card-img--illustration {
  transform: scale(1.06) translateY(-3px);
}

.fleet-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.625rem 1.75rem 1.75rem;
}

@media (min-width: 640px) {
  .fleet-card-body { padding: 1.75rem 1.875rem 1.875rem; }
}

.fleet-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
  margin-bottom: 0.875rem;
}

.fleet-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(17, 17, 17, 0.03);
  padding: 0.3125rem 0.6875rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.fleet-card.is-visible:hover .fleet-badge {
  transform: translateY(-2px);
  background: rgba(214, 0, 0, 0.04);
  border-color: rgba(214, 0, 0, 0.1);
}

.fleet-card.is-visible:hover .fleet-badge--primary {
  background: rgba(214, 0, 0, 0.11);
  border-color: rgba(214, 0, 0, 0.2);
  color: var(--color-brand-red);
}

.fleet-badge--primary {
  border-color: rgba(214, 0, 0, 0.12);
  background: rgba(214, 0, 0, 0.06);
  color: var(--color-brand-red);
}

.fleet-card-title {
  font-size: 1.1875rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-brand-dark);
}

@media (min-width: 640px) {
  .fleet-card-title { font-size: 1.25rem; }
}

.fleet-card-desc {
  flex: 1;
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-gray-600);
}

.fleet-card-foot {
  flex-shrink: 0;
  min-height: 2.25rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-end;
}

.fleet-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-brand-red);
  transition: gap 0.3s ease, color 0.3s ease;
}

.fleet-card-cta:hover {
  gap: 0.625rem;
  color: var(--color-red-700);
}

/* ── Reviews Section ── */
.reviews-section {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .reviews-section { padding: 5rem 0; }
}

@media (min-width: 1024px) {
  .reviews-section { padding: 6rem 0; }
}

.reviews-bg-orbs {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.reviews-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  animation: reviews-orb-float 18s ease-in-out infinite;
}

.reviews-bg-orb--1 {
  top: 8%;
  left: -4%;
  width: 18rem;
  height: 18rem;
  background: rgba(214, 0, 0, 0.09);
}

.reviews-bg-orb--2 {
  right: -6%;
  bottom: 12%;
  width: 22rem;
  height: 22rem;
  background: rgba(214, 0, 0, 0.07);
  animation-delay: -6s;
  animation-duration: 22s;
}

.reviews-bg-orb--3 {
  top: 42%;
  left: 38%;
  width: 14rem;
  height: 14rem;
  background: rgba(214, 0, 0, 0.05);
  animation-delay: -12s;
  animation-duration: 20s;
}

@keyframes reviews-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

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

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .reviews-header { margin-bottom: 3rem; }
}

.reviews-header-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-header-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }
}

.reviews-header-text {
  max-width: 40rem;
}

.reviews-section-title {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.reviews-section-desc {
  max-width: 36rem;
}

.reviews-cta-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-red);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

@media (min-width: 768px) {
  .reviews-cta-link {
    margin-top: 0.5rem;
    align-self: flex-start;
  }
}

.reviews-cta-link:hover {
  color: var(--color-brand-dark);
  transform: translateX(4px);
}

.reviews-cta-link .icon {
  width: 1rem;
  height: 1rem;
}

.reviews-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

@media (min-width: 640px) {
  .reviews-stats {
    gap: 2rem;
    padding: 1.75rem 0;
  }
}

.reviews-stat {
  text-align: center;
}

.reviews-stat-value {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
}

.reviews-stat-accent {
  color: var(--color-brand-red);
}

.reviews-stat-label {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.reviews-stat--rating .reviews-stat-value {
  margin-top: 0.35rem;
}

.reviews-rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
}

.reviews-rating-star {
  width: 1.125rem;
  height: 1.125rem;
  opacity: 0;
  transform: scale(0.7);
}

.reviews-rating-stars.is-animated .reviews-rating-star {
  animation: reviews-star-enter 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reviews-rating-stars.is-animated .reviews-rating-star:nth-child(1) { animation-delay: 0s; }
.reviews-rating-stars.is-animated .reviews-rating-star:nth-child(2) { animation-delay: 0.15s; }
.reviews-rating-stars.is-animated .reviews-rating-star:nth-child(3) { animation-delay: 0.3s; }
.reviews-rating-stars.is-animated .reviews-rating-star:nth-child(4) { animation-delay: 0.45s; }
.reviews-rating-stars.is-animated .reviews-rating-star:nth-child(5) { animation-delay: 0.6s; }

.reviews-rating-stars.is-complete {
  animation: reviews-stars-row-glow 1.6s ease-in-out 1;
}

@keyframes reviews-star-enter {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes reviews-stars-row-glow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(214, 0, 0, 0));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(214, 0, 0, 0.22));
  }
}

@keyframes reviews-star-shine {
  0%, 72%, 100% { left: -120%; }
  38% { left: 140%; }
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

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

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

.review-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid transparent;
  background-color: var(--color-brand-gray);
  padding: 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.review-quote-mark {
  position: absolute;
  top: 0.5rem;
  right: 0.875rem;
  z-index: 1;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(214, 0, 0, 0.07);
  pointer-events: none;
  user-select: none;
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  opacity: 0;
  background:
    radial-gradient(ellipse 85% 60% at 50% 0%, rgba(214, 0, 0, 0.1) 0%, transparent 68%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(214, 0, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  z-index: 3;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.06) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  transition: left 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.review-card-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.review-card-reveal.is-visible {
  animation: review-card-enter 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.review-card-reveal:nth-child(1).is-visible { animation-delay: 0s; }
.review-card-reveal:nth-child(2).is-visible { animation-delay: 0.08s; }
.review-card-reveal:nth-child(3).is-visible { animation-delay: 0.16s; }
.review-card-reveal:nth-child(4).is-visible { animation-delay: 0.24s; }
.review-card-reveal:nth-child(5).is-visible { animation-delay: 0.32s; }
.review-card-reveal:nth-child(6).is-visible { animation-delay: 0.4s; }

@keyframes review-card-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card.is-visible:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(214, 0, 0, 0.14);
  box-shadow:
    0 18px 40px rgba(214, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.08);
}

.review-card.is-visible:hover::before {
  opacity: 1;
}

.review-card.is-visible:hover::after {
  left: 140%;
  opacity: 1;
}

.review-stars {
  position: relative;
  z-index: 2;
  display: flex;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.review-stars::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 40%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.2) 60%,
    transparent 100%
  );
  animation: reviews-star-shine 4.5s ease-in-out infinite;
}

.review-stars .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card.is-visible:hover .review-stars .icon {
  transform: scale(1.14);
}

.review-card.is-visible:hover .review-stars .icon:nth-child(2) { transition-delay: 0.04s; }
.review-card.is-visible:hover .review-stars .icon:nth-child(3) { transition-delay: 0.08s; }
.review-card.is-visible:hover .review-stars .icon:nth-child(4) { transition-delay: 0.12s; }
.review-card.is-visible:hover .review-stars .icon:nth-child(5) { transition-delay: 0.16s; }

.review-quote {
  position: relative;
  z-index: 2;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--color-gray-600);
}

@media (min-width: 640px) {
  .review-quote { font-size: 15px; }
}

.review-footer {
  position: relative;
  z-index: 2;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.review-author {
  font-weight: 700;
  color: var(--color-brand-dark);
}

.review-location {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

/* ── Emergency CTA ── */
#contact {
  scroll-margin-top: var(--navbar-offset);
}

.emergency-cta {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 80, 80, 0.22) 0%, transparent 55%),
    linear-gradient(165deg, #c40000 0%, #9b0000 42%, #6b0000 100%);
}

@media (min-width: 640px) {
  .emergency-cta { padding: 5.5rem 0; }
}

@media (min-width: 1024px) {
  .emergency-cta { padding: 6.5rem 0; }
}

.emergency-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.emergency-cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.45;
}

.emergency-cta-glow--1 {
  top: -20%;
  left: -8%;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 60, 60, 0.55);
  animation: cta-glow-drift 14s ease-in-out infinite alternate;
}

.emergency-cta-glow--2 {
  right: -6%;
  bottom: -25%;
  width: 26rem;
  height: 26rem;
  background: rgba(180, 0, 0, 0.65);
  animation: cta-glow-drift 18s ease-in-out infinite alternate-reverse;
}

.emergency-cta-light-sweep {
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 100%
  );
  animation: cta-light-sweep 9s ease-in-out infinite;
}

.emergency-cta-truck {
  position: absolute;
  right: -2%;
  bottom: 8%;
  width: clamp(14rem, 28vw, 22rem);
  height: clamp(14rem, 28vw, 22rem);
  color: rgba(255, 255, 255, 0.06);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.25;
  animation: cta-truck-drift 22s ease-in-out infinite alternate;
}

@media (max-width: 639px) {
  .emergency-cta-truck {
    right: -18%;
    bottom: 2%;
    opacity: 0.7;
  }
}

@keyframes cta-glow-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2.5rem, 1.5rem) scale(1.08); }
}

@keyframes cta-light-sweep {
  0%, 35% { transform: translateX(0); opacity: 0; }
  50% { opacity: 1; }
  75%, 100% { transform: translateX(320%); opacity: 0; }
}

@keyframes cta-truck-drift {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-2.5rem) translateY(-0.75rem); }
}

.emergency-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .emergency-cta-inner { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .emergency-cta-inner { padding: 0 2rem; }
}

.emergency-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.emergency-cta-badge::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.85);
  animation: cta-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes cta-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.emergency-cta-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.emergency-cta-desc {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
}

.emergency-cta-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
}

.emergency-cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.emergency-cta-trust-item .icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
}

.emergency-cta-action { margin-top: 2.25rem; }

.emergency-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 40px rgba(255, 255, 255, 0.12);
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--color-brand-red);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-color 0.25s ease;
}

@media (min-width: 640px) {
  .emergency-cta-btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
}

.emergency-cta-btn:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 56px rgba(255, 255, 255, 0.22);
}

.emergency-cta-btn-icon {
  animation: cta-phone-ring 2.8s ease-in-out infinite;
}

@keyframes cta-phone-ring {
  0%, 100% { transform: rotate(0deg) scale(1); }
  8% { transform: rotate(-12deg) scale(1.08); }
  16% { transform: rotate(12deg) scale(1.08); }
  24% { transform: rotate(-8deg) scale(1.05); }
  32%, 100% { transform: rotate(0deg) scale(1); }
}

/* ── Footer ── */
.site-footer {
  position: relative;
  border-top: 2px solid var(--color-brand-red);
  background: linear-gradient(180deg, #161616 0%, #0d0d0d 55%, #080808 100%);
  color: #ffffff;
}

.site-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.5rem 1rem 2rem;
}

@media (min-width: 640px) {
  .site-footer-inner { padding: 4rem 1.5rem 2.25rem; }
}

@media (min-width: 1024px) {
  .site-footer-inner { padding: 4.5rem 2rem 2.5rem; }
}

.footer-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 2.5rem 2.5rem;
  }
}

.footer-col {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.footer-reveal:not(.is-visible) .footer-col {
  opacity: 0;
  transform: translateY(18px);
}

.footer-reveal.is-visible .footer-col:nth-child(1) { transition-delay: 0.05s; }
.footer-reveal.is-visible .footer-col:nth-child(2) { transition-delay: 0.12s; }
.footer-reveal.is-visible .footer-col:nth-child(3) { transition-delay: 0.19s; }
.footer-reveal.is-visible .footer-col:nth-child(4) { transition-delay: 0.26s; }

.footer-reveal.is-visible .footer-col {
  opacity: 1;
  transform: translateY(0);
}

.footer-col--brand .header-logo-link {
  display: inline-block;
}

.footer-about-text {
  margin-top: 1.25rem;
  max-width: 22rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-gray-400);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-300);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.footer-social-link:hover {
  color: #ffffff;
  border-color: rgba(214, 0, 0, 0.55);
  background: rgba(214, 0, 0, 0.12);
  transform: translateY(-2px);
}

.footer-social-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-col-title {
  margin-bottom: 1.125rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-red);
}

.footer-link-list,
.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link {
  display: inline-block;
  font-size: 0.9375rem;
  color: var(--color-gray-300);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-hours-item {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-gray-300);
}

.footer-hours-item + .footer-hours-item {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-gray-300);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-contact-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-link .icon--address { margin-top: 0.2rem; }

.footer-contact-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.footer-phone-number {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-contact-link:hover .footer-phone-number {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  text-align: center;
}

/* ── Mobile Call Bar ── */
.mobile-call-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  padding: 0.75rem;
  border-top: 1px solid var(--color-red-800);
  background-color: var(--color-brand-red);
}

@media (min-width: 768px) {
  .mobile-call-bar { display: none; }
}

.mobile-call-bar-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-button);
  background-color: #ffffff;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-brand-red);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .animate-fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .nav-link::after { transition: none; }

  .nav-phone:hover,
  .btn-secondary:hover,
  .call-btn--primary:hover,
  .call-btn--inverse:hover,
  .fleet-card.is-visible:hover {
    transform: none;
    filter: none;
  }

  .review-card.is-visible:hover,
  .service-card:hover,
  .service-stat-badge:hover,
  .service-list-item:hover,
  .about-point:hover,
  .about-image-frame:hover .about-image {
    transform: none;
  }

  .about-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fleet-card-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .fleet-card.is-visible:hover .fleet-card-img--photo,
  .fleet-card.is-visible:hover .fleet-card-img--illustration {
    transform: none;
  }

  .fleet-card-img--photo {
    height: 100%;
    margin-top: 0;
    transform: none;
    will-change: auto;
  }

  .fleet-card.is-visible:hover .fleet-card-media::after {
    left: -120%;
    opacity: 0;
    transition: none;
  }

  .fleet-card.is-visible:hover .fleet-badge {
    transform: none;
  }

  .fleet-card,
  .fleet-card::before,
  .fleet-card-media::after,
  .fleet-card-img,
  .fleet-badge {
    transition: none;
  }

  .about-image { transition: none; }

  .review-card-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .reviews-bg-orb,
  .review-stars::after,
  .reviews-rating-stars.is-complete {
    animation: none;
  }

  .reviews-rating-star {
    opacity: 1 !important;
    transform: scale(1) !important;
    animation: none !important;
  }

  .reviews-grid {
    transform: none !important;
    transition: none;
  }

  .review-card.is-visible:hover .review-stars .icon {
    transform: none;
  }

  .review-card::after,
  .review-card::before {
    transition: none;
  }

  .service-list-wrapper { transition: none; }

  .emergency-cta-glow,
  .emergency-cta-light-sweep,
  .emergency-cta-truck,
  .emergency-cta-badge::before,
  .emergency-cta-btn-icon {
    animation: none;
  }

  .emergency-cta-btn:hover {
    transform: none;
  }

  .footer-reveal,
  .footer-reveal .footer-col {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .footer-social-link:hover,
  .footer-link:hover,
  .footer-contact-link:hover {
    transform: none;
  }

  .header-logo-link:hover .header-logo-inner,
  .header-logo-link:focus-visible .header-logo-inner {
    transform: none;
    filter: none;
  }

  .header-logo-inner {
    transition: none;
  }

  .header-logo-inner::after {
    animation: none !important;
  }

  .hero-enter,
  .hero-premium.is-loaded .hero-enter--1,
  .hero-premium.is-loaded .hero-enter--2,
  .hero-premium.is-loaded .hero-enter--3,
  .hero-premium.is-loaded .hero-enter--4,
  .hero-premium.is-loaded .hero-enter--5 {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-truck-photo,
  .hero-truck-shine,
  .hero-trust-float-wrap,
  .hero-dispatch,
  .hero-scroll-wheel,
  .hero-btn-services:hover .hero-btn-services-icon {
    animation: none;
  }

  .hero-cta-primary:hover {
    transform: none;
  }

  .hero-cta-primary::after {
    animation: none !important;
  }

  .hero-visual-inner,
  .hero-truck-layer,
  .hero-trust-panel {
    transform: none !important;
    will-change: auto;
  }
}
