/* ============================================
   JLR FIX - Land Rover Silver Grey Theme
   Official Silver / Grey Color Palette
   ============================================ */

:root {
  /* Land Rover Silver Grey Palette */
  --lr-silver:       #A9A9A9;
  --lr-silver-light: #C0C0C0;
  --lr-silver-dark:  #7F7F7F;
  --lr-grey:         #4A4A4A;
  --lr-charcoal:     #1C1C1C;
  --lr-dark:         #2D2D2D;
  --lr-light:        #F5F5F5;
  --lr-white:        #FFFFFF;
  --lr-border:       #D0D0D0;
  --lr-accent:       #8A8A8A;
  --lr-gold:         #B8860B;
  --lr-red:          #8B0000;

  /* Typography */
  --font-body:       'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading:    'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:       'Consolas', 'Monaco', monospace;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.15);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Container */
  --container-max: 1280px;
  --container-narrow: 960px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--lr-dark);
  background: var(--lr-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-emoji: text;
}

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

a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mt-6 { margin-top: var(--space-2xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mb-6 { margin-bottom: var(--space-2xl); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28,28,28,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(169,169,169,0.15);
  transition: background 0.3s;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lr-silver-light);
  letter-spacing: 1px;
}
.site-logo__icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  filter: invert(1) brightness(0.75);
  object-fit: contain;
}
.main-nav { display: flex; align-items: center; gap: var(--space-xs); }
.main-nav__link {
  padding: var(--space-sm) var(--space-md);
  color: var(--lr-silver);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.main-nav__link:hover,
.main-nav__link--active {
  color: var(--lr-white);
  background: rgba(169,169,169,0.1);
}

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
  z-index: 1002;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(28,28,28,0.98);
  border: 1px solid rgba(169,169,169,0.15);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  pointer-events: auto;
}
.dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--lr-silver);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
  z-index: 1003;
}
.dropdown-menu a:hover {
  color: var(--lr-white);
  background: rgba(169,169,169,0.1);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown:hover .main-nav__link {
  color: var(--lr-white);
  background: rgba(169,169,169,0.1);
}
@media (max-width: 768px) {
  .dropdown-menu { display: none !important; }
}
.header-actions { display: flex; align-items: center; gap: var(--space-sm); }
.header-btn {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}
.header-btn--shop {
  background: var(--lr-silver);
  color: var(--lr-charcoal);
}
.header-btn--shop:hover {
  background: var(--lr-silver-light);
  transform: translateY(-1px);
}
.header-btn--contact {
  border: 1px solid var(--lr-silver-dark);
  color: var(--lr-silver-light);
}
.header-btn--contact:hover {
  border-color: var(--lr-silver-light);
  color: var(--lr-white);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  color: var(--lr-silver-light);
  font-size: 1.5rem;
  padding: var(--space-sm);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--lr-charcoal);
  overflow: hidden;
  padding-top: 64px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/banners/jlr-sdd-pathfinder-banner.webp') center/cover no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.7);
}
.hero--home .hero__bg::after {
  background: rgba(28,28,28,0.55);
}
.hero--parts .hero__bg::after {
  background: rgba(28,28,28,0.35);
}
.hero--diagnostics .hero__bg::after {
  background: rgba(28,28,28,0.65);
}
  background: rgba(28,28,28,0.5);
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(169,169,169,0.03)" stroke-width="0.5"/></svg>');
  background-size: 80px 80px;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--lr-silver-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
  padding: var(--space-xs) var(--space-md);
  border: 1px solid rgba(169,169,169,0.3);
  border-radius: 100px;
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--lr-white);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.5px;
}
.hero__title--accent {
  color: var(--lr-silver-light);
  display: block;
}
.hero__desc {
  font-size: 1.125rem;
  color: var(--lr-silver);
  max-width: 560px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--lr-silver);
  color: var(--lr-charcoal);
  box-shadow: 0 4px 16px rgba(169,169,169,0.25);
}
.btn--primary:hover {
  background: var(--lr-silver-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(169,169,169,0.35);
}
.btn--secondary {
  background: transparent;
  color: var(--lr-silver-light);
  border: 1px solid var(--lr-silver-dark);
}
.btn--secondary:hover {
  border-color: var(--lr-silver-light);
  color: var(--lr-white);
  background: rgba(169,169,169,0.05);
}
.btn--lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
}

/* Hero visual */
.hero__visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(169,169,169,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero__visual::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(169,169,169,0.1);
}
.hero__visual::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(169,169,169,0.08);
}
.hero__visual-icon {
  font-size: 5rem;
  color: rgba(169,169,169,0.2);
  line-height: 1;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-4xl) 0;
}
.section--light { background: var(--lr-light); }
.section--dark { background: var(--lr-charcoal); }
.section--grey { background: #E8E8E8; }
.section-header {
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}
.section-header--left { text-align: left; margin-left: 0; margin-right: 0; }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--lr-silver-dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}
.section--dark .section__eyebrow { color: var(--lr-silver); }
.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--lr-charcoal);
  line-height: 1.25;
  margin-bottom: var(--space-md);
}
.section--dark .section__title { color: var(--lr-white); }
.section__desc {
  font-size: 1rem;
  color: var(--lr-grey);
  line-height: 1.7;
}
.section--dark .section__desc { color: var(--lr-silver); }

