:root {
  color-scheme: light;
  --bg: #f5f1e7;
  --bg-soft: #fbf8ef;
  --ink: #17231f;
  --muted: #5d6a63;
  --line: #d8d0bf;
  --green: #1d7a5c;
  --green-dark: #102f26;
  --teal: #51b8a5;
  --amber: #e3a735;
  --red: #c85c46;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 35, 31, 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:
    radial-gradient(circle at 16% 10%, rgba(81, 184, 165, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 48%, #eee6d8 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.skip-link {
  background: var(--green-dark);
  color: var(--white);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background: rgba(251, 248, 239, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 208, 191, 0.72);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  left: 0;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  height: 2.5rem;
  width: 2.5rem;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
  justify-content: center;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.header-cta,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  gap: 0.55rem;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1rem;
}

.header-cta {
  background: var(--green-dark);
  color: var(--white);
  justify-self: end;
}

.hero,
.section,
.final-cta,
.site-footer {
  margin-inline: auto;
  max-width: 1180px;
  width: min(100% - 2rem, 1180px);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  min-height: calc(100vh - 5rem);
  padding: clamp(3rem, 7vw, 6.5rem) 0 3rem;
}

.eyebrow {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 1.35rem;
  max-width: 9ch;
}

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

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero-dek,
.section-heading p,
.search-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 46rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 1.25rem;
}

.button-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(16, 47, 38, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  color: var(--ink);
}

.disclaimer {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 34rem;
}

.hero-media {
  margin: 0;
  position: relative;
}

.hero-media::before {
  background: var(--amber);
  content: "";
  height: 42%;
  position: absolute;
  right: 0;
  top: -0.7rem;
  width: 42%;
  z-index: -1;
}

.hero-media img {
  aspect-ratio: 1200 / 630;
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.trust-strip {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.5);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  margin-bottom: 2.2rem;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(216, 208, 191, 0.86);
  border-radius: 8px;
  min-height: 15rem;
  padding: 1.25rem;
}

.benefit-card:nth-child(2) {
  border-top-color: var(--teal);
}

.benefit-card:nth-child(3) {
  border-top-color: var(--amber);
}

.benefit-card:nth-child(4) {
  border-top-color: var(--red);
}

.card-index,
.row-kicker {
  color: var(--green);
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 1.6rem;
}

.benefit-card p,
.solution-row p,
.faq p {
  color: var(--muted);
  margin-bottom: 0;
}

.section-contrast {
  background: var(--green-dark);
  color: var(--white);
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  width: 100%;
}

.section-contrast .eyebrow,
.section-contrast .row-kicker {
  color: var(--teal);
}

.section-contrast .section-heading p,
.section-contrast .solution-row p {
  color: rgba(255, 255, 255, 0.72);
}

.solution-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.solution-row {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1fr);
  padding: 1.45rem 0;
}

.solution-row h3 {
  margin-bottom: 0;
}

.solution-row .row-kicker {
  margin-bottom: 0.7rem;
}

.search-section {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
}

.keyword-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(23, 35, 31, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1.25rem;
}

.keyword-panel span {
  background: #edf7f3;
  border: 1px solid rgba(29, 122, 92, 0.22);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 750;
  padding: 0.58rem 0.78rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  padding-top: 0.8rem;
}

.final-cta {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0;
}

.final-cta .button-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: none;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 1.4rem 0 2rem;
}

.site-footer p {
  margin-bottom: 0;
}

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

  .nav {
    display: none;
  }

  .hero,
  .section-heading,
  .search-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  h1 {
    max-width: 11ch;
  }

  .section-heading p,
  .section-heading .eyebrow,
  .section-heading h2 {
    grid-column: auto;
    grid-row: auto;
  }

  .benefit-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 0.75rem;
    padding-inline: 1rem;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .header-cta {
    min-height: 2.55rem;
    padding: 0.6rem 0.75rem;
  }

  .hero,
  .section,
  .final-cta,
  .site-footer {
    width: min(100% - 1.2rem, 1180px);
  }

  .hero {
    padding-top: 2.4rem;
  }

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

  .hero-actions,
  .final-cta,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-cta {
    text-align: center;
  }
}
