@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@300;400;500;600&display=swap');

/* ========================
   CSS Custom Properties
   ======================== */
:root {
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --bg-3:         #161616;
  --bg-card:      #141414;
  --accent:       #FF6B00;
  --accent-hover: #ff8533;
  --accent-dim:   rgba(255,107,0,0.12);
  --accent-glow:  rgba(255,107,0,0.22);
  --text:         #f4f4f2;
  --text-muted:   #888888;
  --text-dim:     #444444;
  --border:       rgba(255,255,255,0.07);
  --border-accent:rgba(255,107,0,0.32);
  --ff-head:      'Barlow Condensed', sans-serif;
  --ff-body:      'Barlow', sans-serif;
  --container:    1160px;
  --nav-h:        72px;
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         22px;
  --ease:         cubic-bezier(0.4,0,0.2,1);
  --dur:          0.25s;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.5);
  --shadow-accent:0 8px 40px rgba(255,107,0,0.28);
}

/* ========================
   Reset & Base
   ======================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; overflow-x:hidden; }
body {
  background:var(--bg);
  color:var(--text);
  font-family:var(--ff-body);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img, svg { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
ul, ol { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
input, textarea, select { font-family:inherit; }

/* ========================
   Typography
   ======================== */
h1,h2,h3,h4,h5 {
  font-family:var(--ff-head);
  text-transform:uppercase;
  letter-spacing:0.02em;
  line-height:1.1;
  font-weight:800;
}
.eyebrow {
  font-family:var(--ff-head);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--accent);
}
.section-title { font-size:clamp(34px,4.5vw,54px); margin-bottom:12px; }
.section-sub { font-size:17px; color:var(--text-muted); max-width:560px; text-wrap:pretty; }
.accent { color:var(--accent); }

/* ========================
   Layout
   ======================== */
.container { max-width:var(--container); margin:0 auto; padding:0 32px; }
.section { padding:96px 0; }
.section--alt { background:var(--bg-2); }
.section__header { margin-bottom:56px; }
.section__header--center { text-align:center; }
.section__header--center .section-sub { margin:0 auto; }

/* ========================
   Navigation
   ======================== */
.nav {
  position:fixed; top:0; left:0; right:0;
  z-index:1000; height:var(--nav-h);
  transition:background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom:1px solid transparent;
  overflow:hidden;
}
.nav.scrolled {
  background:rgba(10,10,10,0.96);
  backdrop-filter:blur(14px);
  border-bottom-color:var(--border);
}
.nav__container {
  max-width:var(--container); margin:0 auto; padding:0 32px;
  height:100%; display:flex; align-items:center; gap:40px;
  width:100%; box-sizing:border-box;
}
.nav__logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav__logo-mark { width:34px; height:34px; }
.nav__logo-text {
  font-family:var(--ff-head); font-size:21px; font-weight:900;
  text-transform:uppercase; letter-spacing:0.04em; line-height:1;
  white-space:nowrap;
}
.nav__logo-text span { color:var(--accent); }
.nav__links { display:flex; align-items:center; gap:6px; margin-left:auto; }
.nav__link {
  font-family:var(--ff-head); font-size:14px; font-weight:600;
  letter-spacing:0.07em; text-transform:uppercase; color:var(--text-muted);
  padding:8px 14px; border-radius:var(--r-sm);
  transition:color var(--dur) var(--ease);
}
.nav__link:hover, .nav__link.active { color:var(--text); }
.nav__phone {
  font-family:var(--ff-head); font-size:15px; font-weight:700;
  letter-spacing:0.04em; color:var(--accent);
  padding:9px 18px; border:1.5px solid var(--accent);
  border-radius:var(--r-sm); margin-left:12px;
  transition:all var(--dur) var(--ease);
}
.nav__phone:hover { background:var(--accent); color:#fff; }
.nav__hamburger {
  display:none; flex-direction:column; gap:5px;
  padding:8px; margin-left:auto; background:none; border:none;
}
.nav__hamburger span {
  display:block; width:24px; height:2px; background:var(--text);
  border-radius:2px; transition:transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity:0; }
.nav__hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display:none; position:fixed; top:var(--nav-h); left:0; right:0;
  background:rgba(10,10,10,0.98); backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border); padding:20px 32px 28px;
  flex-direction:column; gap:4px; z-index:999;
}
.nav__mobile.open { display:flex; }
.nav__mobile-link {
  font-family:var(--ff-head); font-size:20px; font-weight:700;
  text-transform:uppercase; letter-spacing:0.06em;
  padding:13px 0; border-bottom:1px solid var(--border);
  color:var(--text-muted); transition:color var(--dur) var(--ease);
}
.nav__mobile-link:hover, .nav__mobile-link.active { color:var(--text); }
.nav__mobile-cta {
  margin-top:16px; display:flex; align-items:center; gap:10px;
  font-family:var(--ff-head); font-size:22px; font-weight:800;
  color:var(--accent);
}

