/* ============================================
   EXCEL MOBILITY — INQUIRY SITE STYLES
   ============================================ */

:root {
  --orange:       #E8651A;
  --orange-dark:  #BF5010;
  --orange-light: #FDF0E8;
  --text:       #1A2733;
  --navy:       #1A2733;
  --text-mid:   #4A5C6A;
  --text-light: #7A8E9A;
  --border:     #E8D5C8;
  --bg:         #FAFBFC;
  --white:      #FFFFFF;
  --green:      #1a6b40;
  --radius:     10px;
  --shadow:     0 2px 16px rgba(232,101,26,0.08);
  --shadow-lg:  0 8px 40px rgba(232,101,26,0.13);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 112.5%; }

body {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- ACCESSIBILITY ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--orange-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid #E8651A;
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: 'Lexend', sans-serif;
  line-height: 1.15;
  font-weight: 600;
  color: var(--orange-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

em { font-family: 'Lora', serif; font-style: italic; color: var(--orange); font-weight: 400; }

.eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(232,101,26,0.28);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,101,26,0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-ghost:hover {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.btn-white {
  background: var(--white);
  color: var(--orange-dark);
  border-color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn-full { width: 100%; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 38px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange);
}

.nav-cta { padding: 10px 22px; font-size: 0.875rem; }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--orange-light); }

/* Close button inside drawer — hidden on desktop */
.nav-close {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-mid);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-close:hover { background: var(--bg); color: var(--text); }

/* Backdrop — injected by nav.js */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announcement-bar strong { font-weight: 700; }
.announcement-bar a { color: inherit; text-decoration: underline; }

/* ---- HERO ---- */
.hero {
  padding: 80px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--white) 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: fadeUp 0.6s ease both;
}

.hero-text h1 { color: var(--text); }

.hero-sub {
  margin: 20px 0 36px;
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  animation: fadeUp 0.6s 0.15s ease both;
}

.hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: var(--orange-light);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--text);
  color: var(--white);
  padding: 18px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 6px 28px;
}

.trust-icon {
  color: var(--orange);
  font-size: 0.75rem;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* ---- PRODUCTS ---- */
.products {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px;
}

.section-header p {
  margin-top: 14px;
  color: var(--text-mid);
  font-weight: 300;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}

.product-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow);
}

.product-img-wrap {
  position: relative;
  background: var(--orange-light);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.product-img-wrap img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-badge--blue { background: var(--orange); }
.product-badge--green { background: var(--green); }

.product-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.product-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-specs {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-specs li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.spec-val {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.product-body .btn { margin-top: auto; }

/* ---- TRUSTPILOT ---- */
.trustpilot-section { padding: 48px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---- CONTENT BYLINE ---- */
.content-byline {
  font-size: 0.775rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.content-byline strong {
  color: var(--text-mid);
  font-weight: 600;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--orange);
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  color: var(--white);
  font-size: 1.8rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-weight: 300;
}

/* ---- CONTACT PAGE ---- */
.contact-hero {
  padding: 80px 0 100px;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-hero-text h1 { margin-bottom: 16px; }
.contact-hero-text p {
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 380px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-detail-item a, .contact-detail-item span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
}

.contact-detail-item a:hover { color: var(--orange); }

/* ---- FORM ---- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.req { color: var(--orange); }

input, textarea, select {
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,101,26,0.15);
}

input.error, textarea.error { border-color: #e0443a; }

textarea { resize: vertical; }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5C6A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.field-error {
  font-size: 0.75rem;
  color: #e0443a;
  font-weight: 400;
  min-height: 1em;
}

/* Honeypot - hide from real users */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Consent checkbox */
.form-group-consent {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group-consent .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-group-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}

.form-group-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.form-group-consent label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0;
  cursor: pointer;
}

.form-group-consent label a {
  color: var(--orange);
  text-decoration: underline;
}

.form-group-consent label a:hover {
  color: var(--orange-dark);
}

.btn-submit {
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-submit.loading .btn-spinner { display: block; }
.btn-submit.loading .btn-label { opacity: 0.6; }

/* Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
  animation: fadeUp 0.4s ease;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-mid);
  margin-bottom: 28px;
  font-weight: 300;
}

.form-error-banner {
  margin-top: 16px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.875rem;
  color: #b91c1c;
}

.form-error-banner a { text-decoration: underline; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 10px; }
.footer-brand p { font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.55); max-width: 260px; }

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.footer-links a,
.footer-links button {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  transition: color 0.2s;
  padding: 0;
  line-height: inherit;
  vertical-align: middle;
}
.footer-links a:hover,
.footer-links button:hover { color: white; }

.footer-base {
  padding: 20px 0;
}
.footer-base p { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.35); text-align: center; }

/* ---- PRODUCT CARD — CLICKABLE UPDATES ---- */
.product-img-link {
  display: block;
  text-decoration: none;
}

.product-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.product-body h3 a:hover { color: var(--orange); }

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.product-card-actions .btn { margin-top: 0; }
.product-body > .btn { display: none; } /* replaced by .product-card-actions */

/* ---- PRODUCT DETAIL PAGE ---- */
.product-detail {
  padding: 60px 0 80px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  margin-bottom: 36px;
}
.back-link:hover { color: var(--orange); }

.product-detail-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.gallery {
  position: sticky;
  top: 90px;
}

.gallery-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  margin-bottom: 12px;
  transition: box-shadow 0.25s;
}
.gallery-main:hover {
  box-shadow: var(--shadow-lg);
}

/* Spinner overlay — shown while a new image is loading */
.gallery-main::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: calc(50% - 16px);
  left: calc(50% - 16px);
  border: 3px solid rgba(232, 101, 26, 0.15);
  border-top-color: var(--orange);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: spin 0.7s linear infinite;
  transition: opacity 0.15s;
}
.gallery-main.img-loading::after {
  opacity: 1;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s ease, opacity 0.2s;
}
.gallery-main.img-loading img {
  opacity: 0;
}
.gallery-main:hover img { transform: scale(1.04); }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.gallery-thumb {
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  padding: 6px;
}
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.gallery-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.22); }

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { top: 50%; left: 20px; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 20px; transform: translateY(-50%); }

/* Product info panel */
.product-info .product-badge-inline {
  display: inline-flex;
  align-items: center;
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.product-info .eyebrow { margin-bottom: 4px; }

.product-info h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}

.product-desc-long {
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.72;
  font-size: 0.975rem;
  margin-bottom: 32px;
}

.product-key-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.key-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.key-spec .spec-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
}

