:root {
  color-scheme: dark;
  --bg: #061017;
  --bg-soft: #0b1821;
  --panel: rgba(10, 24, 33, .82);
  --line: rgba(142, 183, 176, .19);
  --text: #f4f8f6;
  --muted: #c0cbc9;
  --muted-2: #899794;
  --green: #39b54a;
  --green-dark: #137134;
  --green-soft: rgba(57, 181, 74, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1280px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 80% 4%, rgba(57, 181, 74, .16), transparent 28rem),
    radial-gradient(circle at 0% 12%, rgba(22, 98, 128, .18), transparent 32rem),
    var(--bg);
  color: var(--text);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }
svg { width: 1.2em; height: 1.2em; fill: currentColor; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(5, 14, 20, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  box-shadow: 0 10px 30px rgba(57, 181, 74, .26);
}
.brand-mark svg { width: 32px; height: 32px; color: #03140a; }
.brand strong, .brand em { display: block; line-height: 1.05; font-style: normal; }
.brand em { color: var(--green); }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 15px;
  font-weight: 700;
  color: #e4ece9;
}
.nav a { position: relative; padding-block: 8px; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform .2s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-stack {
  display: grid;
  gap: 2px;
  padding: 10px 17px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(34, 130, 59, .95), rgba(11, 97, 46, .95));
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.2;
  box-shadow: 0 14px 32px rgba(20, 110, 49, .28);
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  cursor: pointer;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}
.mobile-menu {
  display: none;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: rgba(7, 18, 25, .98);
  box-shadow: var(--shadow);
}
.mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #eaf1ee;
  font-weight: 800;
}
.mobile-menu a:hover { background: rgba(255, 255, 255, .06); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 44px 0 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 14, 20, .96), rgba(5, 14, 20, .84) 44%, rgba(5, 14, 20, .42)),
    radial-gradient(circle at 74% 43%, rgba(57, 181, 74, .20), transparent 24rem);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .64fr) minmax(660px, 1.36fr);
  align-items: center;
  gap: clamp(24px, 3.6vw, 48px);
}
.hero-copy { min-width: 0; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 600px;
  margin-bottom: 18px;
  font-size: clamp(36px, 4.15vw, 58px);
  line-height: 1.06;
  letter-spacing: .01em;
  font-weight: 900;
}
h1 span {
  display: block;
  color: #dfe9e5;
  font-weight: 800;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: .01em;
  font-weight: 900;
}
h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
}
.hero-text {
  max-width: 590px;
  margin-bottom: 26px;
  color: #e3ebe8;
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 600;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 11px;
  margin-bottom: 28px;
}
.hero-features span {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 76px;
  padding: 13px 14px;
  border: 1px solid rgba(57, 181, 74, .34);
  border-radius: 18px;
  background: rgba(5, 15, 22, .55);
  color: #edf5f1;
  font-weight: 800;
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}
.hero-features b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(57, 181, 74, .13);
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 18px 38px rgba(31, 143, 57, .32);
}
.btn-primary:hover { box-shadow: 0 20px 42px rgba(31, 143, 57, .42); }
.btn-ghost {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .09); }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  color: #e9f0ed;
  background: rgba(255,255,255,.035);
  font-weight: 800;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(520px, 50vw, 760px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}
.hero-visual::before { content: none; }
.hero-visual picture {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hero-visual img {
  width: min(100%, 760px);
  max-height: 740px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(-34px);
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, .42));
}


.section { padding: 76px 0; }
.section-head { max-width: 780px; margin-bottom: 34px; }
.centered { text-align: center; margin-inline: auto; }
.section-head p, .split p, .contact-section p, .faq p { color: var(--muted); }
.cards { display: grid; gap: 16px; }
.service-grid { grid-template-columns: repeat(6, 1fr); }
.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(12, 29, 39, .82), rgba(7, 18, 25, .78));
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 181, 74, .55);
  background: linear-gradient(180deg, rgba(15, 36, 48, .92), rgba(7, 18, 25, .86));
}
.service-card { grid-column: span 2; min-height: 230px; }
.service-card p { color: var(--muted); }
.card-icon { width: 58px; height: 58px; margin-bottom: 18px; color: var(--green); }

.split {
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: linear-gradient(180deg, rgba(7, 18, 25, .72), rgba(4, 13, 19, .72));
}
.split-grid { display: grid; grid-template-columns: .95fr 1.2fr; gap: 36px; align-items: stretch; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
  color: #e8f0ed;
  font-size: 18px;
  font-weight: 700;
}
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(57, 181, 74, .75);
  border-radius: 50%;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}