/* ========================
   @property — Shiny Button (21st.dev)
   ======================== */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}
@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

/* ========================
   Buttons
   ======================== */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--ff-head); font-weight:700;
  letter-spacing:0.07em; text-transform:uppercase;
  border-radius:var(--r-sm); transition:all var(--dur) var(--ease);
  cursor:pointer; white-space:nowrap; border:none;
}
.btn--lg { font-size:16px; padding:16px 32px; }
.btn--md { font-size:14px; padding:12px 24px; }
.btn--sm { font-size:13px; padding:9px 18px; }
.btn--accent { background:var(--accent); color:#fff; box-shadow:var(--shadow-accent); }
.btn--accent:hover { background:var(--accent-hover); transform:translateY(-2px); box-shadow:0 14px 48px rgba(255,107,0,0.38); }
.btn--outline { background:transparent; color:var(--text); border:1.5px solid rgba(255,255,255,0.22); }
.btn--outline:hover { border-color:rgba(255,255,255,0.5); background:rgba(255,255,255,0.06); transform:translateY(-2px); }
.btn--ghost { background:var(--bg-3); color:var(--text); border:1px solid var(--border); }
.btn--ghost:hover { background:var(--bg-card); border-color:rgba(255,255,255,0.16); }

/* ========================
   Shiny Button (21st.dev)
   ======================== */
.btn--shiny {
  --shiny-bg:        #000000;
  --shiny-bg-sub:    #1a1818;
  --shiny-hl:        #FF6B00;
  --shiny-hl-sub:    #ff9944;
  --shiny-dur:       3s;
  --shiny-ease:      800ms cubic-bezier(0.25, 1, 0.5, 1);

  isolation: isolate;
  position: relative;
  overflow: hidden;
  outline-offset: 4px;
  border-radius: 360px !important;
  border: 1px solid transparent !important;
  color: #fff !important;
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
  background:
    linear-gradient(var(--shiny-bg), var(--shiny-bg)) padding-box,
    conic-gradient(
      from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent,
      var(--shiny-hl) var(--gradient-percent),
      var(--gradient-shine) calc(var(--gradient-percent) * 2),
      var(--shiny-hl) calc(var(--gradient-percent) * 3),
      transparent calc(var(--gradient-percent) * 4)
    ) border-box !important;
  box-shadow: inset 0 0 0 1px var(--shiny-bg-sub);
  animation:
    shiny-rotate var(--shiny-dur) linear infinite,
    shiny-rotate calc(var(--shiny-dur) / 0.4) linear infinite reverse paused;
  animation-composition: add;
  transition: var(--shiny-ease);
  transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine, transform;
}

.btn--shiny::before,
.btn--shiny::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

/* Text label stays above shimmer layers */
.btn--shiny .btn-label,
.btn--shiny > span {
  position: relative;
  z-index: 1;
}

/* Dot pattern */
.btn--shiny::before {
  --pos: 2px;
  --space: calc(var(--pos) * 2);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: radial-gradient(
    circle at var(--pos) var(--pos),
    white calc(var(--pos) / 4),
    transparent 0
  ) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
  animation:
    shiny-rotate var(--shiny-dur) linear infinite,
    shiny-rotate calc(var(--shiny-dur) / 0.4) linear infinite reverse paused;
  animation-composition: add;
}

/* Inner shimmer sweep */
.btn--shiny::after {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, var(--shiny-hl), transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
  animation: shiny-shimmer var(--shiny-dur) linear infinite paused;
}

.btn--shiny:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-hl-sub);
  transform: translateY(-2px);
}

