/* ===========================================================================
   UK Car Key Assist -- Full Stylesheet
   Theme: Dark Navy (#0B1929) / Pink (#E8185A) / Cyan (#22D3EE)
   =========================================================================== */

/* --- Design Tokens ------------------------------------------------------ */
:root {
  /* Brand colours */
  --bg:        #0B1929;
  --bg-2:      #0d1f35;
  --bg-card:   #0f2540;
  --bg-card-2: #112947;
  --border:    rgba(255,255,255,0.08);
  --border-md: rgba(255,255,255,0.12);

  --pink:      #E8185A;
  --pink-glow: rgba(232,24,90,0.35);
  --pink-dim:  rgba(232,24,90,0.15);
  --cyan:      #22D3EE;
  --cyan-glow: rgba(34,211,238,0.30);
  --cyan-dim:  rgba(34,211,238,0.12);

  --text:      #e8edf2;
  --text-muted:#8ba4bc;
  --text-faint:#4d6a84;

  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem;    --sp-10: 2.5rem;
  --sp-12: 3rem;   --sp-16: 4rem;  --sp-20: 5rem;   --sp-24: 6rem;

  /* Radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;

  /* Fonts */
  --font-display: 'Clash Display', 'Helvetica Neue', sans-serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;

  /* Transition */
  --ease: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --w-default: 1200px;
  --w-narrow:  800px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background-color: var(--bg);
  min-height: 100dvh;
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Typography ------------------------------------------------------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; }

.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, #ff6b9d 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 24px var(--pink-glow);
}
.btn-primary:hover {
  background: #c8134e;
  box-shadow: 0 6px 32px var(--pink-glow);
  transform: translateY(-1px);
}

