:root {
  --bg: #080a0d;
  --card: #11151b;
  --text: #f5f7fa;
  --muted: #aeb8c5;
  --accent: #13f287;
  --accent-2: #dbff3d;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.hero {
  min-height: 92vh;
  background:
    radial-gradient(circle at 70% 30%, rgba(19,242,135,.22), transparent 28%),
    linear-gradient(rgba(8,10,13,.5), rgba(8,10,13,.92)),
    url('https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1800&q=80') center/cover;
  padding: 28px 6vw 70px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
}
.nav-links { display: flex; gap: 22px; color: var(--muted); font-weight: 700; }
.nav-links a:hover { color: var(--accent); }

.hero-content {
  max-width: 940px;
  padding-top: 17vh;
}
.tag, .eyebrow, .section-title p {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
}
h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: .95;
  letter-spacing: 1px;
}
h1 { font-size: clamp(58px, 9vw, 128px); margin: 18px 0; }
h2 { font-size: clamp(42px, 6vw, 78px); margin-top: 10px; }
.subtext { max-width: 630px; color: var(--muted); font-size: 19px; }

.hero-buttons, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
}
.primary { background: var(--accent); color: #061009; border-color: var(--accent); }
.secondary { background: rgba(255,255,255,.08); }

main { padding: 0 6vw; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -45px;
}
.stats div, .work-card, .service, .price-card, .about, .contact {
  background: rgba(17,21,27,.9);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  backdrop-filter: blur(12px);
}
.stats span { font-family: 'Bebas Neue'; font-size: 38px; color: var(--accent-2); }
.stats p, .work-card p, .service p, .price-card li, .about p, .contact p { color: var(--muted); }

.section { padding: 92px 0 0; }
.section-title { max-width: 720px; margin-bottom: 28px; }
.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
.work-card.big { grid-row: span 2; }
.placeholder {
  height: 280px;
  border-radius: 20px;
  border: 1px dashed rgba(255,255,255,.32);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.58);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(19,242,135,.16), rgba(219,255,61,.08));
}
.work-card.big .placeholder { height: 520px; }
.work-card h3, .service h3, .price-card h3 { font-size: 24px; margin-bottom: 8px; }

.dark-card { background: #0c1015; border-radius: 34px; padding: 52px; border: 1px solid var(--line); }
.service-grid, .price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service { background: #131820; }
.price-card { min-height: 260px; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 40px rgba(19,242,135,.12); }
.price { font-family: 'Bebas Neue'; font-size: 50px; color: var(--accent-2); margin: 12px 0; }
ul { list-style: none; display: grid; gap: 10px; }
li::before { content: '✓ '; color: var(--accent); font-weight: 900; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.contact { text-align: center; margin-bottom: 80px; }
.contact-actions { justify-content: center; }
footer { border-top: 1px solid var(--line); color: var(--muted); text-align: center; padding: 28px 6vw; }

@media (max-width: 850px) {
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .stats, .work-grid, .service-grid, .price-grid, .about { grid-template-columns: 1fr; }
  .work-card.big .placeholder, .placeholder { height: 300px; }
  .dark-card { padding: 28px; }
}