.callout-card {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(57, 181, 74, .52);
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(10, 27, 37, .95), rgba(11, 36, 32, .82)),
    radial-gradient(circle at 100% 0, rgba(57, 181, 74, .22), transparent 20rem);
  box-shadow: var(--shadow);
}
.callout-phone {
  display: inline-grid;
  gap: 4px;
  width: fit-content;
  padding: 16px 22px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.1;
}

.quick-info {
  padding: 32px 0;
  background: rgba(8, 20, 27, .74);
}
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quick-item {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.quick-item strong { font-size: 20px; font-weight: 900; }
.quick-item span { color: var(--muted); }

.area-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.area-list span {
  min-width: 138px;
  padding: 12px 20px;
  border: 1px solid rgba(57, 181, 74, .36);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  text-align: center;
  color: #ecf3f0;
  font-weight: 800;
}
.area-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
}
.area-note svg { color: var(--green); width: 26px; height: 26px; }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review-card p { color: #e6eeee; }
.review-card span { color: var(--muted-2); font-weight: 800; }
.stars { margin-bottom: 12px; color: var(--green); letter-spacing: .12em; }

.faq { background: linear-gradient(180deg, rgba(7, 17, 24, .52), transparent); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 16px; background: rgba(10, 24, 33, .74); overflow: hidden; }
summary { cursor: pointer; padding: 18px 20px; color: #fff; font-weight: 900; }
details p { padding: 0 20px 20px; margin: 0; }

.contact-section { padding-bottom: 88px; }
.contact-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 36px; align-items: stretch; }
.contact-links { display: grid; gap: 12px; margin-top: 26px; }
.contact-links a { display: flex; align-items: center; gap: 12px; width: fit-content; color: #fff; font-size: 20px; font-weight: 900; }
.contact-links svg { color: var(--green); }
.contact-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(57, 181, 74, .42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(13, 31, 42, .96), rgba(5, 19, 27, .9)),
    radial-gradient(circle at 0 100%, rgba(57, 181, 74, .22), transparent 16rem);
  box-shadow: var(--shadow);
}
.contact-card .btn { width: fit-content; margin-top: 6px; }

.site-footer { padding: 30px 0 34px; border-top: 1px solid rgba(255,255,255,.08); background: #040c11; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); }
.footer-grid .brand { color: #fff; }
.footer-grid a:last-child { color: #fff; font-weight: 900; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(5, 14, 20, .92);
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
}
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 900;
}
.mobile-cta a + a { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
:focus-visible { outline: 3px solid rgba(57, 181, 74, .7); outline-offset: 3px; }

@media (max-width: 1180px) {
  .nav { display: none; }
  .menu-button { display: block; }
  .mobile-menu.is-open { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 860px; }
  .hero-visual { max-width: 860px; margin-inline: auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { grid-column: span 1; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { height: var(--header-h); }
  .brand { gap: 9px; font-size: 14px; letter-spacing: .03em; }
  .brand-mark { width: 42px; height: 42px; border-radius: 14px; }
  .brand-mark svg { width: 28px; height: 28px; }
  .phone-stack { display: none; }
  .hero { min-height: auto; padding: 34px 0 40px; }
  .hero-grid { gap: 26px; }
  h1 { font-size: clamp(31px, 8.8vw, 43px); line-height: 1.06; }
  h2 { font-size: clamp(26px, 7.4vw, 36px); }
  h3 { font-size: 20px; }
  .hero-text { font-size: 18px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-features span { min-height: 88px; padding: 14px 12px; font-size: 14px; }
  .cta-row { display: grid; }
  .btn { width: 100%; min-height: 54px; padding-inline: 18px; }
  .social-link { width: 100%; justify-content: center; }
  .hero-visual { min-height: 380px; padding: 0; }
  .hero-visual img { width: min(100%, 410px); max-height: 450px; height: auto; transform: translateY(-20px); }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 24px; }
  .service-grid, .review-grid, .split-grid, .quick-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .card { padding: 22px; }
  .service-card { min-height: auto; }
  .callout-phone { width: 100%; font-size: 24px; }
  .area-list { gap: 10px; }
  .area-list span { flex: 1 1 142px; min-width: 0; }
  .area-note { align-items: flex-start; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 88px; }
}

@media (max-width: 420px) {
  .hero-features { grid-template-columns: 1fr; }
  .mobile-menu { width: calc(100% - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
