:root {
  --green: #274b3a;
  --green-dark: #1e392c;
  --green-light: #3b6450;
  --black: #000000;
  --white: #ffffff;
  --bg: #f5f6f2;
  --bg-soft: #eef2ec;
  --card: #ffffff;
  --border: #d7ddd7;
  --muted: #425448;
  --muted-light: #68786d;
  --shadow: 0 16px 40px rgba(39, 75, 58, 0.1);
  --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --max-width: 1160px;
  --transition: 0.18s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at top left, rgba(39, 75, 58, 0.08), transparent 30%),
    linear-gradient(180deg, #f8faf7 0%, var(--bg) 100%);
  line-height: 1.5;
}

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

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

h1,
h2,
h3,
h4,
.eyebrow,
.results-kicker,
.section-kicker {
  font-family: "Montserrat", sans-serif;
  margin-top: 0;
}

p,
ul {
  margin-top: 0;
}

ul {
  margin-bottom: 0;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.brand-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.brand-logo {
  width: 94px;
  height: 94px;
  object-fit: contain;
  border-radius: 20px;
  background: var(--white);
  padding: 6px;
  box-shadow: var(--shadow-soft);
}

.eyebrow,
.section-kicker,
.results-kicker {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.hero-card,
.finder-panel,
.results-card,
.info-card,
.section-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 32px;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(39, 75, 58, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  background: rgba(39, 75, 58, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 760px;
}

.hero-subtext,
.subtext,
.results-summary,
.alt-summary,
.body-muted,
.finder-description,
.finder-card-subtext {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions,
.results-actions,
.alt-actions,
.stack-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.finder-panel,
.results-card,
.info-card,
.section-card {
  padding: 24px;
}

.finder-panel {
  margin-top: 18px;
}

.finder-panel-polished {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
}

.finder-title {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.finder-description {
  max-width: 720px;
  margin-bottom: 0;
}

.finder-content {
  margin-top: 22px;
}

.section-stack {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.section-grid-2,
.section-grid-3,
.finder-grid,
.alt-grid {
  display: grid;
  gap: 14px;
}

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

.section-grid-3,
.finder-grid,
.alt-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.finder-grid {
  align-items: stretch;
}

.finder-card,
.btn {
  appearance: none;
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green);
  border-radius: var(--radius-pill);
  padding: 15px 18px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  box-shadow: 4px 4px 0 rgba(39, 75, 58, 0.18);
}

.finder-card-rich {
  min-height: 132px;
  border-radius: 22px;
  padding: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  flex-direction: column;
  gap: 8px;
}

.finder-card-title {
  color: var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.finder-card-subtext {
  font-size: 14px;
  line-height: 1.55;
}

.finder-card:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(39, 75, 58, 0.2);
}

.finder-card:active,
.btn:active {
  transform: translateY(0);
}

.finder-card:focus-visible,
.btn:focus-visible,
.finder-back:focus-visible,
.results-small-link:focus-visible {
  outline: 3px solid rgba(39, 75, 58, 0.25);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--green);
}

.finder-back {
  margin-top: 18px;
  background: transparent;
  border: none;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-size: 15px;
}

.trust-strip,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-strip span,
.chip,
.meta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--green);
  border: 1px solid rgba(39, 75, 58, 0.18);
  font-weight: 700;
  font-size: 14px;
}

.results-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 16px 0 14px;
}

.results-badge,
.alt-badge {
  background: var(--green);
  color: var(--white);
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
}

.alt-badge {
  background: var(--bg-soft);
  color: var(--green);
  border: 1px solid var(--green);
}

.results-price,
.alt-price {
  font-weight: 800;
  font-size: 24px;
  color: var(--green);
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.results-compare-price {
  color: var(--muted-light);
  text-decoration: line-through;
  font-weight: 700;
  margin: 0;
}

.results-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.results-block h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.results-block ul,
.alt-list {
  padding-left: 20px;
  line-height: 1.8;
  color: var(--muted);
}

.results-small-link-wrap {
  margin-top: 16px;
}

.results-small-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.results-small-link:hover {
  text-decoration: underline;
}

.alt-card,
.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.alt-card h2,
.alt-card h3,
.mini-card h3 {
  margin-bottom: 10px;
}

.alt-card-featured {
  border: 2px solid var(--green);
  box-shadow: 0 12px 30px rgba(39, 75, 58, 0.14);
}

.alt-badge-row {
  margin-bottom: 10px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.info-list-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.info-list-item strong {
  display: block;
  margin-bottom: 6px;
}

.divider-space {
  margin-top: 28px;
}

.center {
  text-align: center;
}

.spacer-top {
  margin-top: 24px;
}

.tight {
  margin-bottom: 0;
}

@media (max-width: 840px) {
  .section-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 24px, var(--max-width));
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .brand-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: 84px;
    height: 84px;
  }

  .hero-card,
  .finder-panel,
  .results-card,
  .info-card,
  .section-card,
  .alt-card,
  .mini-card {
    padding: 18px;
  }

  .finder-grid,
  .alt-grid,
  .alt-grid-wide,
  .section-grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .results-actions,
  .alt-actions,
  .stack-row {
    flex-direction: column;
  }

  .finder-card,
  .btn {
    width: 100%;
  }

  .finder-card-rich {
    min-height: unset;
  }

  .results-price,
  .alt-price {
    font-size: 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtext,
  .subtext,
  .results-summary,
  .alt-summary,
  .body-muted,
  .finder-description,
  .finder-card-subtext {
    font-size: 15px;
  }
}