*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #1b4332;
  --lime: #95d5b2;
  --bright: #52b788;
  --dark: #081c15;
  --white: #f1faee;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

.diagonal-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--dark) 50%, #0d2818 100%);
  z-index: -1;
}
.diagonal-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--lime);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.08;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 28, 21, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--bright);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-block { display: flex; align-items: center; gap: 1rem; }
.logo-mark { font-size: 2rem; }
.logo-block strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.logo-block span { font-size: 0.75rem; color: var(--lime); text-transform: uppercase; letter-spacing: 0.15em; }

.header-cta {
  padding: 0.7rem 1.5rem;
  background: var(--bright);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}
.header-cta:hover { background: var(--lime); }

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--lime);
  letter-spacing: 0.02em;
}

.hero-desc {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: rgba(241, 250, 238, 0.7);
  max-width: 400px;
  line-height: 1.7;
}

.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 2rem; }

.recycle-ring {
  width: 220px;
  height: 220px;
  border: 4px dashed var(--bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 20s linear infinite;
}

.ring-inner {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--bright), var(--forest));
  border-radius: 50%;
  opacity: 0.6;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-tags { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.hero-tags span {
  padding: 0.5rem 1rem;
  border: 2px solid var(--lime);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-section {
  background: var(--bright);
  color: var(--dark);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.feature {
  max-width: 500px;
  margin-bottom: 4rem;
  padding: 2rem;
  position: relative;
}
.feature-left { margin-right: auto; border-left: 5px solid var(--bright); padding-left: 2rem; }
.feature-right { margin-left: auto; text-align: right; border-right: 5px solid var(--lime); padding-right: 2rem; }

.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--bright);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}

.feature h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--lime);
}
.feature p { color: rgba(241, 250, 238, 0.65); line-height: 1.7; }

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 2rem;
  background: var(--forest);
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--lime);
  line-height: 1;
}
.stat-item span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(241,250,238,0.5); }

.quote-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  background: rgba(27, 67, 50, 0.5);
  padding: 3rem;
  border: 2px solid var(--bright);
}

.quote-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--lime);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

address { font-style: normal; line-height: 1.8; color: rgba(241,250,238,0.7); }
address strong { color: var(--white); display: block; font-size: 1.1rem; margin-bottom: 0.5rem; }

.quote-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.quote-form input, .quote-form select, .quote-form textarea {
  padding: 1rem;
  background: var(--dark);
  border: 2px solid var(--forest);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none;
  border-color: var(--bright);
}

.quote-form button {
  padding: 1rem;
  background: var(--lime);
  color: var(--dark);
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s;
}
.quote-form button:hover { background: var(--bright); }

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: rgba(241,250,238,0.4);
  border-top: 1px solid var(--forest);
}
footer a { color: var(--lime); text-decoration: none; }
footer a:hover { text-decoration: underline; }

.about-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}
.about-wrap h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--lime);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.about-wrap p {
  color: rgba(241, 250, 238, 0.7);
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.equipment, .how-it-works, .testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.equipment h2, .how-it-works h2, .testimonials h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--lime);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.equip-item {
  padding: 1rem 1.25rem;
  border: 2px solid var(--forest);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.equip-item:hover { border-color: var(--bright); background: rgba(82, 183, 136, 0.1); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  padding: 2rem 1.5rem;
  background: rgba(27, 67, 50, 0.4);
  border-left: 4px solid var(--bright);
}
.step-card span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--bright);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}
.step-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--lime);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.step-card p { font-size: 0.9rem; color: rgba(241,250,238,0.65); line-height: 1.6; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.reviews-grid blockquote {
  padding: 1.5rem;
  border: 1px solid var(--forest);
  font-style: italic;
  color: rgba(241,250,238,0.75);
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-email {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
}
.contact-email:hover { text-decoration: underline; }
.quote-hours { margin-top: 1.5rem; color: rgba(241,250,238,0.6); line-height: 1.8; font-size: 0.9rem; }
.quote-hours strong { color: var(--white); }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 2rem auto 0; }
  .feature-right { text-align: left; border-right: none; border-left: 5px solid var(--lime); padding-right: 0; padding-left: 2rem; margin-left: 0; }
  .quote-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
