:root {
  --bg: #0b0f17;
  --panel: #121929;
  --panel-2: #171f31;
  --line: rgba(255,255,255,.09);
  --text: #eef3ff;
  --muted: #b2bfd6;
  --accent: #ffb321;
  --accent-2: #20d76f;
  --shadow: 0 30px 60px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(180deg, #09101a 0%, #0e1522 100%);
  color: var(--text);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9, 13, 21, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #ff8f00);
  color: #111; font-weight: 900;
}
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); font-size: .78rem; }
nav { display: flex; gap: 22px; color: var(--muted); font-size: .95rem; }
nav a:hover { color: white; }
.hero {
  position: relative;
  padding: 84px 0 48px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(255,179,33,.18), transparent 28%), radial-gradient(circle at right center, rgba(32,215,111,.12), transparent 24%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}
.eyebrow, .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,179,33,.25);
  background: rgba(255,179,33,.08);
  color: #ffd382;
  padding: 8px 12px; border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .03em;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: .98; margin: 18px 0 16px; max-width: 12ch;
}
.hero p { color: var(--muted); font-size: 1.08rem; line-height: 1.7; max-width: 56ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 16px; font-weight: 800;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), #ff8f00); color: #111; }
.btn-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.03); color: white; }
.hero-points {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 12px; color: #e4eaf7;
}
.hero-points li {
  position: relative; padding-left: 28px;
}
.hero-points li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; color: var(--accent-2); font-weight: 900;
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.hero-card img { border-radius: 22px; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.local-seo, .services, .portfolio, .proof, .company, .contact { padding: 34px 0 26px; }
.local-grid, .company-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}
.local-seo h2, .section-head h2, .company h2, .contact h2 { font-size: clamp(1.9rem, 3.2vw, 3rem); margin: 16px 0 12px; }
.local-seo p, .section-head p, .company p, .contact p { color: var(--muted); line-height: 1.75; }
.location-card, .service-card, .proof-card, .contact-box {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.location-card { padding: 24px; }
.location-card h3 { margin: 0 0 8px; }
.location-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.text-link { color: #ffd382; font-weight: 700; }
.section-head { max-width: 760px; margin-bottom: 24px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card { padding: 24px; }
.service-card h3 { margin: 0 0 10px; font-size: 1.12rem; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.gallery {
  columns: 3 280px;
  column-gap: 16px;
}
.gallery figure {
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0f1420;
}
.gallery img { width: 100%; height: auto; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.proof-card { padding: 22px; }
.proof-card strong { display: block; margin-bottom: 8px; font-size: 1rem; }
.proof-card p { margin: 0; color: var(--muted); }
.contact-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  padding: 30px;
}
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: flex-start; }
.site-footer {
  padding: 24px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  background: linear-gradient(135deg, #25d366, #1eb85a);
  color: white; font-weight: 800; padding: 14px 18px; border-radius: 999px;
  box-shadow: 0 20px 40px rgba(37, 211, 102, .35);
}
@media (max-width: 980px) {
  nav { display: none; }
  .hero-grid, .local-grid, .company-grid, .contact-box, .proof-grid, .service-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-card { order: -1; }
}
@media (max-width: 640px) {
  .btn { width: 100%; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .container { width: min(1160px, calc(100% - 22px)); }
  .location-actions { flex-direction: column; gap: 10px; }
}
