:root {
  --ink: #101616;
  --muted: #5e6a66;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: rgba(16, 22, 22, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --green: #2f8a4a;
  --green-dark: #0d472e;
  --green-soft: #e7f3eb;
  --graphite: #11191a;
  --steel: #dce2df;
  --shadow: 0 22px 60px rgba(8, 16, 14, 0.18);
  --max: 1180px;
  --radius: 8px;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #080d0d;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

main {
  flex: 1 0 auto;
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(5, 9, 9, 0.74) 0%, rgba(5, 9, 9, 0.34) 58%, rgba(5, 9, 9, 0) 100%);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2f8a4a, #0d472e);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

.brand-mark img {
  width: 30px;
  height: 30px;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 27px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.menu-toggle svg,
.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.btn-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--graphite);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 12, 0.9) 0%, rgba(7, 12, 12, 0.68) 39%, rgba(7, 12, 12, 0.16) 78%),
    linear-gradient(0deg, rgba(7, 12, 12, 0.8), rgba(7, 12, 12, 0.02) 45%);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 150px 0 110px;
}

.hero-copy {
  max-width: 760px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
}

.hero p,
.page-hero p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.proof-item {
  padding: 18px;
  background: rgba(8, 16, 14, 0.46);
}

.proof-item strong {
  display: block;
  font-size: 15px;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 76% 12%, rgba(47, 138, 74, 0.26), transparent 32%),
    linear-gradient(135deg, #11191a, #07100d);
  color: var(--white);
}

.section-green {
  background:
    linear-gradient(90deg, rgba(6, 30, 19, 0.92), rgba(13, 71, 46, 0.88)),
    url("images/hero-recycling-yard.webp") center/cover;
  color: var(--white);
}

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

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-label {
  margin-bottom: 11px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .section-label,
.section-green .section-label {
  color: #76d18f;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.section-dark .lead,
.section-green .lead {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: 32px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.service-card:last-child {
  border-right: 0;
}

.service-card svg,
.trust-item svg,
.step svg,
.contact-card svg {
  width: 42px;
  height: 42px;
  color: var(--green);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.local-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.related-block {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.related-block .lead {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 16px;
}

.price-note {
  border: 1px solid rgba(47, 138, 74, 0.22);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--green-soft);
}

.price-note h2 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.price-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.local-link-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  color: var(--ink);
}

.local-link-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.local-link-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.step {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
}

.step:last-child {
  border-right: 0;
}

.step-number {
  color: #76d18f;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.step h3 {
  margin-top: 28px;
}

.step p {
  color: rgba(255, 255, 255, 0.67);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.trust-list {
  display: grid;
  gap: 22px;
}

.trust-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.trust-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 24px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
}

.faq-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}

.faq-item[open] .faq-button svg {
  transform: rotate(45deg);
}

.faq-panel {
  max-width: 820px;
  padding: 0 0 24px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  flex-shrink: 0;
  background: #080d0d;
  color: var(--white);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 38px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(7, 12, 12, 0.92), rgba(7, 12, 12, 0.56)),
    url("images/hero-recycling-yard.webp") center/cover;
  color: var(--white);
  padding: 170px 0 92px;
}

.breadcrumb {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 56px;
  align-items: start;
}

.article {
  display: grid;
  gap: 30px;
}

.article h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.side-panel {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(8, 16, 14, 0.08);
}

.side-panel .btn {
  width: 100%;
  margin-top: 12px;
}

.side-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.side-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 800;
}

.side-links a:hover {
  color: var(--green-dark);
  border-color: rgba(47, 138, 74, 0.35);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.form input:not([type="checkbox"]):not([type="hidden"]),
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  background: #fbfcfa;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.form-consent input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.botcheck {
  position: absolute;
  width: 1px;
  height: 1px;
  left: -9999px;
  opacity: 0;
}

.status-message {
  min-height: 22px;
  color: var(--green-dark);
  font-weight: 850;
}

.status-message.is-error {
  color: #a12b2b;
}

.status-message.is-success {
  color: var(--green-dark);
}

.status-message:empty {
  display: none;
}

@media (max-width: 980px) {
  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 20px 24px;
    background: rgba(8, 13, 13, 0.98);
    border-bottom: 1px solid var(--line-dark);
  }

  .menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: 720px;
    padding: 128px 0 76px;
  }

  .hero-proof,
  .service-grid,
  .process-grid,
  .split,
  .footer-grid,
  .content-grid,
  .contact-layout,
  .cta-band,
  .local-link-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid .step {
    border-bottom-color: var(--line-dark);
  }

  .service-card:last-child,
  .step:last-child {
    border-bottom: 0;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand span {
    max-width: 160px;
  }

  h1 {
    font-size: 40px;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-content {
    min-height: 690px;
  }

  .hero-proof {
    margin-top: 34px;
  }

  .proof-item {
    padding: 16px;
  }

  .section {
    padding: 68px 0;
  }

  .service-card,
  .step,
  .form,
  .side-panel {
    padding: 22px;
  }

  .split-media,
  .split-media img {
    min-height: 360px;
  }

  .footer-bottom {
    display: grid;
  }
}
