:root {
  --ink: #111513;
  --text: #26302c;
  --muted: #66716d;
  --paper: #f7faf8;
  --white: #ffffff;
  --line: #dfe7e2;
  --forest: #0e5b49;
  --forest-dark: #083d32;
  --wine: #7b1e3a;
  --silver: #eef3f0;
  --steel: #596760;
  --shadow: 0 20px 50px rgba(17, 21, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(247, 250, 248, 0.93);
  border-bottom: 1px solid rgba(17, 21, 19, 0.08);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 146px;
  height: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--forest-dark);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--steel);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--forest);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.header-cta {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 8px 20px rgba(14, 91, 73, 0.2);
}

.button.primary {
  color: var(--white);
  background: var(--forest);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover,
.header-cta:hover {
  background: var(--wine);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  padding: 92px clamp(18px, 7vw, 98px);
  color: var(--white);
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=84") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 21, 19, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ee0c1;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  margin: 0;
  color: inherit;
  font-size: 4.6rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: 0;
}

p {
  font-size: 1rem;
  line-height: 1.68;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 122px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.proof-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.section,
.risk-panel,
.agro-section,
.quote-section,
.site-footer {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 86px);
}

.intro-section,
.advisor-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
  background: var(--paper);
}

.intro-section img {
  width: 100%;
  height: min(520px, 58vw);
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-copy {
  max-width: 700px;
}

.section-copy p,
.section-heading p,
.risk-copy p,
.agro-copy p,
.quote-copy p {
  color: var(--muted);
}

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

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 40px;
}

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

.solution-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card div {
  padding: 24px;
}

.solution-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--wine);
  font-weight: 900;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.risk-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  color: var(--white);
  background: var(--forest-dark);
}

.risk-panel h2,
.risk-panel h3 {
  color: var(--white);
}

.risk-panel .eyebrow {
  color: #9ce4c6;
}

.risk-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--forest-dark);
  border-radius: 8px;
  background: #9ce4c6;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.agro-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 0.9fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  background: var(--silver);
}

.agro-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.agro-copy {
  max-width: 620px;
}

.agro-copy .button {
  margin-top: 18px;
}

.advisor-section {
  background: var(--paper);
}

.advisor-note {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.advisor-note span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--wine);
  font-weight: 900;
  text-transform: uppercase;
}

.advisor-note p {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.45;
}

.quote-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.94fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  color: var(--white);
  background: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=84") center / cover;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 21, 19, 0.78);
  pointer-events: none;
}

.quote-section > * {
  position: relative;
  z-index: 1;
}

.quote-section h2 {
  color: var(--white);
}

.quote-section .eyebrow {
  color: #9ce4c6;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  letter-spacing: 0;
}

textarea {
  resize: vertical;
  min-height: 118px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(14, 91, 73, 0.22);
  border-color: var(--forest);
}

.quote-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.site-footer img {
  width: 144px;
  padding: 8px;
  border-radius: 8px;
  background: var(--forest-dark);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .proof-strip,
  .solution-grid,
  .intro-section,
  .risk-panel,
  .agro-section,
  .advisor-section,
  .quote-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-section img,
  .agro-image img {
    height: 390px;
    min-height: 300px;
  }

  .site-footer {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
    gap: 12px;
  }

  .brand img {
    width: 122px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 84svh;
    padding: 74px 18px 56px;
    background-position: 58% center;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip div,
  .section,
  .risk-panel,
  .agro-section,
  .quote-section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .solution-card {
    min-height: 390px;
  }

  .advisor-note,
  .quote-form {
    padding: 20px;
  }

  .advisor-note p {
    font-size: 1.18rem;
  }
}