.btn-nav-cta {
  background: var(--pink);
  color: #fff;
  padding: 0.6rem 1.25rem;
  font-size: var(--text-sm);
  box-shadow: 0 2px 16px var(--pink-glow);
}
.btn-nav-cta:hover {
  background: #c8134e;
  transform: translateY(-1px);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink) 0%, #c8134e 100%);
  color: #fff;
  padding: 1rem;
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: var(--r-md);
  box-shadow: 0 4px 24px var(--pink-glow);
  margin-top: var(--sp-4);
}
.btn-submit:hover {
  background: linear-gradient(135deg, #c8134e 0%, #a00f40 100%);
  box-shadow: 0 6px 32px rgba(232,24,90,0.5);
  transform: translateY(-1px);
}
.btn-submit:disabled { opacity: 0.6; transform: none; cursor: wait; }

.btn-cta-white {
  background: #fff;
  color: var(--pink);
  font-weight: 700;
  padding: 0.9rem 2rem;
  font-size: var(--text-base);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.btn-cta-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* --- NAV --------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,25,41,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: var(--w-default);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 68px;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-svg { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo-text em { font-style: normal; color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--text); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}

/* --- HERO ------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(var(--sp-12), 8vw, var(--sp-24)) var(--sp-6);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(232,24,90,0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}
.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(34,211,238,0.14) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-default);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 5vw, var(--sp-20));
  align-items: start;
}

/* Hero content */
.hero-content { padding-top: var(--sp-4); }

.hero-pills {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.375rem 0.875rem;
  border-radius: var(--r-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.pill-pink {
  background: var(--pink-dim);
  color: var(--pink);
  border: 1px solid rgba(232,24,90,0.3);
}
.pill-cyan {
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(34,211,238,0.25);
}

.hero-content h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-plus { color: var(--pink); }
.stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--sp-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-md);
}

/* UK Map hero */
.uk-map-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  max-width: 240px;
}
.uk-map-svg { width: 100%; filter: drop-shadow(0 0 20px rgba(34,211,238,0.1)); }
.uk-shape { opacity: 0.9; }
.map-caption {
  font-size: var(--text-xs);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Map dots -- hero */
.dot {
  animation: pulse 3s ease-in-out infinite;
}
.dot-pink { fill: var(--pink); }
.dot-cyan { fill: var(--cyan); }
.dot-ring {
  fill: none;
  stroke: var(--pink);
  stroke-width: 1;
  opacity: 0;
  animation: ring-pulse 3s ease-in-out infinite;
}
.dot-ring-cyan { stroke: var(--cyan); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes ring-pulse {
  0% { opacity: 0; r: 6px; }
  30% { opacity: 0.6; }
  100% { opacity: 0; r: 14px; }
}

/* --- FORM CARD -------------------------------------------------------- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl);
  padding: clamp(var(--sp-6), 4vw, var(--sp-10));
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,24,90,0.08);
  position: sticky;
  top: 88px;
}

.form-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.form-card-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-dim);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(232,24,90,0.25);
}
.form-card-header h2 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.form-card-header p {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Form sections */
.form-section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}
.form-section-label:first-child { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-row.three-col { grid-template-columns: 1fr 1fr 1fr; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.form-field:last-child { margin-bottom: 0; }

label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.req { color: var(--pink); }

input[type="text"],
input[type="tel"],
input[type="email"],
select {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.875rem;
  font-size: var(--text-sm);
  color: #111111;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  -webkit-text-fill-color: #111111;
}
select option {
  background: #fff;
  color: #111;
}
input::placeholder,
textarea::placeholder { color: #9ca3af; opacity: 1; }
input:focus, select:focus {
  outline: none;
  border-color: var(--cyan);
  background: #ffffff;
  color: #111111;
  -webkit-text-fill-color: #111111;
  box-shadow: 0 0 0 3px rgba(34,211,238,0.18);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 999px #ffffff inset;
  box-shadow: 0 0 0 999px #ffffff inset;
  -webkit-text-fill-color: #111111;
  color: #111111;
  caret-color: #111111;
  background-color: #ffffff;
}
/* VRN plate input - yellow, never white */
input[type="search"],
#vrn {
  background: transparent !important;
  background-color: transparent !important;
  -webkit-text-fill-color: #1a1a1a !important;
  color: #1a1a1a !important;
  -webkit-appearance: none;
  appearance: none;
}
input[type="search"]:focus,
#vrn:focus {
  background: transparent !important;
  background-color: transparent !important;
  -webkit-text-fill-color: #1a1a1a !important;
  box-shadow: none !important;
  outline: none;
}
input[type="search"]:-webkit-autofill,
#vrn:-webkit-autofill,
#vrn:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 999px #F5CB15 inset !important;
  -webkit-text-fill-color: #1a1a1a !important;
}
.vrn-plate {
  background: #F5CB15 !important;
}
input.error, select.error {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-dim);
}

.field-error {
  font-size: var(--text-xs);
  color: var(--pink);
  display: block;
  min-height: 1rem;
  font-weight: 500;
}

/* Select wrap */
.select-wrap {
  position: relative;
}
.select-wrap select {
  padding-right: 2.5rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.select-arrow {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

/* VRN Plate */
.vrn-plate {
  display: flex;
  align-items: stretch;
  background: #F5CB15;
  border-radius: 6px;
  border: 2px solid #333;
  overflow: hidden;
  height: 52px;
  margin-top: 2px;
  box-shadow: 0 2px 12px rgba(245,203,21,0.2);
  transition: box-shadow var(--ease);
}
.vrn-plate:focus-within {
  box-shadow: 0 0 0 3px rgba(34,211,238,0.25), 0 2px 12px rgba(245,203,21,0.3);
}
.vrn-gb-strip {
  background: #003399;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  min-width: 32px;
  gap: 1px;
}
.vrn-stars {
  font-size: 7px;
  letter-spacing: 1px;
  color: #FFD700;
  line-height: 1;
}
.vrn-gb {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
}
.vrn-plate input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #1a1a1a;
  text-transform: uppercase;
  padding: 0 12px;
  font-family: 'Charles Wright', 'UKNumberPlate', 'Arial Black', sans-serif;
  text-align: center;
  width: 100%;
}
.vrn-plate input::placeholder { color: #999; letter-spacing: 0.1em; }
.vrn-plate input:focus { background: transparent !important; box-shadow: none; color: #1a1a1a !important; -webkit-text-fill-color: #1a1a1a !important; }

/* Urgent notice */
.urgent-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background: rgba(232,24,90,0.1);
  border: 1px solid rgba(232,24,90,0.3);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  color: #ff6b9d;
  font-size: var(--text-sm);
  margin-top: var(--sp-4);
}
.urgent-notice svg { flex-shrink: 0; margin-top: 2px; }

.form-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: var(--sp-3);
}

/* Success state */
.form-success {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
}
.success-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--cyan-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  border: 1px solid rgba(34,211,238,0.25);
}
.form-success h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}
.form-success p { color: var(--text-muted); margin-bottom: var(--sp-3); font-size: var(--text-sm); }
.ref-line { color: var(--text); }
.ref-line strong { color: var(--cyan); font-family: monospace; font-size: 1.1em; }
.success-note { font-size: var(--text-xs); color: var(--text-faint); }

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }

/* --- TRUST BAR --------------------------------------------------------- */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: var(--sp-4) 0;
}

.trust-ticker-wrap { overflow: hidden; width: 100%; }

.trust-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker 40s linear infinite;
}
.trust-ticker:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-8);
  white-space: nowrap;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border-md);
  flex-shrink: 0;
}