/* ============================================
   GRID / CARDS
   ============================================ */
.grid { display: grid; gap: var(--space-lg); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .mobile-menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--lr-charcoal); flex-direction: column; padding: var(--space-lg); gap: var(--space-xs); border-bottom: 1px solid rgba(169,169,169,0.15); }
  .main-nav.open { display: flex; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .header-actions { display: none; }
}

.card {
  background: var(--lr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--lr-border);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lr-silver);
}
.card--dark {
  background: var(--lr-dark);
  border-color: rgba(169,169,169,0.15);
}
.card--dark:hover {
  border-color: rgba(169,169,169,0.3);
}
.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--lr-light);
  font-size: 1.25rem;
  color: var(--lr-charcoal);
  flex-shrink: 0;
}
.card--dark .card__icon {
  background: rgba(169,169,169,0.1);
  color: var(--lr-silver-light);
}
.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lr-charcoal);
  line-height: 1.3;
}
.card--dark .card__title { color: var(--lr-white); }
.card__text {
  font-size: 0.9375rem;
  color: var(--lr-grey);
  line-height: 1.7;
  flex-grow: 1;
}
.card--dark .card__text { color: var(--lr-silver); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lr-charcoal);
  transition: gap 0.2s;
}
.card--dark .card__link { color: var(--lr-silver-light); }
.card__link:hover { gap: var(--space-sm); }

/* Product card */
.product-card {
  background: var(--lr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--lr-border);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lr-silver);
}
.product-card__image {
  aspect-ratio: 16/10;
  background: var(--lr-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--lr-border);
}
.product-card__body { padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); flex-grow: 1; }
.product-card__title { font-size: 1rem; font-weight: 600; color: var(--lr-charcoal); }
.product-card__desc { font-size: 0.875rem; color: var(--lr-grey); line-height: 1.6; flex-grow: 1; }
.product-card__price { font-size: 1.125rem; font-weight: 700; color: var(--lr-charcoal); }
.product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--lr-charcoal);
  color: var(--lr-silver-light);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}
.product-card__btn:hover { background: var(--lr-dark); color: var(--lr-white); }

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.feature-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--lr-white);
  border: 1px solid var(--lr-border);
  transition: all 0.2s;
}
.feature-item:hover { border-color: var(--lr-silver); box-shadow: var(--shadow-md); }
.feature-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--lr-light);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.feature-item__content { flex: 1; }
.feature-item__title { font-size: 1rem; font-weight: 600; color: var(--lr-charcoal); margin-bottom: var(--space-xs); }
.feature-item__text { font-size: 0.875rem; color: var(--lr-grey); line-height: 1.6; }

/* ============================================
   STEPS / TIMELINE
   ============================================ */
.steps { display: flex; flex-direction: column; gap: var(--space-xl); }
.step {
  display: flex;
  gap: var(--space-lg);
  position: relative;
}
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lr-charcoal);
  color: var(--lr-silver-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid var(--lr-silver);
}
.step__content { flex: 1; padding-top: var(--space-xs); }
.step__title { font-size: 1.125rem; font-weight: 600; color: var(--lr-charcoal); margin-bottom: var(--space-xs); }
.step__text { font-size: 0.9375rem; color: var(--lr-grey); line-height: 1.6; }

/* ============================================
   BADGES / TAGS
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge--primary { background: var(--lr-charcoal); color: var(--lr-silver-light); }
.badge--success { background: #1a3a1a; color: #7dd87d; }
.badge--warning { background: #3a2a1a; color: #e0c080; }
.badge--info { background: #1a2a3a; color: #80c0e0; }
.badge--new { background: var(--lr-silver); color: var(--lr-charcoal); }

/* ============================================
   TABLE
   ============================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--lr-border); }
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.table th {
  background: var(--lr-charcoal);
  color: var(--lr-silver-light);
  font-weight: 600;
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--lr-border);
  color: var(--lr-dark);
  vertical-align: top;
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--lr-light); }
.table td strong { color: var(--lr-charcoal); }

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--lr-border);
  padding: var(--space-lg) 0;
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lr-charcoal);
  cursor: pointer;
  gap: var(--space-md);
}
.faq-item__question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--lr-silver-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item--open .faq-item__question::after { content: '−'; }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: var(--lr-grey);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.faq-item--open .faq-item__answer {
  max-height: 500px;
  padding-top: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--lr-charcoal);
  border-top: 1px solid rgba(169,169,169,0.1);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lr-silver-light);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.footer-brand__name img {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  filter: invert(1) brightness(0.75);
  object-fit: contain;
}
.footer-brand__text {
  font-size: 0.875rem;
  color: var(--lr-silver-dark);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lr-silver-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-link {
  font-size: 0.875rem;
  color: var(--lr-silver-dark);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.footer-link:hover { color: var(--lr-silver-light); }
.footer-bottom {
  border-top: 1px solid rgba(169,169,169,0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-copyright {
  font-size: 0.8125rem;
  color: var(--lr-silver-dark);
}
.footer-legal { display: flex; gap: var(--space-lg); }
.footer-legal a {
  font-size: 0.8125rem;
  color: var(--lr-silver-dark);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--lr-silver-light); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--lr-light);
  border-bottom: 1px solid var(--lr-border);
  padding: var(--space-md) 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--lr-grey);
}
.breadcrumb__list a { color: var(--lr-grey); transition: color 0.2s; }
.breadcrumb__list a:hover { color: var(--lr-charcoal); }
.breadcrumb__sep { color: var(--lr-silver-dark); }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  background: var(--lr-charcoal);
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
  border-bottom: 1px solid rgba(169,169,169,0.1);
}
.page-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--lr-white);
  margin-bottom: var(--space-md);
}
.page-header__desc {
  font-size: 1.0625rem;
  color: var(--lr-silver);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   BLOG
   ============================================ */
