:root {
  --ink: #17211f;
  --muted: #5a6763;
  --line: #d9e0dc;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --field: #f2f5f3;
  --green: #1f6b54;
  --green-dark: #174a3d;
  --blue: #285f83;
  --gold: #c58b28;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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(251, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.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: white;
  background: var(--green);
  border-radius: 7px;
  font-size: 0.95rem;
}

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

.nav a,
.text-link {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 72px);
  background:
    linear-gradient(112deg, rgba(31, 107, 84, 0.11), transparent 42%),
    radial-gradient(circle at 90% 12%, rgba(197, 139, 40, 0.14), transparent 32%),
    var(--paper);
}

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

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

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

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

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
}

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

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

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

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

.button.secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}

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

.button.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.workflow-panel {
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-header strong {
  color: var(--ink);
}

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

.signal-grid div,
.market-grid article,
.service-card,
.steps li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.signal-grid div {
  min-height: 120px;
  padding: 16px;
}

.metric {
  display: block;
  color: var(--blue);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 850;
  line-height: 1;
}

.signal-grid .metric {
  font-size: 1.35rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.process-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.process-lines span {
  padding: 12px 14px;
  color: var(--green-dark);
  background: #edf5f1;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  font-weight: 750;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar span {
  padding: 18px 14px;
  background: #fff;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-body {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.market-grid article {
  padding: 22px;
}

.market-grid h3 {
  margin-top: 16px;
}

.market-grid p,
.service-card p,
.steps p,
.use-case-list,
.consultation-copy p,
.site-footer {
  color: var(--muted);
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.price {
  color: var(--blue);
  font-weight: 850;
}

.text-link {
  width: fit-content;
  color: var(--green-dark);
  font-weight: 850;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 210px;
  padding: 22px;
}

.steps span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 850;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.use-case-list li {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.consultation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--green-dark);
}

.consultation-section .eyebrow,
.consultation-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.consultation-copy h2 {
  color: #fff;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
}

.contact-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-panel h3 {
  margin-bottom: 0;
}

.contact-panel p {
  color: var(--muted);
}

.contact-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-checklist li {
  padding-left: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: #fff;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .section,
  .consultation-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .market-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  h1 {
    font-size: clamp(2.55rem, 16vw, 3.4rem);
  }

  .signal-grid,
  .trust-bar,
  .market-grid,
  .service-grid,
  .steps,
  .use-case-list {
    grid-template-columns: 1fr;
  }

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

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