/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --accent: #dc2626;
  --accent-dark: #b91c1c;
  --green: #16a34a;
  --green-dark: #15803d;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== UTILITIES ===== */
@media (max-width: 600px) {
  .hide-mobile {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  max-width: 100%;
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 12px 20px;
    font-size: 15px;
    white-space: normal;
    text-align: center;
  }
  .btn-xl {
    padding: 14px 24px;
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-call {
  background: var(--green);
  color: var(--white);
}
.btn-call:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-sm {
  padding: 10px 16px;
  font-size: 14px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.btn-xl {
  padding: 18px 36px;
  font-size: 18px;
  border-radius: var(--radius-lg);
}

/* ===== STICKY CALL BAR ===== */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--green);
  padding: 12px 16px;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.sticky-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
}

@media (max-width: 768px) {
  .sticky-call-bar {
    display: block;
  }
  body {
    padding-bottom: 56px;
  }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.logo-icon {
  font-size: 28px;
  color: var(--primary);
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

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

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

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

.header-cta .btn-call {
  font-size: 15px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-content {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.mobile-menu.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-menu-close {
  display: none;
}

.mobile-menu-link {
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-call {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=80') center center / cover no-repeat;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 50%, rgba(30, 58, 95, 0.85) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero .highlight {
  color: var(--primary-light);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== SEARCH BOX ===== */
.search-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow-xl);
  text-align: left;
  max-width: 700px;
  margin: 0 auto 24px;
}

.search-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-align: center;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.search-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.search-field select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.search-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.search-field select:disabled {
  background-color: var(--gray-50);
  color: var(--gray-400);
  cursor: not-allowed;
}

.search-form .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 14px;
}

@media (max-width: 640px) {
  .search-row {
    grid-template-columns: 1fr 1fr;
  }
  .search-box {
    padding: 20px;
    margin-left: -8px;
    margin-right: -8px;
  }
}

.hero-phone {
  color: var(--gray-400);
  font-size: 15px;
}

.hero-phone a {
  color: var(--white);
  transition: color 0.2s;
}

.hero-phone a:hover {
  color: var(--primary-light);
}

.availability {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--gray-300);
}

.trust-payments {
  display: flex;
  gap: 6px;
}

.payment-badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .trust-items {
    gap: 12px;
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    flex: 0 0 auto;
  }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 48px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.step {
  text-align: center;
  flex: 0 1 280px;
  padding: 32px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step-icon {
  color: var(--primary);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 80px;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    max-width: 400px;
    width: 100%;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }
}

/* ===== PARTS SECTION ===== */
.parts-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.parts-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}

.cat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cat-card:hover .cat-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

.cat-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--white);
}

.cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--primary);
  border-radius: 12px;
  flex-shrink: 0;
}

.cat-info {
  flex: 1;
  min-width: 0;
}

.cat-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.cat-parts {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.4;
}

.cat-arrow {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: all 0.2s;
}

.parts-cta {
  text-align: center;
}

.parts-cta p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.parts-cta-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .parts-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .parts-categories {
    grid-template-columns: 1fr;
  }
}

/* ===== ALL CATEGORIES PAGE ===== */
.cat-search-wrap {
  position: relative;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cat-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

.cat-search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-family: inherit;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cat-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.cat-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.part-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.part-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Related parts section */
.related-section {
  padding: 48px 0;
  background: var(--gray-50);
}

.related-section h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
}

.related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.related-card-img {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: var(--white);
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s ease;
}

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

.related-card-info {
  padding: 12px 14px;
}

.related-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.related-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.related-card:hover .related-card-link {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .related-card-img {
    height: 90px;
  }
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 80px 0;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.review-meta {
  font-size: 12px;
  color: var(--gray-500);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 64px 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all 0.25s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--primary);
  border-radius: 14px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer .logo-text {
  color: var(--white);
}

.footer .logo-accent {
  color: var(--primary);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0;
}

.footer-phone {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-hours {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-payments {
  display: flex;
  gap: 6px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== PRODUCT PAGE ===== */
.product-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 48px 0;
}

.product-hero-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 16px;
}

.product-hero-inner a {
  color: var(--gray-400);
  transition: color 0.2s;
}

.product-hero-inner a:hover {
  color: var(--white);
}

.product-hero h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.product-hero .compatibility {
  color: var(--gray-400);
  font-size: 16px;
}

.product-hero .compatibility strong {
  color: var(--green);
}

.product-main {
  padding: 48px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}
.product-shopearl-col {
  grid-column: 1 / -1;
}

/* Check Available Parts button */
.btn-check-parts {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 24px;
  transition: background 0.2s;
}
.btn-check-parts:hover {
  background: var(--primary-dark, #1a4fd4);
}

/* Product Gallery */
.product-gallery {
  margin-bottom: 32px;
}

.gallery-main {
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
}

.gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--gray-200);
  opacity: 0.6;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.gallery-thumb:hover {
  opacity: 0.9;
  border-color: var(--gray-400);
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--primary);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Details Content */
.product-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.product-specs {
  margin-bottom: 24px;
}

.product-specs h3,
.product-includes h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.specs-table td {
  padding: 10px 0;
  font-size: 14px;
}

.spec-label {
  font-weight: 600;
  color: var(--gray-500);
  width: 40%;
}

.spec-value {
  color: var(--dark);
}

.product-includes {
  margin-bottom: 24px;
}

.product-includes ul {
  list-style: none;
}

.product-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-700);
}

