:root {
  --ink: #17201b;
  --muted: #5b675f;
  --line: #dfe7e1;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --green: #0f7a55;
  --green-dark: #0a533d;
  --mint: #e4f8ef;
  --amber: #f2b84b;
  --coral: #d96a4a;
  --shadow: 0 18px 50px rgba(23, 32, 27, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 71px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 32, 27, 0.92) 0%, rgba(23, 32, 27, 0.76) 38%, rgba(23, 32, 27, 0.32) 70%, rgba(23, 32, 27, 0.12) 100%),
    linear-gradient(0deg, rgba(23, 32, 27, 0.26), rgba(23, 32, 27, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 72px 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.35rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.section,
.examples,
.contact,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 620px;
}

.section-heading h2,
.contact h2,
.quality-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 46px;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 54px;
}

.examples article,
.steps article,
.grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(23, 32, 27, 0.06);
}

.examples article {
  padding: 24px;
}

.examples span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 850;
}

h3 {
  margin: 0 0 10px;
  line-height: 1.16;
}

.examples h3 {
  word-break: break-word;
}

.examples p,
.steps p,
.grid p,
.partner-content,
.quality-panel p,
.contact p,
.faq p {
  color: var(--muted);
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.steps article {
  padding: 28px;
}

.steps strong {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 1.1rem;
}

.service-grid {
  border-top: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.grid article {
  min-height: 188px;
  padding: 24px;
}

.quality {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.quality-panel {
  padding: 40px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.quality-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

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

.checklist li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 750;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--mint);
}

.partners {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: 46px;
  border-top: 1px solid var(--line);
}

.partner-content {
  font-size: 1.08rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: start;
  margin-top: 16px;
  padding: 46px;
  border-radius: 8px;
  background: #eef9f2;
  border: 1px solid #c9ebd6;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #bed7c8;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 36px, 680px);
    margin: 0 auto;
    padding: 72px 0;
  }

  .hero-stats,
  .intro,
  .examples,
  .steps,
  .grid,
  .quality,
  .partners,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 14px;
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero-shade {
    background: rgba(23, 32, 27, 0.76);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stats div,
  .quality-panel {
    padding: 22px;
  }

  .section {
    padding: 58px 0;
  }
}
