:root {
  --forest: #173f32;
  --forest-deep: #0e2e24;
  --green: #25a66a;
  --green-dark: #168151;
  --green-soft: #e2f4e7;
  --lime: #e8f7b9;
  --yellow: #ffd66b;
  --cream: #fbfaf4;
  --page: #f3f7ef;
  --paper: #ffffff;
  --ink: #17241e;
  --muted: #68756f;
  --line: #dfe8df;
  --shadow: 0 14px 38px rgba(24, 63, 50, 0.1);
  --shadow-soft: 0 8px 24px rgba(24, 63, 50, 0.07);
  --radius: 24px;
  --font: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(37, 166, 106, 0.28);
  outline-offset: 3px;
}

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

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

[hidden] {
  display: none !important;
}

.container,
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--forest);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding: 14px 0;
  background: rgba(243, 247, 239, 0.86);
  backdrop-filter: blur(15px);
}

.header-inner {
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 20px;
  border: 1px solid rgba(23, 63, 50, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 22px rgba(23, 63, 50, 0.06);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand > span:last-child > span {
  color: var(--green);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 10px;
  border-radius: 13px 13px 13px 4px;
  background: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.brand-mark i {
  width: 5px;
  display: block;
  border-radius: 5px;
  background: var(--lime);
}

.brand-mark i:nth-child(1) { height: 8px; opacity: 0.65; }
.brand-mark i:nth-child(2) { height: 14px; }
.brand-mark i:nth-child(3) { height: 20px; background: var(--yellow); }

.header-cta,
.header-action {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--forest);
  font-size: 13px;
  font-weight: 750;
  transition: transform 0.18s ease, background 0.18s ease;
}

.header-cta:hover,
.header-action:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 28px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 91% 15%, rgba(255, 214, 107, 0.72) 0 75px, transparent 76px),
    radial-gradient(circle at 58% 90%, rgba(255, 255, 255, 0.55) 0 150px, transparent 151px),
    linear-gradient(125deg, #e9f7d9 0%, #d8f2df 50%, #ccebd9 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 63, 50, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 330px;
  height: 330px;
  right: -120px;
  bottom: -130px;
}

.hero::after {
  width: 230px;
  height: 230px;
  right: -70px;
  bottom: -80px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 485px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.75fr);
  align-items: center;
  gap: 52px;
  padding-block: 54px;
}

.hero-copy {
  max-width: 680px;
}

.hero-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 13px 7px 8px;
  border: 1px solid rgba(23, 63, 50, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #466055;
  font-size: 12px;
  font-weight: 700;
}

.hero-badge span {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 5.3vw, 76px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  margin-top: 6px;
  color: var(--green-dark);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 23px 0 0;
  color: #4d6258;
  font-size: 18px;
  line-height: 1.55;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  padding: 8px 12px;
  border-radius: 10px;
  color: #3d5148;
  background: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
}

.hero-benefits span {
  color: var(--green-dark);
}

.finder {
  position: relative;
  border: 1px solid rgba(23, 63, 50, 0.1);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.finder::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -16px;
  bottom: -16px;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  background: var(--yellow);
  transform: rotate(8deg);
}

.finder-top {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.finder-top > div > span {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finder-top h2 {
  margin: 4px 0 0;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.finder-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #3f6a53;
  background: var(--green-soft);
  font-size: 10px;
  font-weight: 700;
}

.finder-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: livePulse 1.8s infinite;
}

.finder-toggle {
  display: none;
}

.finder-body {
  padding: 21px 20px 18px;
}

.finder-control + .finder-control {
  margin-top: 19px;
}

.finder-control label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 11px;
  font-size: 12px;
  font-weight: 750;
}

.finder-control output {
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--forest);
  background: var(--green-soft);
  white-space: nowrap;
}

.finder-control input {
  width: 100%;
  height: 7px;
  margin: 0;
  border-radius: 999px;
  appearance: none;
  cursor: pointer;
}

.finder-control input::-webkit-slider-thumb {
  width: 21px;
  height: 21px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green);
  appearance: none;
}

.finder-control input::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green);
}

.range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: #8a9690;
  font-size: 10px;
}

.finder-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 0;
  padding: 11px 12px;
  border-radius: 11px;
  background: var(--cream);
  font-size: 11px;
}

.finder-match strong {
  display: flex;
  align-items: center;
  gap: 6px;
}

