:root {
  --red: #d71920;
  --red-dark: #a90f15;
  --green: #17a34a;
  --green-dark: #12833c;
  --black: #111111;
  --ink: #202124;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f5f5f7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.12);
  --soft-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.top-strip {
  background: var(--black);
  color: var(--white);
  font-size: 14px;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 20px;
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-weight: 900;
}

.brand-name {
  display: block;
  color: var(--black);
  font-size: 18px;
  line-height: 1.15;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 14px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover {
  background: var(--soft);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--red);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.language-switcher a {
  min-width: 42px;
  border: 1px solid transparent;
  padding: 7px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.language-switcher a.is-active {
  border-color: rgba(215, 25, 32, 0.2);
  background: rgba(215, 25, 32, 0.08);
  color: var(--red);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  border-radius: 6px;
  padding: 9px 12px;
  font-weight: 800;
}

.hero {
  background:
    linear-gradient(110deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.78)),
    radial-gradient(circle at 70% 35%, rgba(215, 25, 32, 0.34), transparent 34%),
    var(--black);
  color: var(--white);
  padding: 74px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  border-left: 4px solid var(--red);
  padding-left: 12px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  line-height: 1.12;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
  margin-top: 18px;
  max-width: 850px;
}

.hero p {
  color: #f3f4f6;
  font-size: 19px;
  max-width: 660px;
  margin: 22px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(215, 25, 32, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--line);
}

.hero-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 4px var(--white), 0 0 0 1px var(--red);
}

.section {
  padding: 72px 0;
}

.proof-section {
  background: var(--soft);
  padding: 56px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 42px;
  align-items: center;
}

.proof-copy h2 {
  max-width: 560px;
  font-size: clamp(30px, 4vw, 48px);
}

.proof-copy p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.proof-image {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--black);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.16);
}

.proof-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.section-muted {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 14px 0 0;
}

.service-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.card,
.branch-card,
.legal-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.card h3,
.branch-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p,
.branch-card p {
  color: var(--muted);
  margin: 0;
}

.repair-flow {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  counter-increment: step;
  border-top: 4px solid var(--red);
  background: var(--white);
  padding: 22px;
  border-radius: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.step::before {
  content: "0" counter(step);
  display: block;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 8px;
}

.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
}

.page-hero p {
  color: #e5e7eb;
  max-width: 780px;
  margin: 14px 0 0;
  font-size: 18px;
}

.legal-content {
  max-width: 900px;
}

.legal-box {
  margin-bottom: 18px;
}

.legal-box h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.legal-box ul {
  margin: 0;
  padding-left: 22px;
}

.legal-box li {
  margin: 8px 0;
}

.contact-service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 58px;
  padding: 34px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 247, 0.92)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.contact-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-service-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
}

.contact-service-card p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-service-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.service-meta {
  display: grid;
  gap: 2px;
  text-align: right;
  color: var(--muted);
  font-size: 14px;
}

.service-meta strong {
  color: var(--black);
  font-size: 18px;
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(23, 163, 74, 0.18);
}

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

.branch-section {
  margin-top: 8px;
}

.branch-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.branch-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.branch-card:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 32, 0.18);
  box-shadow: 0 24px 52px rgba(17, 17, 17, 0.12);
}

.branch-card h3 {
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.branch-address {
  max-width: 100%;
  color: #3f4652;
  font-size: 16px;
  line-height: 1.65;
}

.branch-hours {
  margin-top: 14px !important;
  color: var(--black) !important;
  font-weight: 800;
}

.branch-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.branch-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.branch-btn:hover {
  transform: translateY(-1px);
}

.branch-btn-whatsapp {
  background: var(--green);
  box-shadow: 0 12px 22px rgba(23, 163, 74, 0.16);
}

.branch-btn-whatsapp:hover {
  background: var(--green-dark);
}

.branch-btn-map {
  background: var(--red);
  box-shadow: 0 12px 22px rgba(215, 25, 32, 0.16);
}

.branch-btn-map:hover {
  background: var(--red-dark);
}

.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 44px 0;
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 38px);
}

.cta-band p {
  margin: 8px 0 0;
  color: #fff5f5;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 42px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.footer-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.footer-text {
  color: #e5e7eb;
  margin: 4px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8bdc7;
  font-size: 14px;
}

@media (max-width: 840px) {
  .top-strip .container,
  .cta-band .container,
  .footer-grid {
    display: block;
  }

  .nav {
    min-height: 68px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 18px;
  }

  .language-switcher {
    margin: 10px 0 0;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .language-switcher a {
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-grid,
  .info-grid,
  .branch-grid,
  .repair-flow {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 54px 0 44px;
  }

  .section {
    padding: 52px 0;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .contact-service-card {
    grid-template-columns: 1fr;
    padding: 26px;
    border-radius: 14px;
  }

  .contact-service-actions {
    justify-items: stretch;
  }

  .service-meta {
    text-align: left;
  }

  .branch-grid {
    gap: 16px;
  }

  .branch-card {
    min-height: auto;
    padding: 24px;
    border-radius: 14px;
  }

  .branch-actions {
    grid-template-columns: 1fr;
  }
}