.btn--shiny:is(:hover, :focus-visible),
.btn--shiny:is(:hover, :focus-visible)::before,
.btn--shiny:is(:hover, :focus-visible)::after {
  animation-play-state: running;
}

.btn--shiny:active { translate: 0 1px; transform: none; }

@keyframes shiny-rotate  { to { --gradient-angle: 360deg; } }
@keyframes shiny-shimmer { to { rotate: 360deg; } }

/* ========================
   Hero
   ======================== */
.hero {
  min-height:100vh; display:flex; align-items:center;
  position:relative; overflow:hidden;
  padding-top:var(--nav-h);
}
.hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size:28px 28px;
}
.hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:200px; background:linear-gradient(to bottom, transparent, var(--bg-2));
  pointer-events:none; z-index:1;
}
/* Car silhouette background */
.hero__car-bg {
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}
.hero__car-bg img {
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 40%;
  opacity:0.55; /* dark + subtle so text stays readable */
  display:block;
}
/* Dark gradient overlay — fades image at top + bottom so it blends into the dark bg */
.hero__car-bg::after {
  content:'';
  position:absolute; inset:0;
  background:
    linear-gradient(to right,  rgba(10,10,10,0.85) 30%, rgba(10,10,10,0.2) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.5) 0%,  rgba(10,10,10,0.7) 100%);
}

.hero__glow {
  position:absolute; top:50%; right:8%;
  transform:translateY(-50%); width:540px; height:540px;
  background:radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
  pointer-events:none;
  z-index:1;
}
.hero__content {
  position:relative; z-index:3;
  padding:60px 48px 60px 48px; max-width:760px; margin-left:0;
}
.hero__eyebrow { margin-bottom:18px; }
.hero__title { font-size:clamp(42px, 4.6vw, 72px); margin-bottom:24px; }
.hero__sub {
  font-size:18px; color:var(--text-muted); margin-bottom:40px;
  max-width:460px; text-wrap:pretty; line-height:1.75;
}
.hero__ctas { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.hero__badges {
  display:flex; align-items:center; gap:20px;
  margin-top:44px; flex-wrap:wrap; row-gap:10px;
}
.hero__badge { display:flex; align-items:center; gap:8px; font-size:14px; color:var(--text-muted); white-space:nowrap; }
.hero__badge-dot { width:6px; height:6px; background:var(--accent); border-radius:50%; flex-shrink:0; }
.hero__visual {
  position:relative; z-index:3;
  display:flex; align-items:center; justify-content:center; padding:60px;
}
.hero__tyre-wrap {
  width:min(420px,85%); height:min(420px,85%);
  animation:spin-slow 28s linear infinite;
  filter:drop-shadow(0 0 40px rgba(255,107,0,0.18));
}
.hero__tyre-wrap:hover { animation-play-state:paused; }
@keyframes spin-slow { to { transform:rotate(360deg); } }

/* ========================
   Trust Strip
   ======================== */
.trust-strip { background:var(--accent); }
.trust-strip__inner {
  max-width:var(--container); margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:repeat(4,1fr);
}
.trust-item {
  display:flex; align-items:center; gap:14px;
  padding:22px 24px; border-right:1px solid rgba(255,255,255,0.18);
}
.trust-item:last-child { border-right:none; }
.trust-item__icon { flex-shrink:0; }
.trust-item__label {
  font-family:var(--ff-head); font-size:15px; font-weight:700;
  letter-spacing:0.04em; text-transform:uppercase; color:#fff; line-height:1.3;
}
.trust-item__sub { font-size:12px; color:rgba(255,255,255,0.72); margin-top:2px; }

/* ========================
   Service Cards (Home)
   ======================== */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.service-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-md); padding:36px; position:relative;
  overflow:visible;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-card:hover {
  transform:translateY(-4px);
  box-shadow:0 20px 48px rgba(0,0,0,0.45);
}

/* ── GlowCard — exact port of 21st.dev/easemize/spotlight-card ── */
/* JS sets --x, --xp, --y on each card via pointermove               */

