:root {
  --black: #050505;
  --black-soft: #101010;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --green: #39ff14;
  --green-dark: #118800;
  --gray: #555;
  --muted: #666;
  --line-dark: rgba(255,255,255,0.16);
  --line-light: rgba(0,0,0,0.12);
  --shadow: 0 22px 70px rgba(0,0,0,0.22);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

.top-shell {
  min-height: 58vh;
  background:
    radial-gradient(circle at 80% 25%, rgba(57,255,20,0.16), transparent 26rem),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.07), transparent 22rem),
    linear-gradient(180deg, #000 0%, #101010 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.top-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 96px;
  background: var(--off-white);
  clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
}

.site-nav,
.hero,
.section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-nav {
  position: relative;
  z-index: 3;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green);
  color: var(--black);
  font-weight: 950;
  font-size: 1.3rem;
  border: 2px solid var(--white);
  box-shadow: 0 0 22px rgba(57,255,20,0.45);
}

.brand strong {
  display: block;
  color: var(--green);
  font-size: 1.18rem;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 0.45px var(--white);
  text-shadow:
    1px 1px 0 var(--white),
    -1px 1px 0 var(--white),
    1px -1px 0 var(--white),
    -1px -1px 0 var(--white);
}

.brand small {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255,255,255,0.04);
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--black);
  background: var(--green);
  border-color: var(--green);
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(58vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.48fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0 150px;
}

.kicker,
.green-label {
  color: var(--green-dark);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 950;
}

.hero .kicker {
  color: var(--green);
}

.outlined-title {
  margin: 12px 0 0;
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
  color: var(--green);
  -webkit-text-stroke: 2px var(--white);
  text-shadow:
    3px 3px 0 var(--white),
    -2px 2px 0 var(--white),
    2px -2px 0 var(--white),
    -2px -2px 0 var(--white),
    0 0 32px rgba(57,255,20,0.35);
}

.outlined-title span {
  display: block;
  margin-top: 10px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  -webkit-text-stroke: 0;
  text-shadow: none;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 1.16rem;
  line-height: 1.7;
  margin: 28px 0 0;
}

.hero-actions,
.button-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  font: inherit;
}

.button:hover {
  transform: translateY(-2px);
}

.button-green {
  background: var(--green);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 0 28px rgba(57,255,20,0.28);
}

.button-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--black);
}

.button-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.full {
  width: 100%;
}

.card-panel {
  border: 1px solid var(--line-dark);
  border-radius: 34px;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.mini-card {
  min-height: 430px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, var(--black) 0 50%, var(--white) 50% 100%);
  color: var(--black);
  padding: 22px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--white);
}

.mini-card-top {
  color: var(--white);
  display: flex;
  gap: 12px;
  align-items: center;
}

.mini-logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--white);
  font-weight: 950;
  font-size: 1.6rem;
}

.mini-card-top strong {
  display: block;
  color: var(--green);
  -webkit-text-stroke: 0.5px var(--white);
  text-shadow: 1px 1px 0 var(--white);
  font-size: 1.35rem;
}

.mini-card-top small {
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

.tool-cross {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 260px;
  height: 260px;
  top: 52px;
}

.tool-a,
.tool-b {
  position: absolute;
  display: block;
  width: 230px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  border: 2px solid var(--white);
  box-shadow: 0 0 22px rgba(57,255,20,0.38);
}

.tool-a {
  rotate: -35deg;
  top: 132px;
  left: 14px;
}

.tool-b {
  rotate: 42deg;
  top: 132px;
  left: 18px;
}

.bolt {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--green);
  border: 2px solid var(--white);
}

.b1 { left: 20px; top: 60px; }
.b2 { right: 20px; bottom: 35px; }

.mini-card p {
  position: absolute;
  bottom: 24px;
  left: 22px;
  right: 22px;
  margin: 0;
  color: var(--gray);
  font-weight: 700;
  line-height: 1.55;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  padding: 9px 12px;
  background: rgba(255,255,255,0.04);
  font-weight: 800;
}

.white-half {
  background: var(--off-white);
  color: var(--black);
  margin-top: -2px;
}

.section {
  padding: 78px 0;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
}

.intro-band h2,
.section-heading h2,
.work-strip h2,
.area-card h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.intro-band p,
.section-heading p,
.service-card p,
.result-card p,
.quote-form p,
.steps p,
.area-card p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.quote-form,
.result-card,
.steps article,
.area-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 240px;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 1.55rem;
  border: 3px solid var(--green);
}

.service-card h3,
.steps h3 {
  margin: 14px 0 0;
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}

.quote-section {
  border-top: 1px solid var(--line-light);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: 22px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid rgba(0,0,0,0.13);
  border-radius: 16px;
  background: #fbfbf7;
  color: var(--black);
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(57,255,20,0.2);
}

textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.tiny-note,
.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.result-card {
  position: sticky;
  top: 22px;
  background:
    linear-gradient(180deg, var(--black) 0 38%, var(--white) 38% 100%);
  color: var(--black);
}

.result-card .green-label {
  color: var(--green);
}

.price {
  color: var(--green);
  -webkit-text-stroke: 1px var(--white);
  text-shadow:
    2px 2px 0 var(--white),
    -1px 1px 0 var(--white),
    0 0 22px rgba(57,255,20,0.3);
  font-size: clamp(2.7rem, 7vw, 4.5rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
  margin: 12px 0 30px;
}

#resultText {
  margin-top: 44px;
}

.result-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.result-list span {
  display: block;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 10px 12px;
  background: #f7f7f1;
  color: var(--muted);
  font-weight: 700;
}

.contact-reveal {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  border: 3px solid var(--green);
  border-radius: 20px;
  padding: 16px;
  background: #f9fff5;
}

.phone-line {
  margin: 0;
  text-align: center;
  color: var(--black) !important;
  font-size: 1.35rem;
  font-weight: 950;
}

.work-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  box-shadow: none;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 14px;
  align-items: start;
}

.steps strong {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  font-weight: 950;
}

.steps h3 {
  margin: 0;
}

.steps p {
  margin: 6px 0 0;
}

.area-section {
  padding-top: 20px;
}

.area-card {
  background:
    linear-gradient(90deg, var(--black) 0 36%, var(--white) 36% 100%);
  color: var(--black);
  min-height: 260px;
  display: grid;
  align-content: center;
  padding-left: min(44%, 480px);
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: "R";
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: var(--green);
  color: var(--black);
  font-size: 5rem;
  font-weight: 950;
  border: 4px solid var(--white);
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero,
  .intro-band,
  .quote-layout,
  .work-strip {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    position: relative;
    top: auto;
  }

  .area-card {
    background: var(--white);
    padding-left: 26px;
    padding-top: 190px;
  }

  .area-card::before {
    top: 34px;
    left: 26px;
    transform: none;
    width: 120px;
    height: 120px;
    font-size: 4rem;
    border-color: var(--black);
  }
}

@media (max-width: 640px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .outlined-title {
    -webkit-text-stroke: 1.25px var(--white);
    text-shadow:
      2px 2px 0 var(--white),
      -1px 1px 0 var(--white),
      1px -1px 0 var(--white);
  }

  .hero-actions .button,
  .button-row .button {
    flex: 1 1 190px;
  }
}
