:root {
  color-scheme: light;
  --ink: #15171a;
  --muted: #5e6874;
  --line: #dfe5ec;
  --paper: #ffffff;
  --soft: #f5f7f2;
  --green: #1e8a73;
  --green-dark: #0f4e43;
  --blue: #2457c5;
  --coral: #ef665a;
  --gold: #d9a632;
  --shadow: 0 24px 70px rgba(17, 32, 50, 0.14);
  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);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(223, 229, 236, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-dark), var(--blue) 54%, var(--coral));
  border-radius: 8px;
  font-size: 18px;
}

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

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(94svh - 72px);
  padding: clamp(34px, 6vw, 76px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 25%, rgba(30, 138, 115, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
}

.hero-copy {
  max-width: 640px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green);
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green);
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: min(880px, 62vw);
  min-width: 520px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intro {
  background: var(--green-dark);
  color: #ffffff;
}

.intro p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(1.45rem, 3vw, 3.1rem);
  line-height: 1.12;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.services {
  background: var(--paper);
}

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

.service-card {
  min-height: 280px;
  padding: 28px;
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card p,
.proof-list,
.steps p,
.contact p {
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: #f1f4f7;
}

.proof-list {
  display: grid;
  gap: 18px;
  font-size: 1.08rem;
}

.proof-list p {
  margin-bottom: 0;
}

.process {
  background:
    linear-gradient(90deg, rgba(36, 87, 197, 0.08), transparent 42%),
    var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 230px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: step;
}

.steps li::before {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 50%;
  content: counter(step);
  font-weight: 900;
}

.steps li:nth-child(2)::before {
  background: var(--green);
}

.steps li:nth-child(3)::before {
  background: var(--coral);
}

.contact {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #ffffff;
}

.contact-inner {
  max-width: 900px;
}

.contact .eyebrow {
  color: #8fd7c4;
}

.contact h2 {
  max-width: 760px;
}

.contact p {
  max-width: 620px;
  color: #c9d2dc;
  font-size: 1.12rem;
}

.email-link {
  display: inline-flex;
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(1.35rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .hero,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    width: 100%;
    min-width: 0;
  }

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

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.65rem, 13.8vw, 3.8rem);
    line-height: 0.98;
  }

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

  .service-card,
  .steps li {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 36px;
  }
}