/* Step 1: card-level CSS vars + background (mirrors getInlineStyles) */
.service-card[data-glow],
.service-row[data-glow] {
  --base:           30;
  --spread:         200;
  --radius:         14;
  --border:         3;
  --size:           200;
  --outer:          1;
  --border-size:    calc(var(--border) * 1px);
  --spotlight-size: calc(var(--size)   * 1px);
  --hue:            calc(var(--base) + (var(--xp, 0) * var(--spread)));
  /* tone down the defaults so the white line isn't harsh */
  --border-spot-opacity: 1;
  --border-light-opacity: 1;
  --bg-spot-opacity: 0.08;

  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at
    calc(var(--x, -999) * 1px) calc(var(--y, -999) * 1px),
    hsl(var(--hue) 100% 70% / var(--bg-spot-opacity)), transparent
  );
  background-color:    var(--bg-card);
  background-size:     calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-position: 50% 50%;
  background-attachment: fixed;
  border:              var(--border-size) solid rgba(255,255,255,0.07);
}

/* Step 2: shared ::before / ::after base (mirrors beforeAfterStyles) */
[data-glow]::before,
[data-glow]::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: calc(var(--border-size, 3px) * -1);
  border: var(--border-size, 3px) solid transparent;
  border-radius: calc(var(--radius, 14) * 1px);
  background-attachment: fixed;
  background-size: calc(100% + (2 * var(--border-size, 3px))) calc(100% + (2 * var(--border-size, 3px)));
  background-repeat: no-repeat;
  background-position: 50% 50%;
  /* mask: show gradient only in the border strip, not the card face */
  -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
          mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
}

/* Step 3: ::before — coloured hue border spot (mirrors component's ::before) */
[data-glow]::before {
  background-image: radial-gradient(
    calc(var(--spotlight-size, 200px) * 0.75) calc(var(--spotlight-size, 200px) * 0.75) at
    calc(var(--x, -999) * 1px) calc(var(--y, -999) * 1px),
    hsl(var(--hue, 30) 100% 50% / var(--border-spot-opacity, 0.65)), transparent 100%
  );
  filter: brightness(2);
}

/* Step 4: ::after — white-hot core (mirrors component's ::after) */
[data-glow]::after {
  background-image: radial-gradient(
    calc(var(--spotlight-size, 200px) * 0.5) calc(var(--spotlight-size, 200px) * 0.5) at
    calc(var(--x, -999) * 1px) calc(var(--y, -999) * 1px),
    hsl(0 100% 100% / var(--border-light-opacity, 0.08)), transparent 100%
  );
}

/* Step 5: nested [data-glow] inner div — blurred outer halo */
/* mirrors: [data-glow] [data-glow] in beforeAfterStyles           */
[data-glow] [data-glow] {
  position: absolute;
  inset: 0;
  will-change: filter;
  opacity: var(--outer, 1);
  border-radius: calc(var(--radius, 14) * 1px);
  filter: blur(calc(var(--border-size, 3px) * 10)); /* = 30px */
  background: none;
  pointer-events: none;
  border: none;
}

/* Step 6: inner div's ::before extends outside — creates the soft outer spread */
/* mirrors: [data-glow] > [data-glow]::before in beforeAfterStyles              */
[data-glow] > [data-glow]::before {
  inset: -10px;
  border-width: 10px;
}

/* Card content sits above all glow layers */
.service-card > *:not([data-glow]) { position: relative; z-index: 1; }
.service-card__icon {
  width:52px; height:52px; background:var(--accent-dim);
  border-radius:var(--r-sm); display:flex; align-items:center;
  justify-content:center; margin-bottom:22px;
}
.service-card__title { font-size:24px; margin-bottom:12px; }
.service-card__desc { font-size:15px; color:var(--text-muted); line-height:1.72; margin-bottom:20px; text-wrap:pretty; }
.service-card__link {
  font-family:var(--ff-head); font-size:13px; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--accent);
  display:inline-flex; align-items:center; gap:6px;
  transition:gap var(--dur) var(--ease);
}
.service-card__link:hover { gap:12px; }

/* ========================
   Emergency Strip
   ======================== */
