/* Femath Auto Peças — Design System */
:root {
  --color-slate-900: #141a22;
  --color-slate-800: #1a2332;
  --color-slate-700: #243044;
  --color-slate-600: #3d4f66;
  --color-slate-400: #8b9cb3;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-white: #ffffff;
  --color-orange: #e87722;
  --color-orange-dark: #c45f12;
  --color-orange-light: #fff4eb;
  --color-success: #22c55e;
  --font-heading: "Zilla Slab", "Bitter", Georgia, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(20, 26, 34, 0.12);
  --shadow-md: 0 4px 16px rgba(20, 26, 34, 0.14);
  --shadow-lg: 0 12px 40px rgba(20, 26, 34, 0.18);
  --header-h: 64px;
  --mobile-bar-h: 60px;
  --transition: 0.2s ease;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-slate-800);
  background: var(--color-slate-100);
}

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

a {
  color: var(--color-orange);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover { color: var(--color-orange-dark); }

:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-slate-900);
  margin-top: 0;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }

p { margin: 0 0 var(--space-md); }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-orange);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus { top: var(--space-md); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-slate-900);
  border-bottom: 3px solid var(--color-orange);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: var(--header-h);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-white);
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-white);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.logo-tag {
  font-size: 0.7rem;
  color: var(--color-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  color: var(--color-slate-200);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: var(--space-xs) 0;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--color-orange);
}

.header-ctas {
  display: none;
  gap: var(--space-sm);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--color-slate-600);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--color-white);
  padding: 0;
}

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.menu-toggle-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav — full-height opaque overlay (direct body child, no transformed ancestors) */
.mobile-nav,
.site-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--color-slate-900);
  z-index: 1500;
  padding: calc(var(--header-h) + var(--space-xl)) var(--space-md) var(--space-md);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.mobile-nav.is-open,
body.mobile-menu-open .mobile-nav,
body.mobile-menu-open .site-nav {
  display: block;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

body.mobile-menu-open .site-header {
  z-index: 1600;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li { border-bottom: 1px solid var(--color-slate-700); }

.mobile-nav a {
  display: block;
  padding: var(--space-md) 0;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  min-height: 48px;
}

.mobile-nav a[aria-current="page"] { color: var(--color-orange); }

.mobile-nav-ctas {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 900px) {
  .desktop-nav { display: block; }
  .header-ctas { display: flex; }
  .menu-toggle { display: none; }
  .mobile-nav,
  .site-nav,
  body.mobile-menu-open .mobile-nav,
  body.mobile-menu-open .site-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 48px;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--color-white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1da851;
  color: var(--color-white);
  border-color: #1da851;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}
.btn-primary:hover {
  background: var(--color-orange-dark);
  color: var(--color-white);
  border-color: var(--color-orange-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-slate-400);
}
.btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.btn-dark {
  background: var(--color-slate-800);
  color: var(--color-white);
  border-color: var(--color-slate-800);
}
.btn-dark:hover {
  background: var(--color-slate-700);
  color: var(--color-white);
}

.btn-sm {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-whatsapp.btn-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.btn-phone.btn-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

/* Hero */
.hero {
  background: var(--color-slate-800);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(232, 119, 34, 0.15);
  border: 1px solid var(--color-orange);
  color: var(--color-orange-light);
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

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

.hero-lead {
  font-size: 1.125rem;
  color: var(--color-slate-200);
  margin-bottom: var(--space-lg);
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
}

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

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: var(--space-3xl) 0; }
}

/* Trust bar */
.trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
  padding: var(--space-lg) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.trust-item {
  text-align: center;
  padding: var(--space-sm);
}

.trust-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-orange);
  display: block;
}

.trust-label {
  font-size: 0.8125rem;
  color: var(--color-slate-600);
}

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

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}

.section-alt { background: var(--color-white); }

.section-dark {
  background: var(--color-slate-800);
  color: var(--color-slate-200);
}

.section-dark h2,
.section-dark h3 { color: var(--color-white); }

.section-header {
  margin-bottom: var(--space-xl);
  max-width: 65ch;
}

.section-answer {
  font-size: 1.0625rem;
  color: var(--color-slate-600);
  margin-bottom: var(--space-lg);
}

.section-dark .section-answer { color: var(--color-slate-400); }

/* Cards */
.card-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

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

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

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-slate-200);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