.key-spec .spec-val {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
}

.product-info .btn-full {
  padding: 16px 28px;
  font-size: 0.95rem;
}

/* Full specs + features section */
.product-full-specs {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.specs-features-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.specs-features-grid h2 {
  margin-bottom: 28px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}
.specs-table tr:last-child { border-bottom: none; }

.specs-table td {
  padding: 12px 0;
  line-height: 1.5;
  vertical-align: top;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 38%;
  padding-right: 20px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 14px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
}

.feature-icon {
  color: var(--orange);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---- DELIVERY & RENTAL PAGE ---- */
.page-hero {
  padding: 72px 0 56px;
  text-align: center;
}

.page-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.page-hero-inner h1 { margin-bottom: 16px; }

.page-hero-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-top: 20px;
}

.content-section {
  padding: 80px 0;
}

.content-section--white {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.info-section-header {
  margin-bottom: 48px;
}

.info-section-header h2 { margin-bottom: 12px; }

.info-section-header p {
  color: var(--text-mid);
  font-weight: 300;
  margin-top: 12px;
  max-width: 560px;
}

/* Delivery cards */
.delivery-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.delivery-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.delivery-card--highlight {
  border-color: var(--orange);
  background: var(--orange-light);
}

.delivery-card-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.delivery-card h3 { margin-bottom: 10px; }

.delivery-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.68;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.info-grid-item {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.info-grid-item .spec-label {
  display: block;
  margin-bottom: 10px;
}

.info-grid-item p {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.68;
}

.info-grid-item strong {
  color: var(--text);
  font-weight: 600;
}

/* Returns notice */
.notice-box {
  padding: 28px 32px;
  background: var(--orange-light);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.notice-box h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.notice-box p {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.68;
}

/* ---- ABOUT MEDIA SPLITS ---- */
.about-media {
  padding: 72px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.about-media--alt {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.about-media-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-media--reverse .about-media-inner {
  direction: rtl;
}

.about-media--reverse .about-media-inner > * {
  direction: ltr;
}

.about-media-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.about-media-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.about-media-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
}

.about-media-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .about-media { padding: 48px 0; }
  .about-media-inner { grid-template-columns: 1fr; gap: 24px; direction: ltr; }
  .about-media--reverse .about-media-inner > * { direction: ltr; }
}

/* Postcode checker */
.postcode-checker {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.postcode-checker h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.postcode-checker > p {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 16px;
}

.postcode-checker-row {
  display: flex;
  gap: 12px;
  max-width: 400px;
}

.postcode-checker-row input {
  flex: 1;
  text-transform: uppercase;
}

.postcode-result {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  max-width: 400px;
}

.postcode-result--available {
  background: #EBF7F0;
  color: #1a6638;
  border: 1px solid #b3dfc5;
}

.postcode-result--standard {
  background: var(--orange-light);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.postcode-result--none {
  background: #F9F9F9;
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.postcode-result--error {
  background: #FEF2F2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Rental pricing */
.rental-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 12px;
}

.rental-price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
}

.rental-price-val {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange-dark);
  line-height: 1;
  margin-top: 8px;
}

.rental-price-unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
}

.rental-price-note {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* Includes grid */
.includes-heading {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 56px;
}

/* Rental detail grid */
.rental-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.rental-detail-block h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.rental-detail-block p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.72;
}

.rental-call-btn {
  display: inline-flex;
  margin-top: 20px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-img-wrap { aspect-ratio: 16/9; }
  .product-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .contact-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; }
  .footer-links { text-align: left; }
  .product-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery { position: static; }
  .specs-features-grid { grid-template-columns: 1fr; gap: 48px; }
  .delivery-cards { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .rental-pricing { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .rental-detail-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  /* Layout */
  .hero { padding: 48px 0 40px; }
  .products { padding: 60px 0; }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; }
  .section-header { margin-bottom: 40px; }
  /* Trust bar */
  .trust-inner { gap: 0; }
  .trust-item { padding: 6px 16px; }
  .trust-divider { display: none; }
  /* Product detail */
  .gallery-thumbs { grid-template-columns: repeat(5, 1fr); }
  .product-card-actions { grid-template-columns: 1fr; }
  .product-key-specs { grid-template-columns: 1fr 1fr; }
  /* Mobile nav — show hamburger */
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-close { display: flex; }
  /* Nav becomes a slide-in drawer */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 64px 28px 32px;
    transform: translateX(110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  /* Nav links — visible in drawer */
  .nav-link {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    display: block;
  }
  .nav-link.active { color: var(--orange); }
  /* CTA button in drawer */
  .nav-cta {
    width: 100%;
    margin-top: 24px;
    padding: 14px 22px;
    justify-content: center;
  }
}

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: var(--white);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

#cookie-banner.cookie-banner--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.6;
}

.cookie-banner-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cookie-banner-text p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 6px;
}

.cookie-policy-link {
  color: var(--orange);
  text-decoration: underline;
  font-size: 0.82rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.cookie-banner-actions .btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.cookie-settings-link {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  align-self: flex-end;
}
.cookie-settings-link:hover { color: white; }

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions .btn {
    flex: 1;
  }
}

/* ============================================
   PRODUCT CARD — SELECT CAR LEASING STYLE
   ============================================ */

.product-card {
  border-radius: 18px;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}

/* Pill badge overlaid on image */
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

/* Image area — clean light background */
.product-card .product-img-wrap {
  background: var(--bg);
  aspect-ratio: 16 / 12;
  padding: 32px;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card .product-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

/* Card body */
.product-card .product-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Hide old card body children (replaced by new elements) */
.product-card .product-category,
.product-card .product-desc,
.product-card .product-specs,
.product-card .product-card-actions {
  display: none;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.25;
}

.card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.card-title a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-title a:hover { color: var(--orange); }

.card-variant {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 14px;
}

/* Price display */
.card-price-block {
  margin-bottom: 16px;
}

.card-price-val {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.4;
  margin-bottom: 0;
}

.card-price-val strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.card-price-unit {
  display: none;
}

/* CTA button */
.card-cta-btn {
  display: block;
  text-align: center;
  margin-top: auto;
  padding: 11px 20px;
  border-radius: 50px;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.card-cta-btn:hover,
.product-card:hover .card-cta-btn {
  background: var(--orange);
  color: var(--white);
}

/* ============================================
   DEAL WIDGET — PERSONALISE YOUR RENTAL
   ============================================ */

.deal-widget {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 28px;
}

.deal-widget-header {
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--border);
}

.deal-widget-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.deal-widget-body {
  padding: 18px 22px 20px;
}

.deal-section-label {
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.deal-section-label strong {
  font-weight: 600;
}

.deal-selected-val {
  color: var(--orange);
  font-weight: 600;
}

.deal-duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.deal-dur-btn {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 4px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  line-height: 1.3;
}

.deal-dur-btn:hover:not(.active) {
  border-color: var(--text-mid);
  background: var(--bg);
}

.deal-dur-btn.active {
  border-color: #1A2733;
  background: #1A2733;
  color: white;
  font-weight: 600;
}

/* Price loading spinner — covers the whole summary rows area */
#deal-summary-rows {
  position: relative;
}

#deal-summary-rows > *:not(.deal-price-loader) {
  transition: opacity 0.15s;
}

#deal-summary-rows.price-updating > *:not(.deal-price-loader) {
  opacity: 0;
}

.deal-price-loader {
  display: none;
  width: 26px;
  height: 26px;
  border: 2.5px solid rgba(255,255,255,0.18);
  border-top-color: rgba(255,255,255,0.85);
  border-radius: 50%;
  animation: spin 0.55s linear infinite;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#deal-summary-rows.price-updating .deal-price-loader {
  display: block;
}

/* Summary footer */
.deal-summary {
  background: #1A2733;
  padding: 18px 22px 20px;
}

.deal-summary-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.deal-summary-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 14px;
}

.deal-summary-price strong {
  font-size: 2.4rem;
}

.deal-summary-price .price-suffix {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-left: 4px;
}

.deal-summary-price--sm {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.deal-summary-price--sm strong {
  font-size: 1.85rem;
}

.deal-enquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  position: relative;
}

.deal-enquire-btn:hover { background: var(--orange-dark); }

.enquire-arrow {
  position: absolute;
  right: 18px;
  font-size: 1.2rem;
  font-weight: 400;
}

.deal-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
}