/* --- HOW IT WORKS ------------------------------------------------------ */
.how-section {
  padding: clamp(var(--sp-16), 8vw, var(--sp-24)) var(--sp-6);
  background: var(--bg);
}

.section-inner {
  max-width: var(--w-default);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--sp-10), 6vw, var(--sp-16));
}
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: var(--sp-3);
}
.section-header h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}
.section-header p {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.step { display: flex; flex-direction: column; gap: var(--sp-4); }

.step-num-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, #b01045 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px var(--pink-glow);
  position: relative;
  z-index: 1;
}
.step-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-dim), var(--cyan-dim));
  margin-left: -4px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: border-color var(--ease), transform var(--ease);
  flex: 1;
}
.step-card:hover {
  border-color: var(--border-md);
  transform: translateY(-2px);
}
.step-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-card-2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  border: 1px solid var(--border);
}
.step-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--text);
}
.step-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- SERVICES --------------------------------------------------------- */
.services-section {
  padding: clamp(var(--sp-16), 8vw, var(--sp-24)) var(--sp-6);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.service-card:hover {
  border-color: var(--border-md);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.service-card--urgent {
  border-color: rgba(232,24,90,0.2);
}
.service-card--urgent:hover {
  border-color: rgba(232,24,90,0.4);
  box-shadow: 0 16px 48px rgba(232,24,90,0.1);
}

.service-badge-urgent {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: var(--pink-dim);
  color: var(--pink);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(232,24,90,0.3);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: color-mix(in srgb, var(--icon-color, #E8185A) 12%, transparent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--icon-color, #E8185A) 25%, transparent);
  flex-shrink: 0;
}
.service-body h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-2);
}
.service-body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- COVERAGE --------------------------------------------------------- */
.coverage-section {
  padding: clamp(var(--sp-16), 8vw, var(--sp-24)) var(--sp-6);
  background: var(--bg);
  overflow: hidden;
}
.coverage-inner {
  max-width: var(--w-default);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-20));
  align-items: center;
}

/* Coverage map */
.coverage-map {
  position: relative;
  display: flex;
  justify-content: center;
}
.coverage-map-svg {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 0 40px rgba(34,211,238,0.15));
}
.uk-shape-lg {
  opacity: 0.95;
  stroke-width: 1.5;
}

/* Coverage city dots */
.cdot {
  animation: cdot-pulse 4s ease-in-out infinite;
}
.cdot-pink { fill: var(--pink); }
.cdot-cyan { fill: var(--cyan); }

@keyframes cdot-pulse {
  0%, 100% { opacity: 1; r: inherit; filter: none; }
  25% { opacity: 0.5; }
  50% { opacity: 1; filter: brightness(1.4); }
  75% { opacity: 0.7; }
}

/* Coverage content */
.coverage-content .section-eyebrow { display: block; margin-bottom: var(--sp-3); }
.coverage-content h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}
.coverage-intro {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 50ch;
  margin-bottom: var(--sp-8);
  line-height: 1.65;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
}
.coverage-list svg { flex-shrink: 0; margin-top: 2px; }

/* --- TESTIMONIALS ------------------------------------------------------ */
.testimonials-section {
  padding: clamp(var(--sp-16), 8vw, var(--sp-24)) var(--sp-6);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: border-color var(--ease), transform var(--ease);
}
.testimonial-card:hover {
  border-color: var(--border-md);
  transform: translateY(-2px);
}
.testimonial-card--featured {
  border-color: rgba(232,24,90,0.25);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232,24,90,0.05) 100%);
}
.testimonial-card--featured:hover {
  border-color: rgba(232,24,90,0.4);
}

.stars { display: flex; gap: var(--sp-1); }

blockquote {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--avatar-color, #E8185A) 20%, transparent);
  border: 2px solid color-mix(in srgb, var(--avatar-color, #E8185A) 40%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--avatar-color, #E8185A);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--text);
}
.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* --- CTA SECTION ------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: clamp(var(--sp-16), 8vw, var(--sp-20)) var(--sp-6);
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8c0030 0%, var(--pink) 40%, #c0206a 70%, #0d2140 100%);
  opacity: 0.95;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
}
.cta-content h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}
.cta-content p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
  margin: 0 auto;
}

/* --- FOOTER ------------------------------------------------------------ */
.footer {
  background: #060f1a;
  border-top: 1px solid var(--border);
  padding: clamp(var(--sp-12), 6vw, var(--sp-20)) var(--sp-6) 0;
}
.footer-inner {
  max-width: var(--w-default);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(var(--sp-8), 4vw, var(--sp-16));
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border);
}

