@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg:            hsl(220, 20%, 7%);
  --fg:            hsl(0, 0%, 95%);
  --card:          hsl(220, 18%, 11%);
  --card-fg:       hsl(0, 0%, 95%);
  --primary:       hsl(82, 72%, 50%);
  --primary-fg:    hsl(220, 20%, 7%);
  --muted:         hsl(220, 15%, 18%);
  --muted-fg:      hsl(220, 10%, 55%);
  --border:        hsl(220, 15%, 20%);
  --radius:        0.5rem;
  --font-heading:  'Rajdhani', sans-serif;
  --font-body:     'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #000000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.site-header .logo img { height: 40px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  color: rgba(242, 242, 242, 0.7);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.header-cta {
  display: inline-flex; align-items: center; gap: 1rem;
}

.header-phone {
  font-size: 0.875rem; font-weight: 500;
  color: var(--primary);
  transition: opacity 0.2s;
}

.header-phone:hover { opacity: 0.8; }

/* Mobile actions */
.mobile-actions {
  display: none; align-items: center; gap: 0.25rem;
}

.mobile-call-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  font-size: 1.25rem;
  color: var(--primary);
  background: none; border: none;
  text-decoration: none;
}

/* Mobile menu */
.mobile-toggle {
  display: block;
  background: none; border: none; color: var(--fg);
  cursor: pointer; padding: 0.5rem; font-size: 1.5rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  gap: 0.25rem;
}

.mobile-menu a {
  display: block; padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  color: rgba(242, 242, 242, 0.7);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active { color: var(--primary); background: var(--muted); }

.mobile-menu.open { display: flex; }

@media (max-width: 1023px) {
  .nav-links, .header-cta { display: none; }
  .mobile-actions { display: flex; }
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem; font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary); color: var(--primary-fg);
}

.btn-primary:hover { filter: brightness(1.1); }

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary); color: var(--primary-fg);
}

.btn-outline-white {
  background: transparent;
  border-color: var(--fg);
  color: var(--fg);
}

.btn-outline-white:hover {
  background: var(--fg); color: var(--primary-fg);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px hsla(82, 72%, 50%, 0.2); }
  50%      { box-shadow: 0 0 40px hsla(82, 72%, 50%, 0.4); }
}

.btn-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* ── Hero Section ────────────────────────────────────── */
.hero {
  position: relative;
  height: 350px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  overflow: hidden;
}

.hero-tall { height: auto; min-height: 450px; overflow: visible; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsla(220, 20%, 7%, 0.92) 0%, hsla(220, 20%, 7%, 0.7) 100%);
}

.hero-content {
  position: relative; z-index: 10;
  padding: 2rem 0 2rem;
  width: 100%;
}

.hero h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--primary); text-shadow: 0 0 20px hsla(82, 72%, 50%, 0.4); }

.hero p { font-size: 1.125rem; color: rgba(242, 242, 242, 0.8); margin-bottom: 1.5rem; }

@media (max-width: 767px) {
  .hero .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .hero-content { padding: 4rem 0 5rem; }
  .hero-tall .hero-content { padding: 5rem 0 6rem; }
}

/* ── Hero Grid (home & vehicle-lookup) ───────────────── */
.hero-grid {
  display: grid; gap: 2rem; align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.hero-features { margin-bottom: 2rem; }
.hero-features li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 1.125rem; color: rgba(242, 242, 242, 0.8);
  margin-bottom: 0.75rem;
}

.hero-features .icon { color: var(--primary); font-size: 1.25rem; }

/* ── Vehicle Lookup Form ─────────────────────────────── */
.lookup-form-card {
  background: rgba(28, 32, 42, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: 0 0 30px hsla(82, 72%, 50%, 0.15);
}

.lookup-form-card h3 {
  font-size: 1.25rem; margin-bottom: 0.5rem;
}

.lookup-form-card .sub { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1.5rem; }

.lookup-input {
  width: 100%;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem;
  height: 3.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--muted);
  color: var(--fg);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.lookup-input::placeholder { color: var(--muted-fg); font-weight: 400; letter-spacing: 0.05em; }
.lookup-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px hsla(82, 72%, 50%, 0.2); }

/* ── Section Utilities ───────────────────────────────── */
.section { padding: 4rem 0; border-top: 1px solid hsla(82, 72%, 50%, 0.3); }
.hero + .section { border-top: none; }
.section-sm { padding: 1.5rem 0; }
.section-lg { padding: 6rem 0; }
.bg-dark { background: var(--bg); }
.bg-card { background: var(--card); }

.section-title {
  font-size: 1.875rem; text-align: center; margin-bottom: 1rem;
}

.section-title .accent { color: var(--primary); }

.section-subtitle {
  text-align: center; color: var(--muted-fg); max-width: 42rem; margin: 0 auto 3rem;
}

@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
  .section-sm { padding: 2rem 0; }
  .section-lg { padding: 8rem 0; }
  .section-title { font-size: 2.5rem; }
}

