/* =====================================================================
   PARAGON CARS LONDON – Global Design System v2.0
   Palette: Warm Ivory · Deep Black · Crimson Red
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ─── Custom Properties ─────────────────────────────────────────────── */
:root {
  --bg: #FDFAF5;
  --bg-warm: #F8F3EA;
  --surface: #FFFFFF;
  --surface-alt: #F4EFE5;
  --border: #E4DDD0;
  --text: #0D0D0D;
  --text-muted: #6B6350;
  --text-light: #9B9080;

  /* Red palette */
  --red: #CC1F3C;
  --red-light: #E84560;
  --red-dark: #961326;
  --red-xdark: #6B0D1A;
  --red-subtle: rgba(204, 31, 60, 0.08);

  /* Neutrals */
  --black: #0D0D0D;
  --white: #FDFAF5;
  --cream: #FDFAF5;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(13, 13, 13, 0.06);
  --shadow-md: 0 8px 32px rgba(13, 13, 13, 0.10);
  --shadow-lg: 0 20px 60px rgba(13, 13, 13, 0.14);
  --shadow-red: 0 8px 40px rgba(204, 31, 60, 0.28);
  --shadow-red-lg: 0 16px 60px rgba(204, 31, 60, 0.35);

  /* Shape */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-height: 80px;
}

/* ─── Reset & Base ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ─── Typography ────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

.display-1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.display-2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.heading-1 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
}

.heading-2 {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 600;
}

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.body-large {
  font-size: 1.1rem;
  line-height: 1.75;
}

.body-sm {
  font-size: 0.875rem;
}

.italic {
  font-family: var(--font-elegant);
  font-style: italic;
}

/* ─── Layout ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1440px;
}

.section {
  padding: 100px 0;
}

.section--sm {
  padding: 64px 0;
}

.text-center {
  text-align: center;
}

/* ─── Dividers ──────────────────────────────────────────────────────── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}

.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.ornament {
  color: var(--red);
  font-size: 1.1rem;
}

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* shimmer sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn:hover::after {
  left: 160%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-red-lg);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ─── Navigation ────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.4s ease;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 4, 6, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.navbar--transparent {
  background: transparent;
  box-shadow: none;
}

.navbar--scrolled {
  background: rgba(10, 4, 6, 0.97);
  box-shadow: 0 1px 0 rgba(204, 31, 60, 0.25), var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  box-shadow: var(--shadow-red);
  flex-shrink: 0;
}

.nav-logo-text .brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.nav-logo-text .sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.82);
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link--cta {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white) !important;
  padding: 9px 22px;
  font-weight: 600;
  box-shadow: var(--shadow-red);
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-red-lg) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.nav-burger span:nth-child(1) {
  width: 24px;
}

.nav-burger span:nth-child(2) {
  width: 18px;
}

.nav-burger span:nth-child(3) {
  width: 24px;
}

/* burger always white on dark navbar */

.nav-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  width: 24px;
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 24px;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: #0f0407;
  padding: 24px 20px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  border-top: 1px solid rgba(204, 31, 60, 0.25);
}

.nav-mobile.open {
  transform: translateX(0);
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 1rem;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  display: block;
}

.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
  color: var(--white);
  background: rgba(204, 31, 60, 0.1);
}

.nav-mobile .nav-link--cta {
  margin-top: 12px;
  border-radius: 50px;
  text-align: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white) !important;
  border-bottom: none;
}

/* ─── Marquee Ticker ────────────────────────────────────────────────── */
.ticker {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 4, 6, 0.88) 0%,
      rgba(100, 10, 25, 0.52) 50%,
      rgba(10, 4, 6, 0.35) 100%);
}

/* decorative diagonal stripe */
.hero-stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(204, 31, 60, 0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

/* hero grid pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* watermark */
.hero-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(10rem, 22vw, 22rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.05em;
  user-select: none;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(204, 31, 60, 0.18);
  border: 1px solid rgba(204, 31, 60, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 18px 8px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(204, 31, 60, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(204, 31, 60, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(204, 31, 60, 0.9);
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero h1 em {
  font-family: var(--font-elegant);
  font-style: italic;
  color: #ffb3c0;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 2;
  display: flex;
  gap: 2px;
}

.hero-stat-pill {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  text-align: center;
}

.hero-stat-pill .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.hero-stat-pill .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
}

@keyframes scrollBounce {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0)
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px)
  }
}

/* ─── Stats Bar ─────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--black);
  padding: 0;
  border-top: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(204, 31, 60, 0.12), transparent 70%);
  pointer-events: none;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red-dark), var(--red), var(--red-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 20px rgba(204, 31, 60, 0.35));
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

/* ─── Section Headers ───────────────────────────────────────────────── */
.section-header {
  margin-bottom: 64px;
  position: relative;
}

.section-header.text-center .gold-rule {
  justify-content: center;
}

/* watermark behind section title */
.section-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 10rem);
  color: rgba(204, 31, 60, 0.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
  z-index: 0;
}