.product-includes li svg {
  flex-shrink: 0;
}

.product-warranty {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}

.product-warranty h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-warranty p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Product CTA Box */
.product-cta-box {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: sticky;
  top: 96px;
}

.product-price-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--dark);
  margin: 4px 0 4px;
}

.product-price-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.product-cta-box .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.product-cta-box .btn:last-child {
  margin-bottom: 0;
}

.product-cta-divider {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin: 4px 0;
}

.product-cta-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.product-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
}

/* Quote Modal */
.quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quote-modal-overlay.active {
  display: flex;
}

.quote-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s;
}

.quote-modal-close:hover {
  color: var(--dark);
  background: var(--gray-100);
}

.quote-form-section {
  display: block;
}

.quote-form-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.quote-form-section .subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.quote-form .form-group {
  margin-bottom: 14px;
}

.quote-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

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

.quote-form .btn {
  width: 100%;
  justify-content: center;
}

.form-vehicle-info {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--gray-700);
}

.form-vehicle-info strong {
  color: var(--dark);
}

/* Product Vehicle Search (compact) */
.product-vehicle-search {
  margin-top: 20px;
}

.product-search-form {
  display: flex;
}

.product-search-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.product-search-row select {
  padding: 10px 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  flex: 1;
  min-width: 120px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
  transition: border-color 0.2s;
}

.product-search-row select:focus {
  outline: none;
  border-color: var(--accent);
}

.product-search-row select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-search-row select option {
  background: var(--dark);
  color: var(--white);
}

.product-search-row .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-info {
    order: 3;
  }
  .product-cta-col {
    order: 1;
  }
  .product-shopearl-col {
    order: 2;
  }
  .btn-check-parts {
    display: none;
  }
  .product-cta-box {
    position: static;
  }
  .product-search-row select {
    min-width: 0;
    flex: 1 1 calc(50% - 4px);
  }
  .product-search-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== LOADING SPINNER ===== */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-300);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 48px 0 80px;
  background: var(--gray-50);
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 12px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 20px 0 8px;
}

.legal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.legal-body a {
  color: var(--primary);
  font-weight: 500;
}

.legal-body a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-body {
    padding: 24px 20px;
  }
}

/* ===== SHOPEARL LISTINGS ===== */
.shopearl-section {
  padding: 48px 0;
  background: var(--gray-50);
}

.shopearl-header {
  margin-bottom: 20px;
}

.shopearl-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.shopearl-subtitle {
  color: var(--gray-500);
  font-size: 15px;
}

.shopearl-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.shopearl-filter-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shopearl-filter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.shopearl-select {
  appearance: none;
  -webkit-appearance: none;
  font-size: 14px;
  padding: 8px 36px 8px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.2s;
  min-width: 150px;
}

.shopearl-select:hover,
.shopearl-select:focus {
  border-color: var(--primary);
  outline: none;
}

.shopearl-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--gray-400);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shopearl-empty p {
  margin: 4px 0;
}

.shopearl-empty p:first-of-type {
  font-weight: 600;
  color: var(--gray-500);
}

