:root {
  --bg-dark: #071b12;
  --bg-dark-2: #0d2a1c;
  --bg-soft: #123527;
  --green: #1fae5e;
  --green-2: #38d378;
  --green-light: #94efb8;
  --light: #f4faf6;
  --muted: #a9bcb2;
  --paper: #f7f9f7;
  --white: #ffffff;
  --ink: #0e1f17;
  --ink-muted: #5a6b62;
  --border: #e2e9e5;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand, .stats-grid strong { font-family: "Sora", sans-serif; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .13em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--ink-muted); font-size: 16.5px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-primary { background: linear-gradient(135deg, var(--green-2), var(--green)); color: #04170d; box-shadow: 0 12px 28px -12px rgba(31,174,94,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(31,174,94,.8); }
.btn-dark { background: rgba(255,255,255,.07); color: var(--light); border: 1px solid rgba(255,255,255,.16); }
.btn-dark:hover { background: rgba(255,255,255,.13); transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 10px 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,27,18,.94);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}
.nav-wrap { max-width: 1200px; margin: 0 auto; padding: 13px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; color: var(--light); }
.brand-logo {
  width: clamp(176px, 18vw, 226px);
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.34));
}
.links { display: flex; gap: 34px; }
.links a { color: var(--muted); font-weight: 700; font-size: 14px; transition: color .15s ease; }
.links a:hover { color: var(--light); }
.header-right { display: flex; align-items: center; gap: 14px; }
.burger, .mobile-close { display: none; background: none; border: 0; color: var(--light); cursor: pointer; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--bg-dark);
  transform: translateX(100%);
  transition: transform .25s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { color: var(--light); font-size: 22px; font-weight: 800; }
