:root {
  --primary-color: #2c5f7d;
  --secondary-color: #e8a547;
  --accent-color: #4a8fa3;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --font-primary: 'Space Grotesk', sans-serif;
  --font-secondary: 'Sora', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

.container-fluid {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-color);
}

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

ul {
  list-style-position: inside;
  margin-bottom: var(--space-sm);
}

ol {
  list-style-position: inside;
  margin-bottom: var(--space-sm);
}

.main-header {
  background: var(--bg-white);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand-logo a {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.burger-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.burger-toggle span {
  width: 1.5rem;
  height: 0.125rem;
  background: var(--primary-color);
  transition: var(--transition-normal);
}

.burger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.burger-toggle.active span:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

.primary-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;

  height: 100vh;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-md);
  gap: var(--space-sm);
  transition: right var(--transition-normal);
  z-index: 999;
}

.primary-nav.active {
  right: 0;
}

.primary-nav a {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: var(--space-xs) 0;
  border-bottom: 0.0625rem solid var(--border-color);
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.btn-primary:hover {
  background: var(--accent-color);
  color: var(--bg-white);
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 0.125rem solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--bg-white);
}

.hero-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.hero-grid {
  display: grid;
  gap: var(--space-lg);
}

.hero-text h1 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.hero-text p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.features-section {
  padding: var(--space-xl) 0;
}

.features-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.features-grid {
  display: grid;
  gap: var(--space-md);
}

.feature-card {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-md);
}

.feature-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-sm);
}

.feature-card h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.showcase-section {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.showcase-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.showcase-content h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.showcase-content p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.showcase-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.process-section {
  padding: var(--space-xl) 0;
}

.process-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.process-timeline {
  display: grid;
  gap: var(--space-md);
}

.process-step {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 0.25rem solid var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: var(--space-xs);
}

.process-step h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.process-step p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.stats-section {
  padding: var(--space-xl) 0;
  background: var(--primary-color);
  color: var(--bg-white);
}

.stats-grid {
  display: grid;
  gap: var(--space-md);
  text-align: center;
}

.stat-item {
  padding: var(--space-md);
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--bg-white);
  opacity: 0.9;
}

.testimonials-section {
  padding: var(--space-xl) 0;
}

.testimonials-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.testimonials-grid {
  display: grid;
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.875rem;
}

.location-section {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.location-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.location-grid {
  display: grid;
  gap: var(--space-lg);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: 0.25rem;
}

.info-item h3 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.location-map iframe {
  width: 100%;
  height: 18.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--bg-white);
  text-align: center;
}

