:root {
  --lime: #b7d93f;
  --lime-deep: #a7cc2d;
  --text: #040606;
  --muted: #4d4d4d;
  --bg: #ffffff;
  --soft: #f2f4ea;
  --line: #d8d8d8;
  --dark: #0b0b0b;
  --radius: 18px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Poppins, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-wrap {
  background: linear-gradient(180deg, var(--lime) 0%, var(--lime-deep) 100%);
  min-height: 88vh;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  backdrop-filter: blur(8px);
}

.logo img {
  width: 220px;
  height: auto;
}

.main-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1rem;
}

.main-nav a:hover {
  text-decoration: underline;
}

.quote-btn {
  background: var(--dark);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #111;
  display: block;
  margin: 5px 0;
}

.hero {
  padding: 1.4rem 0 4.7rem;
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 2.3rem;
  align-items: center;
}

.hero-label {
  margin: 0;
  font-size: 1.05rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 0.92;
  margin: 0.8rem 0 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0 0 1rem;
  max-width: 65ch;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.5;
}

.hero-link {
  color: #111;
  font-weight: 500;
}

.hero-slider {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  overflow: hidden;
  min-height: 460px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 14px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.section {
  padding: 4.8rem 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.what {
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.5rem;
}

.what-intro p {
  line-height: 1.6;
}

.social-list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.social-list a {
  color: #111;
}

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

.service-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-card.big {
  grid-column: span 3;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #fbfbfb 0%, #f4f4f4 100%);
  padding: 12px;
}

.service-card.big img {
  height: 360px;
  padding: 20px;
}

.service-card p {
  margin: 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
}

.section-foot {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.section-foot a {
  color: #111;
  font-weight: 500;
}

.why {
  background: var(--soft);
}

.why-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.why-card.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.why-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #fbfbfb 0%, #f4f4f4 100%);
  border-radius: calc(var(--radius) - 4px);
  padding: 12px;
}

.why-card h3 {
  margin: 0 0 0.5rem;
}

.why-card p {
  margin: 0 0 0.6rem;
  color: var(--muted);
}

.why-card a {
  color: #111;
  font-weight: 500;
}

.features .lead {
  margin: 0.6rem 0 0.5rem;
}

.feature-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: #111;
  font-weight: 500;
}

.feature-rows {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-row img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #fcfcfc 0%, #f2f2f2 100%);
  border-radius: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.strip {
  background: #111;
  color: #fff;
}

.strip-inner {
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.strip p {
  margin: 0;
}

.strip a {
  color: #fff;
}

.clients {
  background: #f5f6f2;
}

.clients-wrap {
  max-width: 760px;
}

.contact-form-section {
  background: #fff;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.3rem;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 0.5rem;
}

.contact-form {
  background: #f8f8f8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: grid;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #c9c9c9;
  background: #fff;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 0.4rem;
  border: 0;
  background: #111;
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.testimonial {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

#quoteText {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
}

#quoteBody,
#quoteAuthor {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.dots {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border: 1px solid #222;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background: #111;
}

.site-footer {
  background: #efefef;
  border-top: 1px solid var(--line);
}

.footer-grid {
  padding: 2.2rem 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
}

.footer-logo {
  width: 180px;
}

.footer-grid h3 {
  margin: 0 0 0.7rem;
}

.footer-grid p,
.footer-grid li {
  color: #444;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-grid a {
  color: #111;
}

.footer-btn {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.55rem 0.95rem;
  background: #111;
  color: #fff !important;
  text-decoration: none;
}

.footer-bar {
  border-top: 1px solid #cfcfcf;
  padding: 1rem 0 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-bar p {
  margin: 0;
  color: #444;
}

.social-inline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
}


@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 1.3rem;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .why-card,
  .why-card.reverse {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    right: 1rem;
    top: 72px;
    width: min(300px, 82vw);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    padding: 0.85rem;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    z-index: 30;
  }

  .main-nav.open {
    display: flex;
  }

  .logo img {
    width: 185px;
  }

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

  .service-card.big {
    grid-column: span 1;
  }

  .service-card.big img,
  .service-card img,
  .feature-row img {
    height: 210px;
    padding: 10px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .section-foot,
  .footer-bar,
  .strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

}
