:root {
  --bg: #0f1411;
  --bg-soft: #172019;
  --text: #f2f5f1;
  --muted: #b8c4b8;
  --line: #2a352c;
  --brand: #a4d65e;
  --brand-dark: #81b342;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
.container { width: min(1100px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(15,20,17,.75);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: .95rem 0; }
.logo { font-weight: 800; letter-spacing: .3px; }
.logo span { color: var(--brand); }
nav { display: flex; gap: 1rem; align-items: center; }
nav a { color: var(--text); text-decoration: none; font-weight: 600; }

.hero { padding: 5rem 0 4rem; background: radial-gradient(circle at 80% 0%, #273826 0%, #0f1411 50%); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.tag { color: var(--brand); font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: .9px; }
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.1; margin: .4rem 0 1rem; }
.lead { color: var(--muted); max-width: 58ch; }
.cta-row { display: flex; gap: .8rem; margin: 1.2rem 0; flex-wrap: wrap; }
.trust { list-style: none; padding: 0; color: var(--muted); }
.trust li { margin: .4rem 0; }

.hero-card {
  background: linear-gradient(180deg, #1d2a1f, #151f17);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 16px 35px rgba(0,0,0,.25);
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #11220b;
  padding: .72rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-sm { padding: .5rem .8rem; }

.section { padding: 4rem 0; border-top: 1px solid var(--line); }
.section h2 { font-size: clamp(1.4rem, 2.8vw, 2.3rem); margin-top: 0; }
.cards, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.card, .price-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}
.muted { background: #121913; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.split ul { margin: 0; padding-left: 1rem; color: var(--muted); }

.price { font-size: 1.9rem; font-weight: 800; margin: .2rem 0 .5rem; }
.price span { font-size: .95rem; color: var(--muted); }
.featured { outline: 2px solid var(--brand); }

.contact-form {
  display: grid;
  gap: .7rem;
  max-width: 700px;
}
input, textarea {
  width: 100%;
  background: #0f1411;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: .75rem .85rem;
  font: inherit;
}
.site-footer { border-top: 1px solid var(--line); padding: 1rem 0 2.5rem; color: var(--muted); }

.webrgv-badge {
  position: fixed;
  right: 14px;
  bottom: 14px;
  background: rgba(164,214,94,.14);
  border: 1px solid rgba(164,214,94,.55);
  color: #d9f5a8;
  border-radius: 999px;
  text-decoration: none;
  padding: .48rem .75rem;
  font-size: .82rem;
  backdrop-filter: blur(6px);
  z-index: 40;
  opacity: 0;
  transform: translateY(8px);
  animation: badgeIn .55s ease forwards .4s;
  transition: transform .2s ease, background .2s ease;
}
.webrgv-badge:hover { transform: translateY(-2px); background: rgba(164,214,94,.24); }
@keyframes badgeIn { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero-grid, .cards, .split, .pricing-grid { grid-template-columns: 1fr; }
  nav a:not(.btn) { display: none; }
}
