:root {
  --green: #61bd37;
  --green-dark: #34851f;
  --black: #121212;
  --text: #222222;
  --muted: #666666;
  --line: #e5e5e5;
  --soft: #f6f8f5;
  --white: #ffffff;
  --orange: #f6a000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header.small {
  position: static;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.brand img {
  width: min(360px, 55vw);
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  color: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 100%);
  min-height: 560px;
  display: flex;
  align-items: center;
}

.boot-watermark {
  position: absolute;
  left: -110px;
  bottom: -180px;
  width: min(760px, 85vw);
  opacity: 0.65;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 48px;
  align-items: center;
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--green-dark);
}

h1, h2, h3 {
  color: var(--black);
  line-height: 1.15;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.9rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  max-width: 720px;
  color: #3c3c3c;
  margin: 0 0 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: white;
  padding: 13px 22px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(97, 189, 55, 0.22);
}

.button:hover {
  text-decoration: none;
  background: var(--green-dark);
}

.button.secondary {
  background: var(--black);
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.hero-card h2 {
  font-size: 1.45rem;
}

.hero-card p {
  margin: 0 0 16px;
}

.hero-card a[href^="mailto:"] {
  font-size: 0.92rem;
  white-space: nowrap;
}

.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.logo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 28px 0;
}

.logo-strip img:first-child {
  width: min(330px, 45vw);
  height: auto;
}

.logo-strip img:last-child {
  width: 140px;
  height: auto;
}

.section {
  padding: 86px 0;
}

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

.two-column {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
}

.two-column p {
  font-size: 1.1rem;
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  min-height: 210px;
}

.card::before {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: var(--green);
  margin-bottom: 20px;
}

.contact {
  background: var(--black);
  color: white;
}

.contact h2,
.contact .eyebrow {
  color: white;
}

.contact .eyebrow {
  color: var(--green);
}

.contact a {
  color: white;
  text-decoration: underline;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.contact-details {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 28px;
}

.site-footer {
  background: #0a0a0a;
  color: white;
  padding: 24px 0;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: white;
}

.legal-page {
  padding: 60px 0 80px;
}

.legal-content {
  max-width: 850px;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-content h2 {
  margin-top: 36px;
  font-size: 1.35rem;
}

.legal-note {
  margin-top: 44px;
  padding: 18px;
  border-left: 5px solid var(--orange);
  background: #fff8ea;
}

@media (max-width: 820px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
    min-height: unset;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-grid,
  .two-column,
  .contact-box,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
  }

  .hero-grid {
    padding: 64px 0;
  }

  .hero-card {
    padding: 22px;
  }

  .logo-strip-inner {
    gap: 24px;
    flex-direction: column;
  }

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

  .boot-watermark {
    left: -160px;
    bottom: -150px;
    width: 720px;
    opacity: 0.48;
  }
}