.deal-contact-row a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.deal-contact-row a:hover { color: white; }

/* Responsive */
@media (max-width: 480px) {
  .deal-duration-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-price-val strong { font-size: 1.7rem; }
}

/* ============================================
   ENHANCED DEAL WIDGET — GALAXY II
   ============================================ */

/* Hire / Buy toggle */
.deal-type-toggle {
  display: inline-flex;
  border: 2px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 4px;
}

.deal-type-btn {
  padding: 8px 24px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.2s;
  line-height: 1;
}

.deal-type-btn.active {
  background: #1A2733;
  color: white;
  font-weight: 600;
}

/* Sections inside widget body */
.deal-section {
  margin-bottom: 18px;
}

.deal-section:last-child {
  margin-bottom: 0;
}

/* Hire options container — ensures gap between initial payment and colour picker */
#hire-options {
  margin-bottom: 18px;
}

.deal-info-icon {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-right: 2px;
}

/* Options row (term + initial payment buttons) */
.deal-options-row {
  display: flex;
  gap: 7px;
}

.deal-opt-btn {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 4px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  line-height: 1;
}

.deal-opt-btn:hover:not(.active) {
  border-color: var(--text-mid);
  background: var(--bg);
}

.deal-opt-btn.active {
  border-color: #1A2733;
  background: #1A2733;
  color: white;
  font-weight: 600;
}

