
:root {
  --black: #0f0f10;
  --red: #e10613;
  --red-dark: #b1000f;
  --white: #ffffff;
  --soft: #f6f6f7;
  --text: #222222;
  --muted: #686868;
  --border: #e5e5e5;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: white;
  padding: 10px 14px;
  border: 2px solid var(--red);
  border-radius: 10px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  color: white;
  font-size: 0.95rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 64px;
  width: auto;
  max-width: 320px;
}
nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
}
nav a:hover, .topbar a:hover, .site-footer a:hover { color: #ffb0b6; }

.hero {
  background:
    linear-gradient(135deg, rgba(15,15,16,0.97), rgba(15,15,16,0.9)),
    radial-gradient(circle at top right, rgba(225,6,19,0.35), transparent 35%);
  color: white;
  padding: 82px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.95fr;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffb0b6;
}
.hero h1, .section-heading h2, .seo-box h2 {
  margin: 0 0 16px;
  line-height: 1.13;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.lead {
  font-size: 1.08rem;
  color: #f1f1f1;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: rgba(255,255,255,0.35); color: white; }
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 24px 0 0;
}
.trust-list li::before {
  content: "✓";
  color: #ffb0b6;
  margin-right: 10px;
  font-weight: 700;
}

.hero-card, .card, .why-item, .review, .quote-form, .contact-card, .seo-box, .gallery-item {
  background: white;
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 26px;
}
.hero-logo {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 18px;
}
.hero-card h2, .card h3, .why-item h3, .contact-card h3, .site-footer h4 {
  margin-top: 0;
}
.hero-card-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.hero-card-links a {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--soft);
  font-weight: 700;
}
.hero-card-links a:hover { background: #ececec; }

.section { padding: 78px 0; }
.section-alt { background: var(--soft); }
.section-dark {
  background: var(--black);
  color: white;
  padding: 24px 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat {
  text-align: center;
  padding: 16px;
}
.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}
.section-heading.left {
  text-align: left;
  margin-left: 0;
}
.section-heading p:last-child { color: var(--muted); }

.cards, .why-grid, .reviews-grid, .gallery-grid, .quote-grid, .footer-grid {
  display: grid;
  gap: 22px;
}
.cards {
  grid-template-columns: repeat(4, 1fr);
}
.cards.five {
  grid-template-columns: repeat(5, 1fr);
}
.card {
  padding: 24px;
  border: 1px solid var(--border);
}
.why-grid {
  grid-template-columns: repeat(2, 1fr);
}
.why-item {
  padding: 24px;
}
.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}
.review {
  margin: 0;
  padding: 24px;
  border-left: 5px solid var(--red);
}
.review footer {
  margin-top: 16px;
  font-weight: 700;
  color: var(--muted);
}
.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border: 2px dashed #d6d6d6;
  background: linear-gradient(180deg, rgba(225,6,19,0.06), rgba(15,15,16,0.06)), #fff;
  font-weight: 700;
  color: var(--muted);
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-tags span {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}
.seo-section {
  background: linear-gradient(180deg, #fff 0%, #fff3f4 100%);
}
.seo-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px;
}
.quote-grid {
  grid-template-columns: 1.3fr 0.8fr;
  align-items: start;
}
.quote-form {
  padding: 24px;
}
.quote-form label {
  display: block;
  font-weight: 700;
  margin: 14px 0 8px;
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 12px;
  padding: 14px 14px;
  font: inherit;
}
.quote-form button { margin-top: 20px; }
.contact-card {
  padding: 24px;
  position: sticky;
  top: 100px;
}
.contact-icon {
  width: 84px;
  margin-bottom: 12px;
}
.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--red);
  color: white;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 90;
}
.site-footer {
  background: var(--black);
  color: white;
  padding: 42px 0;
}
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
}
.footer-logo {
  max-width: 320px;
  border-radius: 12px;
}

@media (max-width: 1180px) {
  .cards.five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .hero-grid, .quote-grid, .footer-grid, .cards, .reviews-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .seo-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .nav { display: block; }
  nav { margin-top: 14px; gap: 12px; }
  .hero-grid, .stats, .cards, .cards.five, .why-grid, .reviews-grid, .gallery-grid, .quote-grid, .footer-grid, .trust-list {
    grid-template-columns: 1fr;
  }
  .topbar-inner, .hero-actions { flex-direction: column; align-items: flex-start; }
  .brand-logo { height: 52px; }
  .section { padding: 62px 0; }
  .whatsapp-float {
    left: 16px;
    right: 16px;
    text-align: center;
  }
  .contact-card { position: static; }
}