.mobile-close { position: absolute; top: 24px; right: 24px; display: block; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 86px;
  color: var(--light);
  background:
    radial-gradient(900px 500px at 12% -5%, #16442d 0%, rgba(22,68,45,0) 62%),
    linear-gradient(135deg, var(--bg-dark), #06150f);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 20%, black, transparent);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(55,203,119,.36);
  border-radius: 999px;
  background: rgba(31,174,94,.12);
  color: var(--green-light);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 4px rgba(55,203,119,.22); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .42; } }
.hero h1 { max-width: 720px; font-size: clamp(40px, 5.8vw, 64px); line-height: 1.02; margin-bottom: 20px; }
.hero h1 span { color: var(--green-2); }
.lead { color: var(--muted); max-width: 560px; font-size: 18px; margin-bottom: 28px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; max-width: 560px; margin-bottom: 32px; }
.checklist li { color: #e2ece6; font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.checklist li::before { content: "✓"; width: 20px; height: 20px; border-radius: 999px; display: grid; place-items: center; background: rgba(55,203,119,.16); color: var(--green-2); font-weight: 900; font-size: 12px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.rating-row { color: var(--muted); margin-top: 22px; font-size: 14px; }
.rating-row span, .avg-rating { color: #f5b942; letter-spacing: 1px; }
.hero-card { overflow: hidden; border-radius: 22px; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 32px 70px -24px rgba(0,0,0,.7); background: var(--bg-soft); }
.hero-visual { position: relative; }
.hero-card img { width: 100%; height: 420px; object-fit: cover; }
.float-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 44px -16px rgba(0,0,0,.35);
}
.ok-icon { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(31,174,94,.12); color: var(--green); font-weight: 900; flex: 0 0 auto; }
.float-badge strong { display: block; color: var(--ink); font-size: 14.5px; }
.float-badge span { color: var(--ink-muted); font-size: 12.5px; }

.stats-bar { background: linear-gradient(120deg, var(--green), #189654); padding: 42px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 18px; }
.stats-grid strong { display: block; color: #04170d; font-size: clamp(28px,4vw,40px); }
.stats-grid span { color: #08331b; font-size: 13.5px; font-weight: 800; }

.services, .team, .differentials, .faq { padding: 96px 0; }
.team { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -24px rgba(14,31,23,.42); }
.service-media { position: relative; height: 156px; background: var(--bg-soft); overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,27,18,.12), rgba(7,27,18,.76)); }
.service-tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--green); color: #04170d; border-radius: 999px; padding: 4px 10px; font-size: 11.5px; font-weight: 900; }
.service-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 18px; margin-bottom: 8px; }
.service-body p { color: var(--ink-muted); font-size: 14px; margin-bottom: 14px; }
.service-body ul { margin-bottom: 18px; }
.service-body li { font-size: 13.5px; color: #39473f; margin-bottom: 7px; display: flex; gap: 8px; }
.service-body li::before { content: "✓"; color: var(--green); font-weight: 900; }
.service-cta { margin-top: auto; display: inline-flex; justify-content: center; background: var(--green); color: #04170d; border-radius: 999px; padding: 11px 18px; font-size: 14px; font-weight: 900; }

.process, .testimonials, .coverage, .urgent { background: var(--bg-dark); color: var(--light); padding: 96px 0; }
.process .section-head p, .testimonials .section-head p, .coverage .section-head p, .urgent p { color: var(--muted); }
.process .eyebrow, .testimonials .eyebrow, .coverage .eyebrow { color: var(--green-light); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { background: var(--bg-soft); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 22px; }
.step span { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #04170d; display: grid; place-items: center; font-weight: 900; margin-bottom: 16px; }
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.team-item { height: 235px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 30px -18px rgba(14,31,23,.35); }
.team-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.team-item:hover img { transform: scale(1.06); }
.diff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 44px; }
.diff-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; }
.diff-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(31,174,94,.1); display: grid; place-items: center; color: var(--green); margin-bottom: 16px; font-weight: 900; }
.diff-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.diff-card p { color: var(--ink-muted); font-size: 13.5px; }
.center-cta { text-align: center; }
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.t-card { background: var(--bg-soft); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 24px; }
.t-card .stars { color: #f5b942; display: block; margin-bottom: 12px; }
.quote { color: #dce8e1; min-height: 88px; font-size: 14.5px; margin-bottom: 20px; }
.t-person { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #04170d; display: grid; place-items: center; font-weight: 900; }
.t-person strong { display: block; font-size: 14px; }
.t-person span { color: var(--muted); font-size: 12.5px; }
.coverage { border-top: 1px solid rgba(255,255,255,.07); }
.cov-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 40px; }
.cov-card { background: var(--bg-soft); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 20px; }
.cov-card strong { display: block; margin-bottom: 5px; }
.cov-card span { color: var(--muted); font-size: 12.5px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 19px 22px; border: 0; background: transparent; color: var(--ink); font: inherit; font-weight: 800; cursor: pointer; text-align: left; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--ink-muted); font-size: 14.5px; }
.urgent { text-align: center; padding: 82px 0 64px; background: linear-gradient(140deg, #0d2a1c, var(--bg-dark)); }
.urgent-badge { display: inline-flex; padding: 8px 16px; border-radius: 999px; background: rgba(217,84,60,.14); border: 1px solid rgba(217,84,60,.36); color: #f3a58c; font-size: 13px; font-weight: 900; margin-bottom: 20px; }
.urgent h2 { font-size: clamp(28px,4vw,40px); margin-bottom: 14px; }
.urgent p { max-width: 580px; margin: 0 auto 28px; }
.urgent .hero-ctas { justify-content: center; }
.fineprint { margin-top: 18px !important; font-size: 12.5px; }
footer { background: var(--bg-dark); color: var(--muted); padding: 52px 0 28px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand { margin-bottom: 14px; }
.footer-brand .brand-logo { width: 216px; height: 72px; }
footer h2 { color: var(--light); font-size: 14px; margin-bottom: 14px; }
footer p, footer li { font-size: 13.5px; margin-bottom: 9px; }
footer a:hover { color: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 34px; padding-top: 24px; font-size: 12.5px; }
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 200; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #04170d; box-shadow: 0 12px 28px -8px rgba(31,174,94,.65); animation: float 2.6s ease-in-out infinite; }
.wa-float svg { width: 28px; height: 28px; }
@keyframes float { 50% { transform: translateY(-6px); } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .links { display: none; }
  .burger { display: block; }
  .service-grid, .team-grid, .t-grid { grid-template-columns: repeat(2,1fr); }
  .diff-grid, .cov-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container, .nav-wrap { padding-left: 18px; padding-right: 18px; }
  .brand-logo { width: 168px; height: 58px; }
  .header-right .btn { display: none; }
  .hero { padding-top: 52px; }
  .checklist, .stats-grid, .service-grid, .team-grid, .t-grid, .diff-grid, .cov-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .hero-card img { height: 320px; }
  .float-badge { left: 12px; right: 12px; }
  .services, .team, .differentials, .faq, .process, .testimonials, .coverage { padding: 72px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
