:root {
  --ink: #14211f;
  --muted: #60706c;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --line: #dcd7ca;
  --green: #1f7a5a;
  --green-dark: #145642;
  --gold: #d99a2b;
  --blue: #246b8e;
  --rose: #b84b5f;
  --shadow: 0 18px 50px rgba(20, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(31, 122, 90, 0.08), rgba(217, 154, 43, 0.10) 40%, transparent 70%),
    var(--paper);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(31, 122, 90, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 4vw, 64px) 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(31, 122, 90, 0.25);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(31, 122, 90, 0.08);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

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

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

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

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

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

.deal-board {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(20, 33, 31, 0.10);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.95), rgba(255,255,255,0.76)),
    repeating-linear-gradient(90deg, rgba(31,122,90,0.10), rgba(31,122,90,0.10) 1px, transparent 1px, transparent 34px);
  box-shadow: var(--shadow);
}

.board-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.board-top strong {
  color: var(--ink);
}

.deal-card {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(20, 33, 31, 0.10);
  background: #fff;
}

.deal-card.featured {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(31, 122, 90, 0.92), rgba(36, 107, 142, 0.78)),
    linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25% 50%, rgba(255,255,255,0.15) 50% 75%, transparent 75%);
  color: #fff;
}

.deal-card h2,
.deal-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.deal-card p {
  margin: 0;
  color: inherit;
}

.deal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.tag,
.category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.tag {
  color: var(--green-dark);
  background: rgba(31, 122, 90, 0.12);
}

.featured .tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 4vw, 64px) 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.strip div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.strip strong,
.strip span {
  display: block;
}

.strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 56px clamp(20px, 4vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.opportunity-grid,
.audience-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.opportunity,
.audience,
.trust-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.opportunity h3,
.audience h3,
.trust-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
}

.opportunity p,
.audience p,
.trust-grid p {
  color: var(--muted);
}

.opportunity ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.category.product {
  color: #80530c;
  background: rgba(217, 154, 43, 0.18);
}

.category.service {
  color: var(--green-dark);
  background: rgba(31, 122, 90, 0.14);
}

.category.equipment {
  color: #174f6a;
  background: rgba(36, 107, 142, 0.15);
}

.category.media {
  color: #7b2030;
  background: rgba(184, 75, 95, 0.14);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 20px 20px 20px 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  color: var(--muted);
}

.trust {
  background: #1b2825;
  color: #fff;
}

.trust .eyebrow {
  color: #fff;
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.10);
}

.trust .section-heading p,
.trust-grid p {
  color: rgba(255,255,255,0.72);
}

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

.trust-grid article {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.contact-panel p {
  color: var(--muted);
  font-size: 17px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.lead-form input {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

.lead-form input:focus {
  outline: 3px solid rgba(31, 122, 90, 0.18);
  border-color: var(--green);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 4vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

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

  .hero {
    min-height: auto;
  }

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

  .trust-grid,
  .strip {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 34px;
  }

  .deal-grid,
  .opportunity-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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