.blog-card {
  background: var(--lr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--lr-border);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lr-silver);
}
.blog-card__image {
  aspect-ratio: 16/9;
  background: var(--lr-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--lr-border);
}
.blog-card__body { padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); flex-grow: 1; }
.blog-card__meta { display: flex; gap: var(--space-md); font-size: 0.75rem; color: var(--lr-silver-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card__title { font-size: 1.125rem; font-weight: 600; color: var(--lr-charcoal); line-height: 1.35; }
.blog-card__excerpt { font-size: 0.875rem; color: var(--lr-grey); line-height: 1.6; flex-grow: 1; }
.blog-card__read { font-size: 0.875rem; font-weight: 600; color: var(--lr-charcoal); display: inline-flex; align-items: center; gap: var(--space-xs); transition: gap 0.2s; }
.blog-card__read:hover { gap: var(--space-sm); }

/* Article */
.article { max-width: 760px; margin: 0 auto; }
.article__meta { display: flex; gap: var(--space-lg); font-size: 0.8125rem; color: var(--lr-silver-dark); margin-bottom: var(--space-lg); flex-wrap: wrap; }
.article__content { font-size: 1rem; line-height: 1.8; color: var(--lr-dark); }
.article__content h2 { font-size: 1.5rem; font-weight: 700; color: var(--lr-charcoal); margin: var(--space-2xl) 0 var(--space-md); }
.article__content h3 { font-size: 1.25rem; font-weight: 600; color: var(--lr-charcoal); margin: var(--space-xl) 0 var(--space-md); }
.article__content p { margin-bottom: var(--space-md); }
.article__content ul, .article__content ol { margin-bottom: var(--space-md); padding-left: var(--space-xl); }
.article__content ul { list-style: disc; }
.article__content ol { list-style: decimal; }
.article__content li { margin-bottom: var(--space-xs); }
.article__content strong { color: var(--lr-charcoal); }
.article__content blockquote {
  border-left: 3px solid var(--lr-silver);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  color: var(--lr-grey);
  font-style: italic;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group { margin-bottom: var(--space-lg); }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lr-charcoal);
  margin-bottom: var(--space-sm);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--lr-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--lr-dark);
  background: var(--lr-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--lr-silver);
  box-shadow: 0 0 0 3px rgba(169,169,169,0.15);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { appearance: none; background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%234A4A4A" d="M6 8L1 3h10z"/></svg>'); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ============================================
   SHOP BANNER
   ============================================ */
.shop-banner {
  background: var(--lr-charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.shop-banner__text { flex: 1; }
.shop-banner__title { font-size: 1.5rem; font-weight: 700; color: var(--lr-white); margin-bottom: var(--space-sm); }
.shop-banner__desc { font-size: 1rem; color: var(--lr-silver); }
.shop-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--lr-silver);
  color: var(--lr-charcoal);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.2s;
  flex-shrink: 0;
}
.shop-banner__btn:hover { background: var(--lr-silver-light); transform: translateY(-2px); }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: nowrap;
  padding: var(--space-xl) 0;
  overflow-x: auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--lr-silver-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-item__icon { font-size: 1.25rem; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table th:first-child,
.compare-table td:first-child { font-weight: 600; color: var(--lr-charcoal); }
.compare-table .check { color: #2a7a2a; font-weight: 700; }
.compare-table .cross { color: #8a2a2a; }
.compare-table .highlight { background: rgba(169,169,169,0.08); }

/* ============================================
   RESPONSIVE HELPERS
   ============================================ */
.hide-mobile { }
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .section { padding: var(--space-3xl) 0; }
  .page-header { padding: var(--space-2xl) 0 var(--space-xl); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .shop-banner { flex-direction: column; text-align: center; }
  .trust-bar { gap: var(--space-xl); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--lr-light); }
::-webkit-scrollbar-thumb { background: var(--lr-silver-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--lr-grey); }
