.growth-tool,
.growth-compare-page {
  --growth-ink: var(--color-text, #1d2a21);
  --growth-muted: color-mix(in srgb, var(--growth-ink) 66%, transparent);
  --growth-surface: var(--color-surface, #f7f4eb);
  --growth-panel: color-mix(in srgb, var(--growth-surface) 84%, white);
  --growth-line: color-mix(in srgb, var(--growth-ink) 16%, transparent);
  --growth-accent: var(--color-accent, #b8892e);
  color: var(--growth-ink);
}

.growth-tool {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(2rem, 7vw, 6rem) auto;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--growth-line);
  border-radius: clamp(1rem, 2vw, 1.75rem);
  background: var(--growth-panel);
  box-shadow: 0 1.4rem 4rem color-mix(in srgb, var(--growth-ink) 8%, transparent);
}

.growth-tool__header { max-width: 52rem; margin-bottom: 1.5rem; }
.growth-tool__header h2,
.growth-compare-page h1 {
  margin: .25rem 0 .75rem;
  color: inherit;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: .98;
  text-wrap: balance;
}
.growth-tool__header h2 { font-size: clamp(1.8rem, 4vw, 3.4rem); }
.growth-tool__header p,
.growth-compare-page__hero p { color: var(--growth-muted); line-height: 1.65; }
.growth-tool__eyebrow {
  margin: 0;
  color: var(--growth-accent) !important;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.growth-button {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .72rem 1.15rem;
  border: 1px solid var(--growth-accent);
  border-radius: 999px;
  background: var(--growth-accent);
  color: #fff;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.growth-button:hover { filter: brightness(.94); transform: translateY(-1px); }
.growth-button:focus-visible { outline: 3px solid color-mix(in srgb, var(--growth-accent) 45%, transparent); outline-offset: 3px; }
.growth-button[disabled],
.growth-button[aria-disabled="true"] { opacity: .48; pointer-events: none; }
.growth-button--quiet { background: transparent; color: var(--growth-ink); border-color: var(--growth-line); }
.growth-tool__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; margin-top: 1rem; }
.growth-tool__status { min-height: 1.5em; margin: .8rem 0 0; color: var(--growth-muted); }
.growth-tool__status[data-state="error"] { color: #a22222; }
.growth-tool__status[data-state="success"] { color: #236c42; }

.growth-field { display: grid; gap: .35rem; min-width: 0; }
.growth-field span { font-size: .82rem; font-weight: 750; }
.growth-field input,
.growth-field select {
  width: 100%;
  min-height: 3rem;
  box-sizing: border-box;
  border: 1px solid var(--growth-line);
  border-radius: .8rem;
  padding: .7rem .85rem;
  background: color-mix(in srgb, var(--growth-panel) 88%, white);
  color: var(--growth-ink);
  font: inherit;
}
.growth-field input:focus,
.growth-field select:focus { border-color: var(--growth-accent); outline: 3px solid color-mix(in srgb, var(--growth-accent) 20%, transparent); }
.growth-field--wide { grid-column: span 2; }
.growth-consent { display: flex; align-items: flex-start; gap: .6rem; margin: 1rem 0; color: var(--growth-muted); font-size: .9rem; line-height: 1.45; }
.growth-consent input { margin-top: .2rem; }
.growth-consent a { color: inherit; font-weight: 700; }
.growth-consent--compact { align-items: center; margin: 1.7rem 0 .2rem; }
.growth-honeypot { position: absolute !important; inset-inline-start: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.growth-search__form,
.growth-lead__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.growth-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.growth-product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--growth-line);
  border-radius: 1.1rem;
  background: var(--growth-panel);
}
.growth-product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: color-mix(in srgb, var(--growth-surface) 70%, white); }
.growth-product-card__body { padding: 1rem; }
.growth-product-card__body h3 { margin: 0 0 .35rem; font-size: 1.15rem; line-height: 1.2; }
.growth-product-card__body a { color: inherit; text-decoration: none; }
.growth-product-card__meta { margin: 0; color: var(--growth-muted); font-size: .88rem; }
.growth-product-card__price { display: block; margin-top: .7rem; font-size: 1.12rem; }
.growth-product-card__actions { display: flex; gap: .5rem; padding: 0 1rem 1rem; }
.growth-product-card__actions .growth-button { width: 100%; font-size: .82rem; }

.growth-comparator__selection { display: flex; flex-wrap: wrap; gap: .55rem; min-height: 2rem; }
.growth-comparator__chip { display: inline-flex; align-items: center; gap: .45rem; padding: .48rem .7rem; border-radius: 999px; background: color-mix(in srgb, var(--growth-accent) 12%, transparent); }
.growth-comparator__chip button { border: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }

.growth-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; margin-top: 1.5rem; }
.growth-pagination button { min-width: 2.5rem; min-height: 2.5rem; border: 1px solid var(--growth-line); border-radius: 50%; background: transparent; color: inherit; cursor: pointer; }
.growth-pagination button[aria-current="page"] { background: var(--growth-accent); color: white; border-color: var(--growth-accent); }

.growth-compare-page { width: min(1280px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(3rem, 8vw, 8rem) 0; }
.growth-compare-page__hero { max-width: 62rem; margin-bottom: clamp(2rem, 5vw, 4rem); }
.growth-compare-table-wrap { overflow-x: auto; border: 1px solid var(--growth-line); border-radius: 1.3rem; background: var(--growth-panel); }
.growth-compare-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.growth-compare-table th,
.growth-compare-table td { padding: 1rem; border-bottom: 1px solid var(--growth-line); text-align: start; vertical-align: top; }
.growth-compare-table thead th { vertical-align: bottom; }
.growth-compare-table thead th:not(:first-child) { min-width: 13rem; }
.growth-compare-table thead img { display: block; width: 100%; height: 11rem; margin-bottom: .7rem; object-fit: contain; }
.growth-compare-table thead a { color: inherit; font-size: 1.05rem; text-decoration: none; }
.growth-compare-table tbody th { width: 10rem; color: var(--growth-muted); font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; }
.growth-compare-page__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; margin-top: 1.5rem; }
.growth-empty { padding: 2rem; border: 1px solid var(--growth-line); border-radius: 1.2rem; background: var(--growth-panel); }

@media (max-width: 760px) {
  .growth-search__form,
  .growth-lead__fields { grid-template-columns: 1fr; }
  .growth-field--wide { grid-column: auto; }
  .growth-tool { width: min(100% - 1rem, 1180px); padding: 1rem; }
  .growth-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .growth-button { transition: none; }
  .growth-button:hover { transform: none; }
}
