:root {
  --green: #20f000;
  --green-dark: #11b800;
  --black: #050505;
  --black-soft: #0d0d0d;
  --white: #ffffff;
  --gray-100: #f3f3f3;
  --gray-300: #d9d9d9;
  --gray-500: #9b9b9b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 150px;
  height: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-block {
  text-align: right;
}

.phone-block span {
  display: block;
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}

.phone-block a {
  color: var(--white);
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.phone-block a:hover {
  color: var(--green);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 3px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--black);
}

.btn-green {
  background: var(--green);
  color: var(--black);
}

.btn-green:hover {
  background: #32ff12;
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 12px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(32, 240, 0, 0.18), transparent 30%),
    var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 82px 0 90px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 950;
  max-width: 640px;
}

.hero-text {
  margin: 26px 0 0;
  color: #ededed;
  font-size: 18px;
  max-width: 620px;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-points {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 720px;
}

.hero-points div {
  border-left: 4px solid var(--green);
  padding-left: 12px;
}

.hero-points strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-points span {
  display: block;
  color: #d5d5d5;
  font-size: 13px;
  line-height: 1.4;
}

.hero-card {
  background: var(--white);
  border: 5px solid var(--green);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-card-footer {
  background: var(--black);
  color: var(--white);
  margin-top: 14px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
}

/* Bottom green services strip */
.quick-bar {
  background: var(--green);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.quick-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-bar-inner div {
  padding: 22px 14px;
  text-align: center;
  color: var(--black);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 2px solid var(--black);
}

.quick-bar-inner div:last-child {
  border-right: 0;
}

/* Footer */
.site-footer {
  background: var(--black);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  width: 140px;
  height: auto;
}

.footer-right {
  text-align: right;
}

.footer-right span {
  display: block;
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-right a {
  color: var(--white);
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
}

.footer-right a:hover {
  color: var(--green);
}

/* Tablet */
@media (max-width: 1020px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .header-actions {
    justify-content: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0 72px;
  }

  .hero-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-bar-inner div:nth-child(1),
  .quick-bar-inner div:nth-child(2) {
    border-bottom: 2px solid var(--black);
  }

  .quick-bar-inner div:nth-child(2) {
    border-right: 0;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: auto;
    padding: 18px 0;
    gap: 18px;
  }

  .brand-logo {
    width: 130px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .phone-block {
    text-align: center;
    width: 100%;
  }

  .phone-block a {
    font-size: 22px;
  }

  .hero-inner {
    padding: 52px 0 60px;
    gap: 42px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 12px;
  }

  .hero-card-footer {
    font-size: 14px;
    padding: 14px;
  }

  .quick-bar-inner {
    grid-template-columns: 1fr;
  }

  .quick-bar-inner div {
    border-right: 0;
    border-bottom: 2px solid var(--black);
  }

  .quick-bar-inner div:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-right a {
    font-size: 22px;
  }
}