.shopearl-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shopearl-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.shopearl-row:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.shopearl-row-img {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopearl-row-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shopearl-row-noimg {
  font-size: 12px;
  color: var(--gray-400);
}

.shopearl-row-info {
  flex: 1;
  min-width: 0;
}

.shopearl-row-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.shopearl-row-details {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.shopearl-condition {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.condition-new {
  background: #dcfce7;
  color: #166534;
}

.condition-used {
  background: #fef3c7;
  color: #92400e;
}

.shopearl-row-oem {
  font-size: 13px;
  color: var(--gray-500);
}

.shopearl-row-shipping {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.shopearl-free-ship {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.shopearl-delivery-date {
  font-size: 13px;
  color: var(--gray-500);
}

.shopearl-row-right {
  flex-shrink: 0;
  text-align: right;
  min-width: 140px;
}

.shopearl-row-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.shopearl-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.shopearl-call-btn:hover {
  background: var(--green-dark);
}

.shopearl-disclaimer {
  margin-top: 16px;
  text-align: center;
}

.shopearl-disclaimer p {
  font-size: 13px;
  color: var(--gray-400);
}

.shopearl-disclaimer a {
  color: var(--primary);
  font-weight: 500;
}

.shopearl-row-img {
  position: relative;
}

.shopearl-zoom-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  padding: 4px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.shopearl-row-img:hover .shopearl-zoom-icon {
  opacity: 1;
}

.shopearl-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.shopearl-lightbox.active {
  display: flex;
}

.shopearl-lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.shopearl-lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.shopearl-lightbox-close:hover {
  color: var(--gray-200);
}

.shopearl-lightbox-caption {
  color: #fff;
  font-size: 14px;
  text-align: center;
  max-width: 600px;
}

@media (max-width: 640px) {
  .shopearl-row {
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .shopearl-row-img {
    width: 100%;
    height: 200px;
    border-radius: 0;
  }

  .shopearl-row-img img {
    object-fit: contain;
  }

  .shopearl-row-info {
    padding: 14px 16px 10px;
    flex: none;
    width: 100%;
  }

  .shopearl-row-name {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .shopearl-row-details {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }

  .shopearl-row-oem {
    font-size: 12px;
    word-break: break-all;
  }

  .shopearl-row-shipping {
    flex-wrap: wrap;
    gap: 8px;
  }

  .shopearl-row-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-100);
    padding: 12px 16px;
    min-width: 0;
  }

  .shopearl-row-price {
    font-size: 22px;
    margin-bottom: 0;
  }

  .shopearl-call-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .shopearl-zoom-icon {
    opacity: 0.7;
  }
}

/* ===== OEM PARTS LANDER ===== */
.lander-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 80px 0 72px;
  text-align: center;
  color: var(--white);
}

.lander-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.lander-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.lander-hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lander-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 32px;
}

.lander-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.lander-hero-ctas .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.lander-hero-ctas .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.lander-hero-note {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.lander-search-wrap {
  max-width: 680px;
  margin: 32px auto 0;
}

.lander-search-wrap .search-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}

.lander-search-wrap .search-title {
  color: rgba(255,255,255,0.85);
}

.lander-search-wrap label {
  color: rgba(255,255,255,0.7);
}

.lander-section {
  padding: 72px 0;
}

.lander-section-alt {
  background: var(--gray-50);
}

/* OEM vs Aftermarket comparison */
.lander-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
}

.lander-compare-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--gray-200);
}

.lander-compare-oem {
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(22,163,74,0.1), var(--shadow-md);
}

.lander-compare-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.lander-compare-header h3 {
  font-size: 20px;
  font-weight: 700;
}

.lander-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lander-compare-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.lander-compare-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.lander-compare-list-muted li::before {
  background-color: var(--gray-300);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}

.lander-compare-list-muted li {
  color: var(--gray-500);
}

/* Features grid */
.lander-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.lander-feature {
  text-align: center;
}

.lander-feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(30,64,175,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lander-feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.lander-feature p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* FAQ */
.lander-faq {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lander-faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lander-faq-item summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lander-faq-item summary::-webkit-details-marker {
  display: none;
}

.lander-faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-400);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.lander-faq-item[open] summary::after {
  content: '\2212';
}

.lander-faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.lander-faq-item p a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 900px) {
  .lander-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.lander-final-cta {
  background: var(--green);
  padding: 64px 0;
  text-align: center;
}

.lander-final-cta-inner h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.lander-final-cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.lander-final-cta .btn-white {
  color: var(--green-dark);
}

.lander-final-cta .btn-white:hover {
  color: var(--green);
}

@media (max-width: 600px) {
  .lander-final-cta {
    padding: 48px 0;
  }

  .lander-final-cta-inner h2 {
    font-size: 26px;
  }

  .lander-final-cta-inner p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .lander-hero {
    padding: 56px 0 48px;
  }

  .lander-hero h1 {
    font-size: 32px;
  }

  .lander-subtitle {
    font-size: 16px;
  }

  .lander-compare-grid {
    grid-template-columns: 1fr;
  }

  .lander-compare-card {
    padding: 24px;
  }

  .lander-features-grid {
    grid-template-columns: 1fr;
  }

  .lander-section {
    padding: 48px 0;
  }

  .lander-faq-item summary {
    padding: 16px 20px;
    font-size: 15px;
  }

  .lander-faq-item p {
    padding: 0 20px 16px;
    font-size: 14px;
  }
}