.section-header>*:not(.section-watermark) {
  position: relative;
  z-index: 1;
}

/* ─── Car Cards ─────────────────────────────────────────────────────── */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.car-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(13, 13, 13, 0.13), 0 0 0 1px var(--red);
}

.car-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.car-card:hover .car-card-img {
  transform: scale(1.06);
}

.car-card-img-wrap {
  overflow: hidden;
  position: relative;
}

/* hover overlay on image */
.car-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(150, 19, 38, 0.55), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.car-card:hover .car-card-img-wrap::after {
  opacity: 1;
}

.car-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(204, 31, 60, 0.4);
}

.car-card-body {
  padding: 22px;
}

.car-card-make {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.car-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.car-card-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.car-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.car-spec svg {
  width: 13px;
  height: 13px;
  color: var(--red);
  flex-shrink: 0;
}

.car-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.car-card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
}

.car-card-price-pm {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── Service Cards ─────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
  border-color: rgba(204, 31, 60, 0.3);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(204, 31, 60, 0.1), rgba(204, 31, 60, 0.04));
  border: 1.5px solid rgba(204, 31, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  transition: all 0.35s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 18px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

/* ─── Feature Items ─────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: rgba(204, 31, 60, 0.3);
  box-shadow: var(--shadow-red);
  transform: translateY(-3px);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}

.feature-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Testimonials ──────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-warm);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: rgba(204, 31, 60, 0.25);
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

.testimonial-quote {
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-stars {
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
}

.testimonial-car {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ─── CTA Banner ────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1920&q=60') center/cover;
  opacity: 0.06;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(204, 31, 60, 0.18), transparent 70%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner h2 em {
  font-family: var(--font-elegant);
  font-style: italic;
  color: #ffb3c0;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Page Hero (inner pages) ───────────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .label {
  margin-bottom: 12px;
  display: block;
  color: var(--red-light);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb a:hover {
  color: var(--red-light);
}

.breadcrumb-sep {
  color: var(--red);
}

/* ─── Forms ─────────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 31, 60, 0.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

select.form-control {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23CC1F3C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ─── Accordion ─────────────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: rgba(204, 31, 60, 0.04);
}

.accordion-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  line-height: 1;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--white);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.accordion-item.open .accordion-body {
  max-height: 300px;
}

/* ─── Process Steps ─────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-red);
  border: 3px solid var(--bg);
}

.step-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Finance Calc ──────────────────────────────────────────────────── */
.finance-calc {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.finance-calc::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 31, 60, 0.15), transparent 70%);
  pointer-events: none;
}

.finance-calc h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.5rem;
  position: relative;
}

.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  outline: none;
  margin: 12px 0 4px;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  cursor: pointer;
  box-shadow: var(--shadow-red);
}