.emergency-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.emergency-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,107,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.emergency-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; position: relative; z-index: 1;
}
.emergency-strip__left { max-width: 580px; }
.emergency-strip__badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 30px; padding: 6px 14px;
  margin-bottom: 18px;
}
.emergency-strip__title {
  font-size: clamp(28px, 3.5vw, 46px);
  margin-bottom: 14px; line-height: 1.1;
}
.emergency-strip__title span { color: var(--accent); }
.emergency-strip__sub {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.75; text-wrap: pretty;
}
.emergency-strip__right {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; flex-shrink: 0;
}
.emergency-strip__phone {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-head); font-size: 42px; font-weight: 900;
  color: #fff; letter-spacing: 0.02em; white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.emergency-strip__phone:hover { color: var(--accent); }
.emergency-strip__availability {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted);
}
.emergency-strip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
@media (max-width: 1024px) {
  .emergency-strip__inner { flex-direction: column; text-align: center; }
  .emergency-strip__right { align-items: center; }
  .emergency-strip__phone { font-size: 34px; }
}

/* ========================
   Steps
   ======================== */
.steps {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:40px; position:relative;
}
.steps::before {
  content:''; position:absolute; top:35px;
  left:calc(100%/6); right:calc(100%/6);
  height:1px; background:var(--border-accent); opacity:0.5;
}
.step { text-align:center; }
.step__num {
  width:70px; height:70px; margin:0 auto 24px; border-radius:50%;
  background:var(--bg-3); border:2px solid var(--border-accent);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-head); font-size:26px; font-weight:800;
  color:var(--accent); position:relative; z-index:1;
}
.step__title { font-size:22px; margin-bottom:10px; }
.step__desc { font-size:15px; color:var(--text-muted); text-wrap:pretty; }

/* ========================
   Testimonials
   ======================== */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testimonial-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-md); padding:30px;
  transition:border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.testimonial-card:hover { border-color:var(--border-accent); transform:translateY(-3px); }
.testimonial-card__stars { color:var(--accent); font-size:15px; letter-spacing:2px; margin-bottom:16px; }
.testimonial-card__text {
  font-size:15px; color:var(--text-muted); line-height:1.72;
  margin-bottom:20px; font-style:italic; text-wrap:pretty;
}
.testimonial-card__author { display:flex; align-items:center; gap:12px; }
.testimonial-card__avatar {
  width:40px; height:40px; background:var(--bg-3);
  border-radius:50%; border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-head); font-size:14px; font-weight:700;
  color:var(--accent); flex-shrink:0;
}
.testimonial-card__name { font-weight:600; font-size:15px; }
.testimonial-card__location { font-size:13px; color:var(--text-dim); margin-top:2px; }

/* ========================
   CTA Banner
   ======================== */
.cta-banner {
  background:var(--accent); padding:80px 0;
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size:24px 24px;
}
.cta-banner__inner {
  position:relative; z-index:1; max-width:var(--container);
  margin:0 auto; padding:0 32px;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
}
.cta-banner__title { font-size:clamp(30px,4vw,52px); color:#fff; margin-bottom:8px; }
.cta-banner__sub { font-size:17px; color:rgba(255,255,255,0.8); }
.cta-banner__actions { display:flex; flex-direction:column; align-items:flex-end; gap:14px; flex-shrink:0; }
.cta-phone { font-family:var(--ff-head); font-size:38px; font-weight:900; color:#fff; letter-spacing:0.02em; }

/* ========================
   Footer
   ======================== */
.footer { background:var(--bg); border-top:1px solid var(--border); padding:64px 0 32px; }
.footer__grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:52px; }
.footer__brand-tagline { font-size:15px; color:var(--text-muted); margin-top:16px; max-width:280px; text-wrap:pretty; line-height:1.7; }
.footer__col-title {
  font-family:var(--ff-head); font-size:12px; font-weight:700;
  letter-spacing:0.15em; text-transform:uppercase;
  color:var(--text-dim); margin-bottom:18px;
}
.footer__links { display:flex; flex-direction:column; gap:10px; }
.footer__link { font-size:15px; color:var(--text-muted); transition:color var(--dur) var(--ease); }
.footer__link:hover { color:var(--text); }
.footer__contact-item { display:flex; align-items:flex-start; gap:10px; font-size:15px; color:var(--text-muted); margin-bottom:10px; }
.footer__bottom {
  border-top:1px solid var(--border); padding-top:28px;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}
.footer__copy { font-size:14px; color:var(--text-dim); }
.footer__social { display:flex; gap:10px; }
.footer__social-link {
  width:36px; height:36px; background:var(--bg-3);
  border:1px solid var(--border); border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  transition:all var(--dur) var(--ease); color:var(--text-muted); font-size:13px; font-weight:700;
  font-family:var(--ff-head); letter-spacing:0;
}
.footer__social-link:hover { color:var(--text); border-color:rgba(255,255,255,0.18); background:var(--bg-card); }
/* Prevent SVG icons collapsing to 0 width inside flex footer rows */
.footer__contact-item svg { flex-shrink:0; width:16px; height:16px; min-width:16px; }

/* ========================
   Van Photo Gallery
   ======================== */
.van-gallery {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:12px;
}
.van-gallery__main {
  border-radius:var(--r-lg);
  overflow:hidden;
  aspect-ratio:4/3;
}
.van-gallery__main img {
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.5s ease;
}
.van-gallery__main:hover img { transform:scale(1.03); }

.van-gallery__grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:12px;
}
.van-gallery__item {
  border-radius:var(--r-md);
  overflow:hidden;
}
.van-gallery__item img {
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.5s ease;
}
.van-gallery__item:hover img { transform:scale(1.05); }
.van-gallery__item--wide {
  grid-column:1 / -1;
}