.finder-match b {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
}

.primary-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #2bb675, #21945f);
  box-shadow: 0 8px 17px rgba(37, 166, 106, 0.2);
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.primary-button:hover {
  box-shadow: 0 12px 22px rgba(37, 166, 106, 0.27);
  transform: translateY(-2px);
}

.finder-button {
  width: 100%;
  margin-top: 14px;
}

.finder-button span {
  font-size: 18px;
}

.finder-note {
  margin: 10px 0 0;
  color: #87928d;
  font-size: 10px;
  text-align: center;
}

.offers-section {
  padding: 78px 0 88px;
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 30px;
}

.section-heading > div {
  max-width: 820px;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.how-heading h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1;
}

.section-heading p:not(.section-kicker) {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
}

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

.offer-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.offer-card:hover {
  border-color: #9dd5b7;
  box-shadow: 0 17px 34px rgba(23, 63, 50, 0.12);
  transform: translateY(-5px);
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: #6d7b74;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer-label {
  padding: 6px 9px;
  border-radius: 999px;
  color: #286245;
  background: var(--green-soft);
}

.offer-card:nth-child(3n + 2) .offer-label {
  color: #7a5c0b;
  background: #fff2c9;
}

.offer-card:nth-child(3n + 3) .offer-label {
  color: #4e6618;
  background: var(--lime);
}

.offer-number {
  color: #a2ada7;
}

.offer-logo {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #edf1eb;
  border-radius: 15px;
  background: var(--cream);
}

.offer-logo img {
  width: auto;
  max-width: 92%;
  max-height: 74px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.offer-card:hover .offer-logo img {
  transform: scale(1.035);
}

.offer-amount {
  margin: 18px 2px 13px;
}

.offer-amount span,
.offer-amount strong {
  display: block;
}

.offer-amount span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer-amount strong {
  margin-top: 4px;
  font-size: 27px;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.offer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 15px;
  padding: 12px;
  border-radius: 12px;
  background: #f7f9f5;
}

.offer-stats div {
  min-width: 0;
}

.offer-stats div + div {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.offer-stats dt {
  color: var(--muted);
  font-size: 10px;
}

.offer-stats dd {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.offer-cta {
  width: 100%;
  margin-top: auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.offer-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -50%;
  bottom: -50%;
  left: -35%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  transform: skewX(-18deg);
  animation: buttonShine 3.6s ease-in-out infinite;
}

.offer-cta__icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--lime);
  position: relative;
}

.offer-cta__icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--forest);
  border-right: 2px solid var(--forest);
  transform: rotate(45deg);
}

.offer-details {
  min-height: 34px;
  margin-top: 7px;
  border: 0;
  color: var(--green-dark);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.filter-empty,
.empty-state {
  padding: 44px 20px;
  border: 1px dashed #afc4b6;
  border-radius: 18px;
  background: var(--cream);
  text-align: center;
}

.filter-empty strong,
.filter-empty span,
.empty-state strong,
.empty-state span {
  display: block;
}

.filter-empty button,
.show-more {
  min-height: 46px;
  margin-top: 15px;
  padding: 0 17px;
  border: 0;
  border-radius: 11px;
  color: var(--forest);
  background: var(--lime);
  font-weight: 750;
  cursor: pointer;
}

.show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 27px auto 0;
}

.how-section {
  padding: 76px 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(232, 247, 185, 0.11) 0 130px, transparent 131px),
    var(--forest);
}

.how-heading {
  max-width: 780px;
  margin-bottom: 31px;
}

.how-heading .section-kicker {
  color: var(--lime);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.how-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.how-card > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--forest);
  background: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.how-card:nth-child(2) > span { background: var(--yellow); }