@media (prefers-reduced-motion: reduce) {
  .card:hover { transform: none; }
}

.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 { margin-bottom: var(--space-sm); }

.card-body p {
  color: var(--color-slate-600);
  font-size: 0.9375rem;
  flex: 1;
}

.card-body .btn { margin-top: var(--space-md); align-self: flex-start; }

.card-price {
  font-size: 0.875rem;
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* Differentials */
.diff-list {
  display: grid;
  gap: var(--space-lg);
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.diff-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-orange);
  box-shadow: var(--shadow-sm);
}

.diff-icon {
  width: 48px;
  height: 48px;
  background: var(--color-orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Testimonials */
.rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-orange-light);
  border: 1px solid var(--color-orange);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
}

.rating-stars { color: #f59e0b; font-size: 1.25rem; letter-spacing: 2px; }

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

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

.testimonial {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-slate-200);
}

.testimonial-stars { color: #f59e0b; margin-bottom: var(--space-sm); }

.testimonial-text {
  font-style: italic;
  color: var(--color-slate-700);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}

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

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

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

.gallery-item:hover img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .gallery-item:hover img { transform: none; }
}

/* Location */
.location-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-slate-200);
  min-height: 280px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
}

.hours-table td {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-slate-200);
}

.hours-table td:last-child { text-align: right; font-weight: 500; }

.address-block {
  background: var(--color-slate-100);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
}

.address-block strong { display: block; margin-bottom: var(--space-xs); }

/* FAQ */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  background: var(--color-white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-slate-900);
  min-height: 48px;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-slate-600);
}

.faq-item.is-open .faq-answer { display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--color-slate-900) 0%, var(--color-slate-800) 100%);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

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

.cta-band p {
  color: var(--color-slate-200);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.cta-band .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--color-slate-900);
  color: var(--color-slate-400);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

.footer-brand .logo { margin-bottom: var(--space-md); }

.footer-brand p { font-size: 0.875rem; }

.footer h3 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li { margin-bottom: var(--space-xs); }

.footer a {
  color: var(--color-slate-400);
  text-decoration: none;
  font-size: 0.875rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--color-slate-700);
  padding-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  font-size: 0.8125rem;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-slate-700);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
}

.social-links a:hover { background: var(--color-orange); color: var(--color-white); }

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  background: var(--color-slate-900);
  border-top: 2px solid var(--color-orange);
  height: var(--mobile-bar-h);
}

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  min-height: var(--mobile-bar-h);
}

.mobile-bar a:first-child {
  background: #25d366;
}

.mobile-bar a:last-child {
  background: var(--color-slate-700);
}

@media (min-width: 900px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}

@media (max-width: 899px) {
  body { padding-bottom: var(--mobile-bar-h); }
}

/* Page-specific */
.page-hero {
  background: var(--color-slate-800);
  color: var(--color-white);
  padding: var(--space-xl) 0;
}

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

.page-hero-lead {
  color: var(--color-slate-200);
  max-width: 60ch;
}

.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  color: var(--color-slate-400);
}

.breadcrumb a {
  color: var(--color-orange-light);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { color: var(--color-slate-400); }

/* Catalog search */
.catalog-search {
  margin-bottom: var(--space-xl);
}

.search-input {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  border: 2px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
  min-height: 48px;
}

.search-input:focus {
  border-color: var(--color-orange);
  outline: none;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: var(--space-xs) var(--space-md);
  border: 2px solid var(--color-slate-200);
  background: var(--color-white);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 40px;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--color-orange);
  background: var(--color-orange-light);
  color: var(--color-orange-dark);
}

.catalog-card.hidden { display: none; }

/* Quote form page */
.quote-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin: 0 auto;
}

.quote-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  counter-reset: step;
}

.quote-steps li {
  counter-increment: step;
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: var(--space-md);
}

.quote-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Privacy */
.legal-content {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: var(--space-xl);
}

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

/* About timeline */
.timeline {
  border-left: 3px solid var(--color-orange);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
}

.timeline-item {
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-lg) - 7px);
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--color-orange);
  border-radius: 50%;
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: var(--space-xs);
}

/* Contact cards */
.contact-cards {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
}

.contact-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-slate-200);
}

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.contact-card h3 { margin-bottom: var(--space-sm); }

.contact-card a {
  font-weight: 600;
  word-break: break-all;
}

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mb-0 { margin-bottom: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