@media (max-width:768px) {
  .van-gallery { grid-template-columns:1fr; }
  .van-gallery__grid { grid-template-columns:1fr 1fr; }
  .van-gallery__main { aspect-ratio:16/9; }
}

/* ========================
   Page Hero (inner pages)
   ======================== */
.page-hero {
  padding:calc(var(--nav-h) + 64px) 0 60px;
  background:var(--bg-2); border-bottom:1px solid var(--border);
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size:28px 28px; pointer-events:none;
}
.page-hero__accent-line {
  position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--accent);
}
.page-hero__content { position:relative; z-index:1; }
.page-hero__title { font-size:clamp(40px,5vw,72px); margin-bottom:16px; }
.page-hero__sub { font-size:18px; color:var(--text-muted); max-width:580px; text-wrap:pretty; }

/* ========================
   Blueprint Banner
   ======================== */
.blueprint-banner {
  position:relative;
  height:420px;
  overflow:hidden;
}
.blueprint-banner img {
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 30%;
  display:block;
}
/* Dark overlay — fades edges into site background + adds orange tint */
.blueprint-banner__overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(to right,  rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.7) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.0) 40%, rgba(10,10,10,0.8) 100%);
}
/* Content sits over the overlay */
.blueprint-banner__content {
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%, -50%);
  text-align:center;
  z-index:2;
  max-width:680px;
  padding:0 32px;
}
.blueprint-banner__content .eyebrow { margin-bottom:16px; }
.blueprint-banner__content h2 {
  font-size:clamp(32px, 4vw, 56px);
  margin-bottom:20px;
  color:#fff;
}
.blueprint-banner__content p {
  font-size:16px;
  color:var(--text-muted);
  line-height:1.75;
  max-width:520px;
  margin:0 auto;
}

/* ========================
   Services Page (List)
   ======================== */
.services-list { display:flex; flex-direction:column; gap:20px; }
.service-row {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-md); padding:36px 44px;
  display:grid; grid-template-columns:68px 1fr auto;
  align-items:center; gap:28px; position:relative; overflow:visible;
  transition:border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.service-row:hover {
  transform:translateX(4px);
  box-shadow:0 8px 32px rgba(0,0,0,0.35);
}
/* Glow border handled by shared [data-glow] rules above */
.service-row > *:not([data-glow]) { position:relative; z-index:1; }
.service-row__icon {
  width:68px; height:68px; background:var(--accent-dim);
  border-radius:var(--r-sm); display:flex; align-items:center;
  justify-content:center; flex-shrink:0;
}
.service-row__body h3 { font-size:28px; margin-bottom:8px; }
.service-row__body p { font-size:15px; color:var(--text-muted); text-wrap:pretty; line-height:1.72; max-width:600px; }
.service-row__tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:12px; }
.service-tag {
  font-family:var(--ff-head); font-size:11px; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase;
  background:var(--bg-3); border:1px solid var(--border);
  border-radius:30px; padding:4px 12px; color:var(--text-muted);
}