.cta-content h2 {
  color: var(--bg-white);
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: var(--bg-white);
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.cta-section .btn-primary {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.cta-section .btn-primary:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

.main-footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: var(--space-md) 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--bg-white);
  font-size: 0.8125rem;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-copy {
  font-size: 0.8125rem;
  opacity: 0.7;
}

.footer-copy p {
  margin-bottom: 0;
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  z-index: 9999;
  transition: bottom var(--transition-normal);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cookie-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn-accept, .btn-decline {
  padding: 0.5rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.btn-accept {
  background: var(--primary-color);
  color: var(--bg-white);
}

.btn-accept:hover {
  background: var(--accent-color);
}

.btn-decline {
  background: var(--border-color);
  color: var(--text-dark);
}

.btn-decline:hover {
  background: var(--text-light);
  color: var(--bg-white);
}

.privacy-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: var(--space-md);
}

.privacy-popup.show {
  display: flex;
}

.privacy-content {
  background: var(--bg-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  max-width: 31.25rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close-popup {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.close-popup:hover {
  color: var(--text-dark);
}

.privacy-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.privacy-content p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  text-align: center;
}

.page-hero h1 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: var(--text-light);
  margin-bottom: 0;
}

.products-section {
  padding: var(--space-xl) 0;
}

.products-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.products-grid {
  display: grid;
  gap: var(--space-lg);
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 12.5rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: var(--space-md);
}

.product-info h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.product-info p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.product-price {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: var(--space-md);
}

.categories-section {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.categories-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.categories-grid {
  display: grid;
  gap: var(--space-md);
}

.category-card {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.category-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-sm);
}

.category-card h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.category-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.expertise-section {
  padding: var(--space-xl) 0;
}

.expertise-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.expertise-grid {
  display: grid;
  gap: var(--space-md);
}

.expertise-item {
  background: var(--bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.expertise-item h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.expertise-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.brands-section {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
  text-align: center;
}

.brands-section h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.brands-section p {
  color: var(--text-light);
  max-width: 50rem;
  margin: 0 auto;
}

.consultation-section {
  padding: var(--space-xl) 0;
  text-align: center;
}

.consultation-section h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.consultation-section p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.warranty-section {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.warranty-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.warranty-grid {
  display: grid;
  gap: var(--space-md);
}

.warranty-item {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.warranty-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-sm);
}

.warranty-item h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.warranty-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.parts-intro {
  padding: var(--space-xl) 0;
  text-align: center;
}

.parts-intro h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.parts-intro p {
  color: var(--text-light);
  max-width: 50rem;
  margin: 0 auto;
}

.parts-categories {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.parts-categories h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.parts-grid {
  display: grid;
  gap: var(--space-md);
}

.parts-card {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.parts-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-sm);
}

.parts-card h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.parts-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.sourcing-section {
  padding: var(--space-xl) 0;
}

.sourcing-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.sourcing-grid {
  display: grid;
  gap: var(--space-md);
}

.sourcing-item {
  background: var(--bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.sourcing-item h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.sourcing-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.authenticity-section {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.authenticity-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.authenticity-section p {
  color: var(--text-light);
  max-width: 50rem;
  margin: 0 auto var(--space-md);
}

.specialty-parts {
  padding: var(--space-xl) 0;
}

.specialty-parts h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.specialty-grid {
  display: grid;
  gap: var(--space-md);
}

.specialty-card {
  background: var(--bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.specialty-card h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.specialty-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.parts-guarantee {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.parts-guarantee h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.guarantee-grid {
  display: grid;
  gap: var(--space-md);
}

.guarantee-item {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.guarantee-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-sm);
}

.guarantee-item h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.guarantee-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.custom-parts {
  padding: var(--space-xl) 0;
}

.custom-parts h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.custom-parts p {
  color: var(--text-light);
  max-width: 50rem;
  margin: 0 auto;
}

.contact-main {
  padding: var(--space-xl) 0;
}

.contact-layout {
  display: grid;
  gap: var(--space-xl);
}

.contact-form-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 0.625rem;
  border: 0.0625rem solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-light);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
}

.contact-info-wrapper {
  background: var(--bg-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.contact-info-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.detail-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.detail-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: 0.25rem;
}

.detail-item h3 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.detail-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.map-section {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 18.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.faq-section {
  padding: var(--space-xl) 0;
}

.faq-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.faq-grid {
  display: grid;
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.faq-item h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.why-contact {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.why-contact h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.reasons-grid {
  display: grid;
  gap: var(--space-md);
}

.reason-item {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.reason-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-sm);
}

.reason-item h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.reason-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.visit-section {
  padding: var(--space-xl) 0;
  text-align: center;
}

.visit-section h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.visit-section p {
  color: var(--text-light);
  max-width: 50rem;
  margin: 0 auto;
}

.emergency-section {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
  text-align: center;
}

.emergency-section h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.emergency-section p {
  color: var(--text-light);
  max-width: 50rem;
  margin: 0 auto;
}

.thankyou-section {
  padding: var(--space-xxl) 0;
  text-align: center;
}

.thankyou-content {
  max-width: 37.5rem;
  margin: 0 auto;
}

.thankyou-content i {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-md);
}

.thankyou-content h1 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.thankyou-content p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.next-steps {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.next-steps h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.steps-grid {
  display: grid;
  gap: var(--space-md);
}

.step-card {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.step-icon {
  margin-bottom: var(--space-sm);
}

.step-icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.step-card h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.step-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.additional-info {
  padding: var(--space-xl) 0;
  text-align: center;
}

.additional-info h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.additional-info p {
  color: var(--text-light);
  max-width: 50rem;
  margin: 0 auto;
}

.error-section {
  padding: var(--space-xxl) 0;
  text-align: center;
}

.error-content {
  max-width: 37.5rem;
  margin: 0 auto;
}

.error-code {
  font-family: var(--font-primary);
  font-size: 6rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-content h1 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.helpful-links {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.helpful-links h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.links-grid {
  display: grid;
  gap: var(--space-md);
}

.link-card {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.link-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-md);
}

.link-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-sm);
}

.link-card h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.link-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.policy-content {
  padding: var(--space-xl) 0;
}

.policy-text {
  max-width: 50rem;
  margin: 0 auto;
}

.policy-text h2 {
  color: var(--primary-color);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.policy-text h3 {
  color: var(--primary-color);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.policy-text ul,
.policy-text ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.policy-text li {
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

@media (max-width: 480px) {
  .brand-logo a {
    font-size: 1.1rem;
  }
}

@media (min-width: 48rem) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .container-fluid {
    padding: 0 var(--space-lg);
  }

  .burger-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    padding: 0;
    gap: var(--space-lg);
  }

  .primary-nav a {
    border-bottom: none;
    padding: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .warranty-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .parts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sourcing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantee-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 64rem) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .parts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .links-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}