/* Battery size row — two wide buttons, text wraps cleanly */
.deal-options-row--battery .deal-opt-btn {
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 10px 6px;
  white-space: normal;
}

/* Range slider */
.deal-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  display: block;
  margin: 6px 0 0;
}

.deal-slider:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 4px;
}

.deal-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
}

.deal-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: 2px solid var(--orange);
  box-shadow: 0 1px 6px rgba(232,101,26,0.25);
  margin-top: -8px;
  transition: box-shadow 0.15s, transform 0.15s;
}

.deal-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 10px rgba(232,101,26,0.4);
  transform: scale(1.1);
}

.deal-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: 2px solid var(--orange);
  box-shadow: 0 1px 6px rgba(232,101,26,0.25);
}

.deal-slider::-moz-range-track {
  height: 4px;
  border-radius: 4px;
}

.deal-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.deal-slider-labels span {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
}

.deal-slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.deal-slider-row .deal-slider {
  flex: 1;
  margin: 0;
}

.deal-slider-min,
.deal-slider-max {
  font-size: 0.72rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* Colour picker */
.colour-picker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.colour-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  outline: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.28);
  padding: 0;
  flex-shrink: 0;
}

.colour-swatch:hover {
  transform: scale(1.18);
}

.colour-swatch:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.colour-swatch.active {
  border-color: #1A2733;
  box-shadow: 0 0 0 3px rgba(26,39,51,0.22), 0 1px 4px rgba(0,0,0,0.28);
  transform: scale(1.12);
}

/* Deal summary rows */
.deal-summary-rows {
  margin-bottom: 14px;
}