/* ── Card Grid ───────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-6 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.card:hover { border-color: hsla(82, 72%, 50%, 0.5); }

.card .card-icon {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.2s;
}

.card:hover .card-icon { transform: scale(1.1); }

.card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--muted-fg); }

.card-horizontal {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.card-horizontal .card-icon {
  color: var(--primary); flex-shrink: 0; margin-top: 0.125rem;
}

.card-horizontal h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.card-horizontal p { font-size: 0.875rem; color: var(--muted-fg); }

/* ── Step Numbers ────────────────────────────────────── */
.step-num {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 700;
  color: hsla(82, 72%, 50%, 0.2);
  margin-bottom: 0.5rem;
}

.step-card { text-align: center; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; color: var(--muted-fg); }

/* ── Manufacturer Cards ──────────────────────────────── */
.brand-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}

.brand-card:hover {
  border-color: hsla(82, 72%, 50%, 0.5);
  box-shadow: 0 0 30px hsla(82, 72%, 50%, 0.15);
}

.brand-card .card-icon {
  color: var(--primary); font-size: 2rem;
  margin: 0 auto 0.75rem;
  transition: transform 0.2s;
}

.brand-card:hover .card-icon { transform: scale(1.1); }
.brand-card span { font-family: var(--font-heading); font-weight: 600; }

/* ── Brand Logo Carousel ─────────────────────────────── */
.logo-carousel {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  margin-top: 1rem;
}

.logo-carousel-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: carousel-scroll 40s linear infinite;
}

.logo-carousel:hover .logo-carousel-track {
  animation-play-state: paused;
}

.logo-carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  width: 100px;
}

.logo-carousel-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.logo-carousel-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--muted-fg);
  white-space: nowrap;
}

@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Coverage Counties (homepage) ────────────────────── */
.coverage-counties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

a.county-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

a.county-pill:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px hsla(82, 72%, 50%, 0.15);
}

.county-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px hsla(82, 72%, 50%, 0.6);
  flex-shrink: 0;
}

/* ── Area Tags (M17-style pills) ────────────────────── */
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--fg);
  background: transparent;
  transition: all 0.2s ease;
}

a.area-tag {
  text-decoration: none;
  cursor: pointer;
  background: hsla(82, 72%, 50%, 0.08);
  border-color: hsla(82, 72%, 50%, 0.2);
}

a.area-tag:hover {
  background: hsla(82, 72%, 50%, 0.15);
  border-color: hsla(82, 72%, 50%, 0.4);
  transform: translateY(-2px);
  color: var(--primary);
}

a.area-tag svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.areas-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.area-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.region-block { margin-bottom: 2.5rem; scroll-margin-top: 6rem; }
.region-block:last-child { margin-bottom: 0; }

.region-header {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
  text-align: center;
}

/* ── Testimonials ────────────────────────────────────── */
.testimonial { padding: 1.5rem; }

.stars { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; }
.star { color: var(--primary); font-size: 1rem; }

.testimonial blockquote {
  font-size: 0.875rem; color: rgba(242, 242, 242, 0.8);
  font-style: italic; margin-bottom: 1rem;
}

.testimonial .author { font-size: 0.875rem; font-weight: 600; }
.testimonial .author-car { font-size: 0.75rem; color: var(--muted-fg); }

/* ── CTA Section ─────────────────────────────────────── */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, hsl(82, 72%, 45%) 0%, hsl(82, 72%, 55%) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 1.875rem; color: var(--primary-fg); margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(12, 14, 20, 0.8); max-width: 42rem; margin: 0 auto 2rem;
  font-size: 1.125rem;
}

@media (min-width: 1024px) {
  .cta-section { padding: 6rem 0; }
  .cta-section h2 { font-size: 3rem; }
}

/* ── Blog Cards ──────────────────────────────────────── */
.blog-card {
  overflow: hidden;
  transition: border-color 0.2s;
}

.blog-card:hover { border-color: hsla(82, 72%, 50%, 0.5); }

.blog-card .meta {
  font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.75rem;
}

.blog-card h2 {
  font-size: 1.25rem; margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.blog-card:hover h2 { color: var(--primary); }
.blog-card p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; }

.read-more {
  font-size: 0.875rem; color: var(--primary); font-weight: 500;
}

/* ── FAQ Accordion ───────────────────────────────────── */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none; border: none;
  font-family: var(--font-heading);
  font-size: 1.125rem; font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--primary); }

.faq-question .chevron {
  transition: transform 0.3s; font-size: 1.25rem; flex-shrink: 0;
}

.faq-item.open .faq-question .chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

/* ── Contact Form ────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--fg);
  transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted-fg); }

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(82, 72%, 50%, 0.2);
}

.form-textarea { resize: vertical; min-height: 120px; }

/* ── Contact Info ────────────────────────────────────── */
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info-item .icon { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; font-size: 1.25rem; }
.contact-info-item strong { display: block; font-size: 0.875rem; margin-bottom: 0.125rem; }
.contact-info-item span { font-size: 0.875rem; color: var(--muted-fg); }

/* Map */
.map-container {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe { display: block; }

/* ── Stage Cards ─────────────────────────────────────── */
.stage-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}

.stage-card h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.stage-card h2 .accent { color: var(--primary); }
.stage-card p { color: var(--muted-fg); margin-bottom: 1rem; }

