*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --green: #4a7c3f;
  --green-hover: #5c9a50;
  --green-light: #6db85e;
  --green-subtle: #eaf3e6;
  --grey: #666;
  --grey-light: #f5f5f2;
  --grey-border: #e2e2de;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

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

.btn-full {
  width: 100%;
  text-align: center;
  display: block;
}

.section-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-label.light { color: var(--green-light); }

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.0;
  letter-spacing: 0.015em;
  color: var(--black);
  margin-bottom: 20px;
}
.section-heading.white { color: var(--white); }

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--grey);
}
.section-sub.dim { color: rgba(255,255,255,0.55); }

/* Scroll reveal */
.reveal,
.stagger {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible,
.stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Promo Bar ── */
.promo-bar {
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  flex-wrap: wrap;
  text-align: center;
}

.promo-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.2s;
}
.promo-cta:hover { background: rgba(255,255,255,0.32); }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
}
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 23px;
  color: var(--white);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-hover) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 28px 80px max(28px, calc((100vw - 1180px) / 2 + 28px));
  max-width: 680px;
}

.hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 22px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 10vw, 120px);
  line-height: 0.93;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero-body {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255,255,255,0.8);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}
.trust-badge i {
  color: var(--green-light);
  font-size: 15px;
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: var(--grey-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--grey-border);
  border: 3px solid var(--grey-border);
}

.service-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.service-img {
  height: 210px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-img img { transform: scale(1.07); }

.service-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-sub {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.service-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.22;
  color: var(--black);
  margin-bottom: 12px;
}

.service-text {
  font-size: 14px;
  line-height: 1.68;
  color: var(--grey);
  flex: 1;
  margin-bottom: 22px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 12px; }

/* ── Why Choose Us ── */
.why-us {
  background: var(--black);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.why-us-image {
  overflow: hidden;
}
.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.why-us:hover .why-us-image img { transform: scale(1.04); }

.why-us-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-body {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.why-list {
  margin-bottom: 44px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: rgba(255,255,255,0.88);
}
.why-list li i {
  color: var(--green-light);
  font-size: 13px;
  flex-shrink: 0;
}

/* ── About Detail ── */
.about-detail {
  padding: 100px 0;
  background: var(--white);
}

.about-detail-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.about-detail-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 44px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon i {
  color: var(--green);
  font-size: 18px;
}

.feature-text h4 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 14px;
  line-height: 1.68;
  color: var(--grey);
}

.about-stats-col {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--grey-border);
}

.stat {
  background: var(--black);
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px;
  color: var(--green-light);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.about-stat-img {
  height: 230px;
  overflow: hidden;
}
.about-stat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Process ── */
.process {
  background: var(--black);
  padding: 100px 0;
}

.process-steps {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.09);
}

.process-step {
  flex: 1;
  padding: 52px 44px;
  background: rgba(255,255,255,0.03);
}
.process-step:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.09);
}

.process-divider { display: none; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 88px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.45;
}

.process-step h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.process-step p {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255,255,255,0.6);
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: var(--grey-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 44px;
  border-left: 4px solid var(--green);
  display: flex;
  flex-direction: column;
}

.testimonial-icon {
  color: var(--green);
  font-size: 26px;
  margin-bottom: 22px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.78;
  color: #555;
  flex: 1;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--grey);
}

/* ── Gallery ── */
.gallery-strip {
  overflow: hidden;
  background: var(--black);
}

.gallery-track {
  display: flex;
  gap: 3px;
}

.gallery-item {
  flex: 0 0 calc(100% / 6);
  height: 260px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.88);
  transition: transform 0.55s ease, filter 0.4s ease;
  cursor: pointer;
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
}

.cta-banner-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--white);
  line-height: 1.35;
  max-width: 720px;
  margin: 0 auto 36px;
}

/* ── FAQs ── */
.faqs {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-q i {
  flex-shrink: 0;
  color: var(--green);
  font-size: 13px;
  transition: transform 0.32s;
}
.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p {
  padding-bottom: 26px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--grey);
}

/* ── Contact ── */
.contact {
  background: var(--black);
  padding: 100px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  line-height: 1.4;
}
.contact-item:hover { color: var(--green-light); }
.contact-item i {
  color: var(--green-light);
  font-size: 17px;
  margin-top: 2px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.22s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-light); }

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' fill='none' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; }

/* ── Footer ── */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 64px 0 0;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
}
.footer-location {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 22px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
  display: block;
  margin-bottom: 10px;
}
.footer-col ul a:hover,
.footer-col a:hover { color: var(--green-light); }
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-btn {
  margin-top: 12px;
  display: inline-block;
  font-size: 14px;
  padding: 11px 24px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ── Responsive ── */
@media (max-width: 1060px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-detail-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-stats-col { position: static; flex-direction: row; align-items: start; gap: 3px; }
  .stats-grid { flex: 0 0 calc(50% - 2px); }
  .about-stat-img { flex: 1; height: auto; min-height: 200px; }
  .process-steps { flex-direction: column; }
  .process-step:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.09); }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 28px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }
  .nav-cta {
    margin-top: 10px;
    text-align: center;
    border-radius: 2px !important;
    padding: 13px !important;
  }

  .hero { min-height: 85vh; }
  .hero-headline { font-size: clamp(56px, 14vw, 80px); }

  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-image { height: 280px; }
  .why-us-content { padding: 60px 28px; }

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

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

  .gallery-item { flex: 0 0 calc(100% / 3); }

  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: 1; }

  .about-stats-col { flex-direction: column; }
  .about-stat-img { height: 220px; width: 100%; }
}

@media (max-width: 500px) {
  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 16px; }
  .gallery-item { flex: 0 0 calc(100% / 2); }
}