/* ========================
   About Page
   ======================== */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.about-visual {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-lg); overflow:hidden; aspect-ratio:4/3;
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.about-visual--photo {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.about-visual--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}
.about-visual--photo:hover img { transform: scale(1.04); }
.about-visual--photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.1) 50%, transparent 100%),
    linear-gradient(to right, rgba(10,10,10,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.about-visual--photo .about-visual__label { z-index: 2; }
.about-visual__label {
  position:absolute; bottom:20px; left:20px;
  background:rgba(0,0,0,0.7); backdrop-filter:blur(8px);
  border:1px solid var(--border); border-radius:var(--r-sm);
  padding:8px 14px; font-family:var(--ff-head);
  font-size:13px; font-weight:600; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--text-muted);
}
.values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:36px; }
.values-grid--3 { grid-template-columns:repeat(3,1fr); }
.values-4 { grid-template-columns:repeat(4,1fr); }
.value-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-md); padding:24px;
  transition:border-color var(--dur) var(--ease);
}
.value-card:hover { border-color:var(--border-accent); }
.value-card__icon { margin-bottom:12px; }
.value-card__title { font-size:19px; margin-bottom:8px; }
.value-card__desc { font-size:14px; color:var(--text-muted); text-wrap:pretty; line-height:1.65; }
.stat-row { display:flex; gap:40px; margin-top:36px; }
.stat { }
.stat__num { font-family:var(--ff-head); font-size:42px; font-weight:900; color:var(--accent); line-height:1; }
.stat__label { font-size:14px; color:var(--text-muted); margin-top:4px; }

/* ========================
   Contact Page
   ======================== */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.contact-form { display:flex; flex-direction:column; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-group label {
  font-family:var(--ff-head); font-size:12px; font-weight:700;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted);
}
.form-group input, .form-group select, .form-group textarea {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-sm); padding:13px 16px;
  color:var(--text); font-size:15px; width:100%;
  transition:border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color:var(--text-dim); }
.form-group select option { background:var(--bg-card); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline:none; border-color:var(--border-accent);
  box-shadow:0 0 0 3px rgba(255,107,0,0.1);
}
.form-group textarea { min-height:120px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-info__card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-md); padding:30px; margin-bottom:20px;
}
.contact-info__item {
  display:flex; align-items:flex-start; gap:14px;
  padding:14px 0; border-bottom:1px solid var(--border);
}
.contact-info__item:last-child { border-bottom:none; padding-bottom:0; }
.contact-info__icon {
  width:40px; height:40px; background:var(--accent-dim);
  border-radius:var(--r-sm); display:flex; align-items:center;
  justify-content:center; flex-shrink:0;
}
.contact-info__label {
  font-family:var(--ff-head); font-size:11px; font-weight:700;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--text-dim); margin-bottom:4px;
}
.contact-info__value { font-size:16px; font-weight:500; color:var(--text); }
.contact-info__value a { color:var(--accent); transition:color var(--dur) var(--ease); }
.contact-info__value a:hover { color:var(--accent-hover); }
.hours-table { width:100%; border-collapse:collapse; margin-top:6px; }
.hours-table tr td { padding:5px 0; font-size:14px; }
.hours-table tr td:first-child { color:var(--text-muted); }
.hours-table tr td:last-child { text-align:right; font-weight:600; }

/* ========================
   Floating Call Button
   ======================== */