.check-list { list-style: none; }
.check-list li {
  display: flex; gap: 0.5rem; align-items: flex-start;
  font-size: 0.875rem; color: rgba(242, 242, 242, 0.8);
  margin-bottom: 0.5rem;
}

.check-list .check { color: var(--primary); flex-shrink: 0; }

/* ── Gains Table Cards ───────────────────────────────── */
.gain-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.gain-card .label { font-size: 0.875rem; color: var(--muted-fg); }
.gain-card .value { font-size: 0.875rem; color: rgba(242, 242, 242, 0.8); }
.gain-card .value-after { color: var(--primary); font-weight: 600; }

/* ── Inline CTA Box ──────────────────────────────────── */
.inline-cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.inline-cta.glow {
  border-color: hsla(82, 72%, 50%, 0.3);
  box-shadow: 0 0 30px hsla(82, 72%, 50%, 0.15);
}

.inline-cta h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.inline-cta p { color: var(--muted-fg); margin-bottom: 1rem; }

.inline-cta .btn-group {
  display: flex; flex-direction: column; gap: 0.75rem;
  justify-content: center; align-items: center;
}

@media (min-width: 640px) {
  .inline-cta .btn-group { flex-direction: row; }
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: #000000;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 3rem;
}

.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.8fr repeat(3, 0.7fr) 1.2fr; }
}

.footer-delta { display: flex; align-items: center; justify-content: center; }
.footer-delta img { max-width: 192px; width: 100%; height: auto; }

.site-footer .logo img { height: 160px; width: auto; margin-bottom: 1rem; }

.site-footer p { font-size: 0.875rem; color: var(--muted-fg); }

.footer-heading {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.9rem; color: var(--muted-fg);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-bottom {
  background: var(--card);
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.875rem; color: var(--primary);
}

/* ── 404 ─────────────────────────────────────────────── */
.not-found {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; text-align: center;
}

.not-found h1 { font-size: 4rem; margin-bottom: 1rem; }
.not-found p { font-size: 1.25rem; color: var(--muted-fg); margin-bottom: 1rem; }
.not-found a { color: var(--primary); text-decoration: underline; }
.not-found a:hover { opacity: 0.9; }

/* ── Prose (max-width wrapper) ───────────────────────── */
.prose { max-width: 56rem; margin: 0 auto; }
.prose-sm { max-width: 48rem; margin: 0 auto; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-fg); }
.text-sm { font-size: 0.875rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }

/* ── About values row ────────────────────────────────── */
.value-item {
  display: flex; gap: 1rem;
}

.value-item .icon {
  color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; font-size: 1.75rem;
}

.value-item h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.value-item p { font-size: 0.875rem; color: var(--muted-fg); }

/* ── Two-col layout for contact & stages ─────────────── */
.two-col {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

/* ── Main content push below fixed header ────────────── */
main { padding-top: 64px; }

/* ── SVG icon helpers (inline SVG sizing) ────────────── */
svg.icon-sm { width: 16px; height: 16px; }
svg.icon-md { width: 20px; height: 20px; }
svg.icon-lg { width: 24px; height: 24px; }
svg.icon-xl { width: 32px; height: 32px; }
svg.icon-2xl { width: 36px; height: 36px; }

/* ── Mobile lookup section ───────────────────────────── */
.mobile-lookup {
  display: block; padding: 2rem 1rem;
}

@media (min-width: 1024px) {
  .mobile-lookup { display: none; }
  .mobile-hero-btn { display: none; }
  .desktop-only { display: block; }
}

@media (max-width: 1023px) {
  .desktop-only { display: none; }
}

/* ── Breadcrumbs ─────────────────────────────────────── */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: var(--muted-fg);
}

.breadcrumb a {
  color: var(--muted-fg);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--primary); }

.breadcrumb .sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--fg);
}

/* ── Blog Card Images ───────────────────────────────── */
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link .card { padding: 0; }

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card-link:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

/* ── Blog Hero Image (single post) ──────────────────── */
.blog-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.blog-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Blog Body Content ──────────────────────────────── */
.blog-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(242, 242, 242, 0.85);
}

.blog-body h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--fg);
}

.blog-body h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--fg);
}

.blog-body p {
  margin-bottom: 1rem;
}

.blog-body ul,
.blog-body ol {
  margin: 0 0 1rem 1.5rem;
  list-style: disc;
}

.blog-body ol { list-style: decimal; }

.blog-body li {
  margin-bottom: 0.5rem;
}

.blog-body a {
  color: var(--primary);
  text-decoration: underline;
}

.blog-body a:hover { opacity: 0.8; }

.blog-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: rgba(242, 242, 242, 0.8);
  font-style: italic;
}

/* ── Post Navigation (prev/next) ────────────────────── */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.post-nav-link:hover {
  border-color: hsla(82, 72%, 50%, 0.5);
}

.post-nav-next { text-align: right; }

.post-nav-label {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-nav-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

@media (max-width: 639px) {
  .post-nav {
    grid-template-columns: 1fr;
  }
}

/* ── Pagination ─────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination .btn {
  min-width: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