.footer-logo { margin-bottom: var(--sp-5); }
.footer-desc {
  font-size: var(--text-sm);
  color: var(--text-faint);
  line-height: 1.65;
  max-width: 42ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-col a {
  text-decoration: none;
  font-size: var(--text-sm);
  color: var(--text-faint);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--text); }

.footer-checklist { gap: var(--sp-3); }
.footer-checklist li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-faint);
}

.footer-bottom {
  max-width: var(--w-default);
  margin: 0 auto;
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* =======================================================================
   RESPONSIVE
   ======================================================================= */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .uk-map-hero { display: none; }
  .hero-content h1 { font-size: var(--text-2xl); }
  .hero-sub { font-size: var(--text-base); }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: var(--sp-5); }

  .coverage-inner { grid-template-columns: 1fr; }
  .coverage-map { order: -1; max-width: 260px; margin: 0 auto; }
  .coverage-map-svg { max-width: 260px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(11,25,41,0.97);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-5) var(--sp-6);
    gap: var(--sp-4);
    z-index: 99;
  }
  .nav-links.open a { font-size: var(--text-base); color: var(--text); }

  .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: auto; padding-top: var(--sp-10); }
  .hero-stats { gap: var(--sp-4); }
  .stat-num { font-size: var(--text-lg); }

  .form-row { grid-template-columns: 1fr; }
  .form-row.three-col { grid-template-columns: 1fr 1fr; }

  .steps { grid-template-columns: 1fr; gap: var(--sp-5); }

  .services-grid { grid-template-columns: 1fr; }

  .coverage-inner { gap: var(--sp-8); }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
}

@media (max-width: 480px) {
  .hero-pills { flex-wrap: wrap; }
  .form-row.three-col { grid-template-columns: 1fr; }
  .vrn-plate input { font-size: 20px; }
  .trust-item { padding: 0 var(--sp-6); }
}

/* --- Focus Visible ------------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* --- Selection -------------------------------------------------------- */
::selection {
  background: var(--pink-dim);
  color: var(--text);
}

/* --- GALLERY (Our Work) ----------------------------------------------- */
.gallery-section {
  padding: clamp(var(--sp-16), 8vw, var(--sp-24)) var(--sp-6);
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 10px;
  margin-top: clamp(var(--sp-10), 6vw, var(--sp-16));
}
.gallery-grid .g-wide { grid-column: span 2; }
.gallery-grid .g-tall { grid-row: span 2; }

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
  min-height: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,25,41,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-md);
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .g-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid .g-wide { grid-column: span 2; }
  .gallery-grid .g-tall { grid-row: span 1; }
}

/* --- Location page specific ------------------------------------------- */
.loc-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) var(--sp-6) clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  background: var(--bg);
}
.loc-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.loc-hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,24,90,0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.loc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-default);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 5vw, var(--sp-20));
  align-items: start;
}
.loc-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}
.loc-breadcrumb a { color: var(--text-faint); text-decoration: none; }
.loc-breadcrumb a:hover { color: var(--cyan); }
.loc-breadcrumb span { color: var(--text-muted); }

.loc-hero h1 { font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--sp-4); }
.loc-hero-desc { font-size: var(--text-base); color: var(--text-muted); line-height: 1.65; margin-bottom: var(--sp-6); max-width: 54ch; }

.loc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.loc-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.35rem 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
}
.loc-trust-badge svg { color: var(--cyan); }

.loc-why {
  padding: clamp(var(--sp-12), 6vw, var(--sp-20)) var(--sp-6);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.loc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: clamp(var(--sp-8), 4vw, var(--sp-12));
}
.loc-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.loc-why-card h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--sp-2); }
.loc-why-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }

.loc-faq {
  padding: clamp(var(--sp-12), 6vw, var(--sp-20)) var(--sp-6);
  background: var(--bg);
}
.loc-faq-list { display: flex; flex-direction: column; gap: var(--sp-4); margin-top: clamp(var(--sp-8), 4vw, var(--sp-12)); max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) var(--sp-6);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  cursor: pointer;
  background: none;
  border: none;
}
.faq-q:hover { color: var(--cyan); }
.faq-q svg { flex-shrink: 0; transition: transform 0.2s; color: var(--text-muted); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

.loc-related {
  padding: clamp(var(--sp-10), 5vw, var(--sp-16)) var(--sp-6);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.loc-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}
.loc-related-link {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  text-decoration: none;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--ease);
}
.loc-related-link:hover { color: var(--cyan); border-color: var(--cyan); background: var(--cyan-dim); }

@media (max-width: 1024px) {
  .loc-hero-inner { grid-template-columns: 1fr; }
  .loc-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .loc-why-grid { grid-template-columns: 1fr; }
}