.float-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(255,107,0,0.45), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  text-decoration: none;
}
.float-call:hover {
  background: var(--accent-hover);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,107,0,0.55), 0 4px 12px rgba(0,0,0,0.4);
}
.float-call:active { transform: scale(0.96); }
.float-call svg { flex-shrink: 0; }
.float-call__ring {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(255,107,0,0.5);
  animation: float-ring 2s ease-out infinite;
}
.float-call__ring:nth-child(2) { animation-delay: 0.6s; inset: -8px; border-color: rgba(255,107,0,0.3); }
@keyframes float-ring {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
@media (max-width: 640px) {
  .float-call { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

/* ========================
   Animations
   ======================== */
.fade-up {
  opacity:0; transform:translateY(22px);
  transition:opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible { opacity:1; transform:none; }
.stagger-1 { transition-delay:0.1s; }
.stagger-2 { transition-delay:0.2s; }
.stagger-3 { transition-delay:0.3s; }
.stagger-4 { transition-delay:0.4s; }

/* ========================
   Responsive
   ======================== */
@media (max-width:1024px) {
  .hero { grid-template-columns:1fr; min-height:auto; padding:calc(var(--nav-h)+20px) 0 0; }
  .hero__content { padding:40px 32px; margin:0 auto; max-width:100%; width:100%; text-align:center; }
  .hero__ctas { justify-content:center; flex-wrap:wrap; gap:12px; }
  .hero__badges { justify-content:center; }
  .hero__sub { margin-left:auto; margin-right:auto; }
  .hero__visual { padding:20px 32px 60px; }
  .hero__tyre-wrap { width:220px; height:220px; }
  .trust-strip__inner { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:none; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-top:1px solid rgba(255,255,255,0.14); }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .steps { grid-template-columns:1fr; }
  .steps::before { display:none; }
  .testimonials-grid { grid-template-columns:repeat(2,1fr); }
  .values-4 { grid-template-columns:repeat(2,1fr); }
  .cta-banner__inner { flex-direction:column; text-align:center; }
  .cta-banner__actions { align-items:center; }
  .footer__grid { grid-template-columns:1fr 1fr; gap:36px; }
  .about-grid { grid-template-columns:1fr; gap:36px; }
  .contact-grid { grid-template-columns:1fr; }
  .service-row { grid-template-columns:60px 1fr; padding:24px 28px; }
  .service-row > .btn { grid-column:2; }
}
@media (max-width:640px) {
  .container { padding:0 20px; }
  .section { padding:64px 0; }
  .nav__container { gap:0; padding:0 16px; justify-content:space-between; }
  .nav__logo-mark { width:28px; height:28px; }
  .nav__logo-text { font-size:16px; }
  .nav__logo { gap:7px; }
  .nav__links { display:none; }
  .nav__hamburger { display:flex; }
  .trust-strip__inner { grid-template-columns:1fr; }
  .trust-item { border-right:none !important; border-top:1px solid rgba(255,255,255,0.12) !important; }
  .trust-item:first-child { border-top:none !important; }
  .services-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .footer__grid { grid-template-columns:1fr; gap:32px; }
  .form-row { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .values-grid--3 { grid-template-columns:1fr; }
  .service-row {
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    padding: 20px;
    gap: 14px;
  }
  .service-row__icon {
    width: 52px;
    height: 52px;
    align-self: start;
  }
  .service-row__body { grid-column: 2; }
  .service-row__body h3 { font-size: 20px; margin-bottom: 6px; }
  .service-row__body p {
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service-row__tags { margin-top: 8px; }
  .service-row > .btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }
  .stat-row { gap:24px; }
  .emergency-strip__phone { font-size:26px; }
  .emergency-strip { padding:48px 0; }
  .float-call { bottom:20px; right:20px; width:54px; height:54px; }
}

/* ========================
   Contact CTA Cards
   ======================== */
.contact-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-cta-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-cta-card__icon--accent {
  background: var(--accent-dim);
  border-color: var(--border-accent);
}
.contact-cta-card__body {
  flex: 1;
  min-width: 0;
}
.contact-cta-card__label {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.contact-cta-card__value {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  display: block;
  white-space: nowrap;
}
.contact-cta-card__value--sm {
  font-size: 15px;
  font-weight: 700;
  white-space: normal;
  word-break: break-all;
}
.contact-cta-card__btn {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .contact-cta-card {
    flex-wrap: wrap;
    padding: 20px;
    gap: 16px;
  }
  .contact-cta-card__body { min-width: 0; flex: 1 1 calc(100% - 72px); }
  .contact-cta-card__value { font-size: 22px; white-space: normal; }
  .contact-cta-card__btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

/* ========================
   Page Loader
   ======================== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader__icon {
  position: relative;
  width: 72px;
  height: 72px;
}
.loader__icon svg.loader__tyre {
  animation: loader-spin 1.2s linear infinite;
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}
.loader__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  animation: loader-ring 1.2s linear infinite;
}
@keyframes loader-ring {
  to { transform: rotate(360deg); }
}
.loader__wordmark {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.loader__wordmark span {
  color: var(--accent);
}
