:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #5c5c5c;
  --line: #e9e9e9;
  --soft: #f7f7f8;
  --dark: #0f0f10;
  --silver: linear-gradient(135deg, #fbfbfb 0%, #d9d9dc 25%, #fafafa 55%, #bcbcc1 100%);
  --shadow: 0 20px 60px rgba(0,0,0,.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; gap: 14px; align-items: center; min-width: 0; }
.brand-logo {
  width: 64px; height: 64px; object-fit: cover; border-radius: 18px;
  box-shadow: var(--shadow); background: #000;
}
.brand-name, .brand-sub { display: block; }
.brand-name { font-size: 1.05rem; font-weight: 800; }
.brand-sub { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.menu { display: flex; gap: 22px; align-items: center; }
.menu a { color: var(--muted); font-weight: 600; }
.menu a:hover { color: var(--text); }
.menu-toggle {
  display: none; border: 0; background: var(--soft); width: 44px; height: 44px;
  border-radius: 12px; font-size: 1.2rem;
}
.hero {
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at top right, rgba(0,0,0,.05), transparent 25%),
    radial-gradient(circle at left center, rgba(0,0,0,.03), transparent 30%),
    #fff;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center;
}
.eyebrow {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  background: var(--soft); color: var(--muted); font-weight: 700; font-size: .84rem;
  margin-bottom: 16px;
}
.hero h1, .section h2 { margin: 0 0 16px; line-height: 1.05; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); letter-spacing: -0.04em; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 700px; }
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0;
}
.hero-pills span, .repair-item {
  padding: 12px 14px; border-radius: 16px; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0,0,0,.04); font-weight: 600;
}
.hero-actions, .location-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 18px; border-radius: 14px; font-weight: 700; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #111; color: #fff; }
.btn-secondary { background: var(--soft); color: var(--text); }
.btn-light { background: #fff; color: var(--text); border: 1px solid var(--line); }
.quick-info {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 24px;
}
.quick-info div {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 15px 16px;
}
.hero-card {
  background: var(--dark); color: #fff; border-radius: 32px; padding: 32px; box-shadow: var(--shadow);
}
.hero-logo {
  width: 100%; max-width: 370px; margin: 0 auto 26px; border-radius: 26px; background: #000;
}
.hero-card-content h2 { font-size: 1.55rem; margin: 0 0 10px; }
.hero-card-content p { margin: 0; color: rgba(255,255,255,.74); }
.section { padding: 86px 0; }
.section-alt { background: var(--soft); }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.03em; }
.cards-grid, .benefits-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px;
}
.service-card, .benefit-card, .location-card, .hours-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.service-card h3, .benefit-card h3 { margin: 0; font-size: 1.15rem; line-height: 1.4; }
.repair-layout, .location-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch;
}
.repair-copy {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 34px;
}
.repair-copy p { color: var(--muted); margin-bottom: 22px; }
.repair-panel {
  display: grid; gap: 14px; background: linear-gradient(180deg, #fff, #f2f2f4);
  border: 1px solid var(--line); border-radius: 28px; padding: 28px;
}
.payment-strip {
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  background: #111; color: #fff; border-radius: 28px; padding: 30px 34px;
}
.payment-strip p { max-width: 360px; color: rgba(255,255,255,.75); }
.footer {
  background: #0f0f10; color: #fff; padding: 42px 0 90px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px;
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-logo { width: 72px; border-radius: 16px; background: #000; }
.footer h3, .footer h4, .footer p { margin: 0 0 10px; }
.footer p, .footer a { color: rgba(255,255,255,.75); }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; background: #111; color: #fff;
  padding: 15px 18px; border-radius: 999px; font-weight: 800; box-shadow: var(--shadow);
}
.reveal {
  opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
@media (max-width: 900px) {
  .hero-grid, .repair-layout, .location-layout, .footer-grid,
  .cards-grid, .benefits-grid, .quick-info {
    grid-template-columns: 1fr;
  }
  .payment-strip { flex-direction: column; align-items: flex-start; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .menu {
    position: absolute; top: 88px; left: 16px; right: 16px; background: #fff;
    border: 1px solid var(--line); border-radius: 18px; padding: 14px;
    display: none; flex-direction: column; align-items: flex-start; box-shadow: var(--shadow);
  }
  .menu.show { display: flex; }
}
@media (max-width: 640px) {
  .hero { padding-top: 42px; }
  .hero h1 { font-size: 2.1rem; }
  .section { padding: 68px 0; }
  .hero-card, .repair-copy, .repair-panel, .payment-strip, .service-card, .benefit-card, .location-card, .hours-card {
    border-radius: 22px;
  }
}