.deal-summary-row--secondary {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.deal-summary-sublabel {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}

.deal-summary-subprice {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

.deal-plus-admin {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.deal-deposit-saving {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green);
  margin-left: 2px;
}

/* ============================================
   ENQUIRY PAGE (contact.html)
   ============================================ */

.enquiry-page {
  padding: 48px 0 100px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* Product discovery sidebar */
.product-discover {
  position: sticky;
  top: 90px;
}

.product-discover-intro {
  margin-bottom: 16px;
}

.product-discover-intro h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 4px 0 6px;
  line-height: 1.3;
}

.product-discover-intro p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.product-discover-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.product-discover-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.product-discover-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.discover-card-img {
  width: 160px;
  min-width: 160px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 12px;
}

.discover-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.discover-card-text {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.discover-card-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  line-height: 1.3;
}

.discover-card-cta {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 500;
  display: block;
}

/* Enquiry layout */
.enquiry-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.enquiry-layout.has-deal,
.enquiry-layout.has-discover {
  grid-template-columns: 1fr 1.1fr;
}

.enquiry-layout:not(.has-deal):not(.has-discover) .form-wrap {
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

/* Deal recap card */
.deal-recap {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}

.deal-recap-header {
  background: #1A2733;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.deal-recap-check {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.deal-recap-header h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin: 0 0 3px;
}

.deal-recap-header > div > p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-weight: 300;
}

.deal-recap-body {
  padding: 12px 22px 4px;
}

.deal-recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}

.deal-recap-row:last-child { border-bottom: none; }

.deal-recap-label {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 400;
}

.deal-recap-value {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.deal-recap-footer {
  background: #1A2733;
  padding: 14px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.deal-recap-price {
  font-size: 1.55rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.deal-recap-price span {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}

.deal-recap-change {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.deal-recap-change:hover { color: white; }

/* Form card header */
.form-wrap-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.form-wrap-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.form-wrap-sub {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 300;
  margin: 0;
  min-height: 0;
}

.form-optional {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Contact details bar */
.enquiry-contact-bar {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  justify-content: center;
  flex-wrap: wrap;
}
.enquiry-trustpilot-bar {
  display: block;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  padding-bottom: 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 860px) {
  .enquiry-layout.has-deal,
  .enquiry-layout.has-discover {
    grid-template-columns: 1fr;
  }
  .deal-recap,
  .product-discover {
    position: static;
  }
}

@media (max-width: 560px) {
  .discover-card-img {
    width: 110px;
    min-width: 110px;
    height: 90px;
  }
  .enquiry-contact-bar {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .enquiry-contact-bar .contact-detail-item {
    align-items: center;
  }
}

/* ============================================
   HOW IT WORKS — INDEX PAGE
   ============================================ */

.how-it-works {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.how-it-works .section-header h2,
.products .section-header h2,
.page-hero h1,
.info-section-header h2,
.form-wrap-header h2 {
  color: var(--text);
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- FAQ SECTION ---- */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.faq-section h2 {
  margin-bottom: 40px;
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul {
  margin: 0 0 10px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 6px;
}

@media (max-width: 700px) {
  .faq-section {
    padding: 56px 0;
  }
}

/* ============================================
   HIRE VS BUY SIGNPOST — index.html
   ============================================ */

.hvb-signpost {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.hvb-signpost-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hvb-signpost-text h2 {
  margin: 12px 0 16px;
}

.hvb-signpost-text p {
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 420px;
}

.hvb-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hvb-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.hvb-card--hire {
  border-color: var(--orange);
  background: var(--orange-light);
}

.hvb-card-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.hvb-card--hire .hvb-card-label {
  color: var(--orange);
}

.hvb-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hvb-card li {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 300;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}

.hvb-card--hire li {
  border-bottom-color: rgba(232,101,26,0.15);
}

.hvb-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hvb-card li::before {
  content: '✦ ';
  color: var(--orange);
  font-size: 0.6rem;
  vertical-align: middle;
}

/* ============================================
   COMPARE TABLE — hire-vs-buy.html
   ============================================ */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: 8px;
}

.compare-table thead tr {
  border-bottom: 2px solid var(--border);
}

.compare-table th {
  padding: 12px 16px 12px 0;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.compare-table th:not(:first-child) {
  text-align: center;
  padding: 12px 8px;
}

.compare-table th.col-hire {
  color: var(--orange);
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table td {
  padding: 14px 16px 14px 0;
  vertical-align: top;
  line-height: 1.55;
  color: var(--text-mid);
  font-weight: 300;
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
  font-size: 0.82rem;
  width: 28%;
}

.compare-table td:not(:first-child) {
  text-align: center;
  padding: 14px 8px;
}

.compare-tick { color: var(--green); font-size: 1rem; }
.compare-cross { color: var(--text-light); font-size: 1rem; }

@media (max-width: 960px) {
  .hvb-signpost-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .hvb-signpost { padding: 56px 0; }
  .hvb-cards { grid-template-columns: 1fr; }
  .compare-table td:first-child { width: auto; }
}