.how-card:nth-child(3) > span { background: #c7efe0; }

.how-card h3 {
  margin: 28px 0 8px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.how-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.comparison-section {
  padding: 82px 0;
  background: var(--cream);
}

.comparison-heading {
  align-items: flex-end;
}

.comparison-count {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 999px;
  color: #315a45;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 750;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.comparison-card__head {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border-bottom: 1px solid var(--line);
  background: #fbfdf9;
}

.comparison-card__head img {
  width: 105px;
  height: 62px;
  padding: 7px;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
}

.comparison-card__head span {
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.comparison-card__head h3 {
  margin: 3px 0 0;
  font-size: 20px;
}

.comparison-card__rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 8px 17px;
}

.comparison-card__rows div {
  min-width: 0;
  padding: 10px 0;
  border-bottom: 1px solid #edf0eb;
}

.comparison-card__rows div:nth-child(even) {
  padding-left: 15px;
}

.comparison-card__rows div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.comparison-card__rows dt {
  color: var(--muted);
  font-size: 10px;
}

.comparison-card__rows dd {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.comparison-example {
  margin: 0 17px 14px;
  padding: 12px;
  border-radius: 11px;
  background: #f5f8f1;
}

.comparison-example span {
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-example p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.comparison-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 17px 17px;
}

.comparison-actions button,
.comparison-actions a {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.comparison-actions a {
  border-color: var(--forest);
  color: #fff;
  background: var(--forest);
}

.safety-section {
  padding: 28px 0;
  background: #fff;
}

.safety-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  align-items: center;
  gap: 25px;
  padding: 24px 28px;
  border: 1px solid #eadba8;
  border-radius: 20px;
  background: #fff9df;
}

.safety-card > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.safety-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 14px;
  color: #6b5006;
  background: var(--yellow);
  font-size: 20px;
  font-weight: 800;
}

.safety-card h2 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.safety-card .section-kicker {
  margin-bottom: 3px;
  color: #987211;
}

.safety-card > p {
  margin: 0;
  color: #6d654e;
  font-size: 12px;
}

.safety-card > a {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.faq-section {
  padding: 78px 0 88px;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
}

.faq-intro {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--green-soft);
}

.faq-intro::after {
  content: "?";
  position: absolute;
  right: 20px;
  bottom: -38px;
  color: rgba(23, 63, 50, 0.08);
  font-size: 190px;
  font-weight: 800;
  line-height: 1;
}

.faq-intro p:last-child {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-intro a {
  color: var(--green-dark);
  font-weight: 750;
}

.faq-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.faq-list details[open] {
  border-color: #acd8bd;
  background: #fbfefb;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  list-style: none;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  transition: transform 0.18s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin: 52px auto 18px;
  padding: 42px 0 20px;
  border-radius: 28px;
  color: #fff;
  background: var(--forest-deep);
}

.footer-main,
.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.3fr;
  align-items: start;
  gap: 30px;
}

.brand--footer {
  color: #fff;
}

.brand--footer .brand-mark {
  background: var(--green);
}

.footer-main > p,
.footer-top > p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-main nav,
.footer-top nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
  font-size: 13px;
}

.footer-main nav a:hover,
.footer-top nav a:hover {
  color: var(--lime);
}

.footer-disclaimer {
  margin-top: 26px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.footer-bottom a {
  color: var(--lime);
}

.mobile-action {
  display: none;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 24, 0.68);
  backdrop-filter: blur(5px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(7, 25, 19, 0.3);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  cursor: pointer;
}

.modal-layout {
  padding: 24px;
}

.modal-summary {
  margin: -24px -24px 0;
  padding: 24px 24px 0;
  background: linear-gradient(135deg, #e7f6df, #d7f0df);
}

.modal-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 48px;
}

.modal-logo {
  width: 92px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
}

.modal-logo img {
  max-height: 48px;
  object-fit: contain;
}

.modal-brand span {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-brand h2 {
  margin: 2px 0 0;
  font-size: 27px;
}

.modal-hero {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.modal-hero > div {
  padding: 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.modal-hero > div span,
.modal-hero > div strong {
  display: block;
}

.modal-hero > div span {
  color: var(--muted);
  font-size: 10px;
}

.modal-hero > div strong {
  margin-top: 3px;
  font-size: 15px;
}

.modal-hero-cta {
  white-space: nowrap;
}

.modal-tabs {
  display: flex;
  gap: 5px;
  margin-top: 20px;
}

.modal-tab {
  padding: 12px 14px;
  border: 0;
  border-radius: 10px 10px 0 0;
  color: #63736b;
  background: transparent;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.modal-tab.is-active {
  color: var(--forest);
  background: #fff;
}

.modal-panel {
  display: none;
  padding-top: 23px;
}

.modal-panel.is-active {
  display: block;
}

.modal-panel h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-info-list,
.creditor-data {
  margin: 0;
}

.modal-info-list div,
.creditor-data div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.modal-info-list dt,
.creditor-data dt {
  color: var(--muted);
}

.modal-info-list dd,
.creditor-data dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.calculation,
.modal-documents,
.modal-warning {
  margin-top: 15px;
  padding: 14px;
  border-radius: 12px;
  background: var(--cream);
}

.calculation > span,
.modal-documents > span {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculation p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

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

.creditor-data div {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.creditor-data dd {
  margin-top: 4px;
  text-align: left;
}

.modal-documents {
  display: grid;
  gap: 8px;
}

.modal-documents a {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-warning {
  display: flex;
  gap: 10px;
  color: #655b3f;
  background: #fff7d9;
}

.modal-warning > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  border-radius: 8px;
  background: var(--yellow);
  font-weight: 800;
}

.modal-warning p {
  margin: 0;
  font-size: 11px;
}

.modal-warning strong {
  display: block;
  color: #493f28;
}

.legal-page {
  min-height: 100vh;
}

.legal-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
  border-radius: 28px;
  background: linear-gradient(130deg, #e7f6d9, #d5efde);
}

.section-number {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(47px, 6vw, 78px);
  letter-spacing: -0.058em;
  line-height: 0.96;
}

.legal-hero p:last-child {
  max-width: 680px;
  margin: 21px 0 0;
  color: #53675d;
}

.legal-content {
  padding-top: 44px;
  padding-bottom: 76px;
}

.legal-toc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.legal-toc a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--green-dark);
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.legal-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.legal-copy section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.legal-copy h2 {
  margin: 0 0 11px;
  font-size: 20px;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 13px;
}

.legal-copy a {
  color: var(--green-dark);
  text-decoration: underline;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 166, 106, 0.25); }
  50% { box-shadow: 0 0 0 5px rgba(37, 166, 106, 0); }
}

@keyframes buttonShine {
  0%, 54% { left: -35%; }
  82%, 100% { left: 125%; }
}

@media (max-width: 980px) {
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr); gap: 30px; }
  .hero h1 { font-size: 55px; }
  .offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comparison-grid { grid-template-columns: 1fr; }
  .safety-card { grid-template-columns: 1fr 1fr; }
  .safety-card > a { grid-column: 2; }
}

@media (max-width: 760px) {
  .container,
  .wrap { width: min(100% - 28px, 640px); }
  .site-header { padding: 8px 0; }
  .header-inner { min-height: 58px; display: flex; justify-content: space-between; padding: 0 12px; border-radius: 15px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 36px; height: 36px; padding: 9px; border-radius: 12px 12px 12px 4px; }
  .header-cta,
  .legal-page .header-action { display: none; }
  .hero { width: calc(100% - 16px); margin-bottom: 14px; border-radius: 24px; }
  .hero-layout { min-height: 0; grid-template-columns: 1fr; gap: 28px; padding-block: 38px 32px; }
  .hero-copy { text-align: center; }
  .hero-badge { margin-inline: auto; }
  .hero h1 { margin-inline: auto; font-size: clamp(44px, 12vw, 61px); }
  .hero-lead { display: none; margin-inline: auto; font-size: 16px; }
  .hero-benefits,
  .finder { display: none; }
  .how-grid { grid-template-columns: 1fr; }
  .how-card { min-height: 160px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { min-height: 220px; }
  .safety-card { grid-template-columns: 1fr; }
  .safety-card > a { grid-column: auto; }
  .footer-main,
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-main nav,
  .footer-top nav { grid-column: 1 / -1; }
  .legal-toc { grid-template-columns: 1fr 1fr; }
  .legal-copy { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { padding-bottom: 72px; background: #fff; }
  .container,
  .wrap { width: calc(100% - 20px); }
  .header-inner { width: calc(100% - 16px); }
  .hero { margin-top: 0; background: linear-gradient(180deg, #e8f6d9, #d7f0df); }
  .hero-layout { width: calc(100% - 26px); padding-block: 29px 24px; }
  .hero-badge { margin-bottom: 13px; font-size: 10px; }
  .hero h1 { font-size: 45px; }
  .hero-lead { margin-top: 16px; font-size: 15px; }
  .hero-benefits { gap: 6px; margin-top: 17px; }
  .hero-benefits li { padding: 7px 8px; font-size: 9px; }
  .finder::before { display: none; }
  .finder-top { min-height: 72px; grid-template-columns: 1fr auto; padding: 14px; }
  .finder-top h2 { font-size: 19px; }
  .finder-live { display: none; }
  .finder-toggle { display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; border: 0; border-radius: 8px; color: var(--forest); background: var(--lime); font-size: 10px; font-weight: 750; }
  .finder-toggle i { width: 7px; height: 7px; border-right: 2px solid var(--forest); border-bottom: 2px solid var(--forest); transform: rotate(45deg); }
  .finder.is-collapsed .finder-top { border-bottom: 0; }
  .finder-body { padding: 15px 14px 14px; }
  .offers-section,
  .comparison-section,
  .how-section,
  .faq-section { padding: 55px 0; }
  .section-heading { margin-bottom: 23px; }
  .section-heading h2,
  .how-heading h2,
  .faq-intro h2 { font-size: 39px; }
  .offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .offer-card { padding: 9px; border-radius: 13px; box-shadow: 0 5px 14px rgba(24, 63, 50, 0.07); }
  .offer-card:hover { box-shadow: 0 5px 14px rgba(24, 63, 50, 0.07); transform: none; }
  .offer-top { margin-bottom: 7px; font-size: 8px; letter-spacing: 0; }
  .offer-label { padding: 4px 6px; }
  .offer-logo { height: 69px; padding: 6px; border-radius: 10px; }
  .offer-logo img { max-height: 54px; }
  .offer-amount { margin: 11px 1px 8px; }
  .offer-amount span { font-size: 8px; }
  .offer-amount strong { font-size: 17px; }
  .offer-stats { margin-bottom: 8px; padding: 7px; border-radius: 8px; }
  .offer-stats div + div { padding-left: 6px; }
  .offer-stats dt { font-size: 8px; }
  .offer-stats dd { font-size: 9px; }
  .offer-cta { min-height: 40px; padding: 0 6px; border-radius: 8px; gap: 5px; font-size: 10px; line-height: 1.12; }
  .offer-cta__icon { width: 19px; height: 19px; flex-basis: 19px; }
  .offer-cta__icon::before { left: 7px; top: 7px; width: 5px; height: 5px; }
  .offer-details { min-height: 29px; margin-top: 3px; font-size: 9px; }
  .comparison-heading { align-items: flex-start; flex-direction: column; }
  .comparison-card__head { grid-template-columns: 90px 1fr; }
  .comparison-card__head img { width: 86px; }
  .safety-section { padding: 20px 0; }
  .safety-card { padding: 17px; }
  .faq-intro { min-height: 200px; padding: 20px; }
  .faq-list summary { min-height: 58px; padding: 14px; font-size: 14px; }
  .faq-list p { padding: 0 14px 15px; }
  .modal { padding: 8px; }
  .modal-dialog { max-height: calc(100vh - 16px); border-radius: 16px; }
  .modal-layout { padding: 16px; }
  .modal-summary { margin: -16px -16px 0; padding: 16px 16px 0; }
  .modal-hero { grid-template-columns: 1fr 1fr; }
  .modal-hero-cta { grid-column: 1 / -1; }
  .modal-tabs { margin-inline: -4px; overflow-x: auto; }
  .modal-tab { white-space: nowrap; }
  .modal-info-grid,
  .creditor-data { grid-template-columns: 1fr; }
  .site-footer { width: calc(100% - 16px); margin-top: 34px; margin-bottom: 8px; padding-top: 32px; border-radius: 23px; }
  .footer-main,
  .footer-top { grid-template-columns: 1fr; gap: 18px; }
  .footer-main nav,
  .footer-top nav { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .mobile-action { position: fixed; z-index: 45; right: 8px; bottom: 8px; left: 8px; min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 9px 8px 15px; border-radius: 14px; color: #fff; background: var(--forest); box-shadow: 0 10px 28px rgba(14, 46, 36, 0.28); }
  .mobile-action span,
  .mobile-action strong { display: block; }
  .mobile-action span { color: rgba(255,255,255,.62); font-size: 9px; }
  .mobile-action strong { font-size: 12px; }
  .mobile-action button { min-height: 39px; padding: 0 16px; border: 0; border-radius: 10px; color: var(--forest); background: var(--lime); font-size: 11px; font-weight: 800; }
  .legal-hero { width: calc(100% - 16px); padding: 48px 0; border-radius: 22px; }
  .legal-hero h1 { font-size: 46px; }
  .legal-content { padding-top: 30px; padding-bottom: 52px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-copy section { padding: 18px; }
}

@media (max-width: 380px) {
  .offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
