/* Auto Peças Nery — Design System */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --color-slate-900: #1a2332;
  --color-slate-800: #243044;
  --color-slate-700: #2e3d54;
  --color-slate-600: #3d4f6a;
  --color-slate-500: #5a6d85;
  --color-grey-100: #f0f2f5;
  --color-grey-200: #e2e6eb;
  --color-grey-300: #c8cfd8;
  --color-white: #ffffff;
  --color-orange: #e85d04;
  --color-orange-hover: #d45303;
  --color-orange-light: #fff4ed;
  --color-green: #25d366;
  --color-green-hover: #1fb855;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', 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;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 35, 50, 0.12);
  --shadow-lg: 0 8px 32px rgba(26, 35, 50, 0.18);
  --header-height: 72px;
  --mobile-bar-height: 64px;
  --transition: 0.25s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-slate-800);
  background: var(--color-grey-100);
  line-height: 1.6;
  padding-bottom: var(--mobile-bar-height);
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

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

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-slate-900);
}

h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 3vw, 1.375rem); font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

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

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

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}

.section__header p {
  margin-top: var(--space-md);
  color: var(--color-slate-500);
  font-size: 1.0625rem;
}

.section--dark .section__header p { color: var(--color-grey-300); }

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

.btn:active { transform: scale(0.98); }

.btn--whatsapp {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.btn--whatsapp:hover {
  background: var(--color-green-hover);
  border-color: var(--color-green-hover);
  color: var(--color-white);
}

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

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

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-slate-800);
  border-color: var(--color-grey-300);
}

.btn--ghost:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

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

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* 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-height);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}

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

.logo__icon {
  width: 44px;
  height: 44px;
  background: var(--color-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-white);
  letter-spacing: -0.05em;
}

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

.logo__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.logo__tagline {
  font-size: 0.6875rem;
  color: var(--color-grey-300);
  font-weight: 500;
}

.header-actions {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .header-actions { display: flex; }
}

.header-actions .btn { font-size: 0.8125rem; padding: 0.5rem 1rem; }

/* Nav */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

@media (min-width: 992px) {
  .nav-toggle { display: none; }
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background var(--transition);
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition);
}

.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  display: none;
}

@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
  }

  .main-nav a {
    color: var(--color-grey-200);
    font-size: 0.875rem;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    color: var(--color-orange);
    background: rgba(232, 93, 4, 0.1);
  }
}

/* Mobile menu — full-height opaque overlay (no transform on ancestors) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  background: var(--color-slate-900);
  z-index: 1001;
  padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-menu:not([hidden]),
.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-white);
  font-size: 1.0625rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--color-slate-700);
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  background: var(--color-slate-800);
  color: var(--color-orange);
}

.mobile-menu__cta {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-slate-900) 0%, var(--color-slate-800) 100%);
  color: var(--color-white);
  padding: var(--space-2xl) 0 var(--space-3xl);
  overflow: hidden;
}

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

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

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255,255,255,0.1);
  padding: var(--space-xs) var(--space-md);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: var(--space-md);
}

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

.hero__promise {
  font-size: 1.125rem;
  color: var(--color-grey-300);
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

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

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

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

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

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

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

.trust-item__value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.trust-item__label {
  font-size: 0.8125rem;
  color: var(--color-slate-500);
  font-weight: 500;
}

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

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

@media (min-width: 768px) {
  .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);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-grey-200);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

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

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

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

.card p {
  color: var(--color-slate-500);
  font-size: 0.9375rem;
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.card__price {
  font-size: 0.8125rem;
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

/* Differentials */
.diff-list {
  display: grid;
  gap: var(--space-lg);
}

@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-slate-800);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-orange);
}

.diff-item__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
  flex-shrink: 0;
}

.diff-item h3 { color: var(--color-white); margin-bottom: var(--space-xs); font-size: 1.0625rem; }
.diff-item p { color: var(--color-grey-300); font-size: 0.9375rem; }

/* Reviews */
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-grey-200);
}

.review-card__stars {
  color: #fbbf24;
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--color-slate-600);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.review-card__author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-slate-800);
}

.review-card__meta {
  font-size: 0.75rem;
  color: var(--color-slate-500);
}

.rating-banner {
  background: linear-gradient(135deg, var(--color-orange) 0%, #c44d03 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.rating-banner__score {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.rating-banner__stars { font-size: 1.5rem; margin: var(--space-sm) 0; }
.rating-banner__count { font-size: 1rem; opacity: 0.9; }

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

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

.gallery-grid img {
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: transform var(--transition);
}

.gallery-grid a:hover img { transform: scale(1.03); }

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

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

.location-info {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.location-info h3 { margin-bottom: var(--space-md); }

.location-info address {
  font-style: normal;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

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

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

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 300px;
}

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

@media (min-width: 768px) {
  .map-embed iframe { height: 400px; }
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

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

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

.faq-item__question:hover { background: var(--color-grey-100); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
  color: var(--color-orange);
}

.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }

.faq-item__answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-slate-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

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

.cta-band h2 { color: var(--color-white); margin-bottom: var(--space-md); }
.cta-band p { color: var(--color-grey-300); margin-bottom: var(--space-xl); max-width: 560px; margin-left: auto; margin-right: auto; }

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

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

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

@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;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.footer-col ul { list-style: none; }

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

.footer-col a {
  color: var(--color-grey-300);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col 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;
  align-items: center;
  font-size: 0.8125rem;
}

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

@media (min-width: 768px) {
  .mobile-bar { display: none; }
}

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

.mobile-bar a:first-child {
  background: var(--color-green);
}

.mobile-bar a:first-child:hover { background: var(--color-green-hover); color: var(--color-white); }

.mobile-bar a:last-child {
  border-left: 1px solid var(--color-slate-700);
}

.mobile-bar a:last-child:hover { color: var(--color-orange); }

/* Page hero (inner pages) */
.page-hero {
  background: var(--color-slate-900);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.page-hero h1 { color: var(--color-white); margin-bottom: var(--space-sm); }
.page-hero p { color: var(--color-grey-300); max-width: 600px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
  font-size: 0.8125rem;
  margin-bottom: var(--space-md);
  color: var(--color-grey-300);
}

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

/* Catalog */
.search-box {
  position: relative;
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
}

.search-box input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 2px solid var(--color-grey-300);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  transition: border-color var(--transition);
}

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

.search-box svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-slate-500);
  width: 20px;
  height: 20px;
}

.catalog-category {
  margin-bottom: var(--space-2xl);
}

.catalog-category h2 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--color-orange);
  display: inline-block;
}

.catalog-items {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

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

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

.catalog-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-grey-200);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.catalog-item h3 { font-size: 1rem; }
.catalog-item p { font-size: 0.875rem; color: var(--color-slate-500); flex-grow: 1; }

.no-results {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--color-slate-500);
  display: none;
}

.no-results.visible { display: block; }

/* Timeline (sobre) */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline__item {
  padding-left: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  position: relative;
  border-left: 3px solid var(--color-orange);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--color-orange);
  border-radius: 50%;
}

.timeline__year {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-orange);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

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

.form-group { margin-bottom: var(--space-lg); }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 2px solid var(--color-grey-300);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

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

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

/* Privacy */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--color-slate-600);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