.range-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.range-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calc-result {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(204, 31, 60, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 28px;
  text-align: center;
}

.calc-result-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Table ─────────────────────────────────────────────────────────── */
.luxury-table {
  width: 100%;
  border-collapse: collapse;
}

.luxury-table th {
  background: var(--black);
  color: var(--red-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
}

.luxury-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.luxury-table tr:last-child td {
  border-bottom: none;
}

.luxury-table tr:hover td {
  background: rgba(204, 31, 60, 0.03);
}

.check {
  color: var(--red);
  font-weight: 700;
}

.cross {
  color: #ccc;
}

/* ─── Misc components ───────────────────────────────────────────────── */
.badge-pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-red {
  background: rgba(204, 31, 60, 0.12);
  color: var(--red);
  border: 1px solid rgba(204, 31, 60, 0.3);
}

.badge-dark {
  background: var(--black);
  color: var(--red-light);
}

.divider-red {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  margin: 48px 0;
}

.text-red {
  color: var(--red);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Mini 2-col stat grid below the Why Paragon image */
.whyus-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.split-layout.reverse>*:first-child {
  order: 2;
}

.split-layout.reverse>*:last-child {
  order: 1;
}

.img-luxury {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.img-luxury img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.img-luxury:hover img {
  transform: scale(1.04);
}

.img-overlay-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(204, 31, 60, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  color: var(--white);
}

.img-overlay-badge .val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red-light);
}

.img-overlay-badge .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(204, 31, 60, 0.1), rgba(204, 31, 60, 0.04));
  border: 1.5px solid rgba(204, 31, 60, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-item p,
.contact-item a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-item a:hover {
  color: var(--red);
}

.map-placeholder {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  overflow: hidden;
  position: relative;
}

.map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* ─── Section BG variants ───────────────────────────────────────────── */
.section-dark {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(204, 31, 60, 0.1), transparent 60%);
  pointer-events: none;
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
  border-top: 3px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .brand {
  color: var(--white) !important;
}

.footer-brand .sub {
  color: var(--red) !important;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.3s;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--red-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact-item span:first-child {
  color: var(--red);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.28);
}

.footer-bottom a:hover {
  color: var(--red-light);
}

.fca-notice {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 40px;
}

/* ─── Scroll Reveal ─────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.5s;
}

[data-reveal-delay="6"] {
  transition-delay: 0.6s;
}

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    display: none;
  }

  /* whyus section */
  .whyus-wrap {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  /* img-luxury */
  .img-luxury img {
    height: 360px;
  }

  /* CTA banner */
  .cta-banner {
    padding: 80px 0;
  }

  /* page-hero */
  .page-hero {
    padding: 150px 0 70px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  /* ── Nav ── */
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  /* ── Hero ── */
  .hero-content {
    padding-top: calc(var(--nav-height) + 20px);
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-scroll {
    display: none;
  }

  /* ── Grids ── */
  .cars-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 32px 20px;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* ── Sections ── */
  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 44px;
  }

  /* ── Page Hero ── */
  .page-hero {
    padding: 140px 0 60px;
    min-height: auto;
  }

  /* ── Whyus ── */
  .whyus-wrap {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* ── img-luxury ── */
  .img-luxury img {
    height: 300px;
  }

  /* ── Forms ── */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* ── Steps ── */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* ── Finance calc ── */
  .finance-calc {
    padding: 32px 24px;
  }

  /* ── CTA Banner ── */
  .cta-banner {
    padding: 72px 0;
  }

  .cta-banner p {
    font-size: 0.95rem;
  }

  /* ── Buttons ── */
  .btn-lg {
    padding: 16px 32px;
    font-size: 0.92rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  /* ── Online strip ── */
  .online-strip-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  /* ── Warranty highlight ── */
  .warranty-highlight {
    padding: 36px 24px !important;
  }

  /* ── Rating summary ── */
  .rating-summary {
    grid-template-columns: 1fr !important;
    padding: 36px 24px !important;
  }

  /* ── Coverage grid ── */
  .coverage-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* ── Part exchange / finance split ── */
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {

  /* ── Services ── */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* ── Hero ── */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge {
    font-size: 0.62rem;
    padding: 6px 14px 6px 10px;
  }

  /* ── Stats ── */
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  /* ── Testimonials ── */
  .testimonials-full-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Coverage / warranty grids ── */
  .coverage-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Feature items ── */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* ── Section ── */
  .section {
    padding: 56px 0;
  }

  /* ── CTA Banner buttons ── */
  .cta-banner .btn-group {
    flex-direction: column;
    gap: 12px;
  }

  .cta-banner .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Page hero ── */
  .page-hero {
    padding: 120px 0 48px;
  }

  /* ── Container padding ── */
  .container {
    padding: 0 16px;
  }

  /* ── Navbar ── */
  .navbar {
    padding: 0 16px;
  }

  /* ── img-luxury ── */
  .img-luxury img {
    height: 240px;
  }

  /* ── Warranty badge circle ── */
  .warranty-badge {
    width: 96px !important;
    height: 96px !important;
  }

  .warranty-badge .num {
    font-size: 1.9rem !important;
  }

  /* ── Testimonial cards padding ── */
  .testimonial-card {
    padding: 24px 20px;
  }

  /* ── Finance calc ── */
  .finance-calc {
    padding: 24px 16px;
  }

  /* ── Accordion ── */
  .accordion-header {
    padding: 16px 18px;
    font-size: 0.92rem;
  }

  /* ── Footer ── */
  .footer {
    padding: 56px 0 0;
  }

  /* ── Nav mobile link colour ── */
  .nav-mobile .nav-link {
    font-size: 1rem;
    color: var(--text);
  }

  /* ── Why Paragon stat grid ── */
  .whyus-mini-grid {
    grid-template-columns: 1fr;
  }

  /* ── Finance trust grid ── */
  .finance-trust-grid {
    grid-template-columns: 1fr;
  }
}