.fm-page {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 44px);
  color: var(--fm-ink);
}

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

.fm-tool-hero,
.fm-info-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(12, 81, 53, 0.13);
  border-radius: 30px;
  background: radial-gradient(circle at 88% 14%, rgba(255, 241, 173, 0.9), transparent 30%), linear-gradient(130deg, var(--fm-green-50), var(--fm-cream));
}

.fm-tool-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 44px;
  align-items: center;
  padding: clamp(40px, 6vw, 82px);
}

.fm-tool-hero > div:first-child,
.fm-info-hero > * {
  position: relative;
  z-index: 1;
}

.fm-tool-hero h1,
.fm-info-hero h1,
.fm-download-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--fm-ink);
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 790;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.fm-tool-hero > div:first-child > p:last-child,
.fm-info-hero > p:last-child,
.fm-download-hero > div:first-child > p {
  max-width: 850px;
  margin: 22px 0 0;
  color: var(--fm-muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.72;
}

.fm-tool-hero__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--fm-green-800);
  box-shadow: 0 22px 55px rgba(8, 41, 29, 0.2), inset 0 0 0 9px rgba(255,255,255,.08);
  color: var(--fm-gold-light);
  font-size: 34px;
  font-weight: 850;
}

.fm-tool-panel,
.fm-tool-output {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--fm-line);
  border-radius: 24px;
  background: var(--fm-white);
  box-shadow: 0 12px 38px rgba(8, 41, 29, 0.07);
}

.fm-tool-output[hidden] {
  display: none;
}

.fm-panel-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fm-panel-heading h2,
.fm-tool-output h2,
.fm-page-cta h2,
.fm-safety-banner h2 {
  margin: 0;
  color: var(--fm-ink);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.fm-panel-heading > span {
  color: var(--fm-green-700);
  font-size: 14px;
  font-weight: 750;
}

.fm-tool-search label,
.fm-control-grid label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--fm-ink);
  font-size: 14px;
  font-weight: 750;
}

.fm-input-action {
  display: flex;
  gap: 10px;
}

.fm-input-action input,
.fm-control-grid input,
.fm-control-grid select,
.fm-mix-row input {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid var(--fm-line);
  border-radius: 12px;
  outline: 0;
  background: var(--fm-green-50);
  color: var(--fm-ink);
  font: inherit;
}

.fm-input-action input:focus,
.fm-control-grid input:focus,
.fm-control-grid select:focus,
.fm-mix-row input:focus {
  border-color: var(--fm-green-700);
  box-shadow: 0 0 0 4px rgba(19,112,71,.12);
}

.fm-input-action button,
.fm-primary-action,
.fm-page-cta > a,
.fm-owner-section > a,
.fm-safety-banner > a,
.fm-correction-section > a {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: var(--fm-green-800);
  color: var(--fm-white);
  cursor: pointer;
  font: inherit;
  font-weight: 780;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.fm-input-action button:hover,
.fm-primary-action:hover:not(:disabled),
.fm-page-cta > a:hover,
.fm-owner-section > a:hover,
.fm-safety-banner > a:hover,
.fm-correction-section > a:hover {
  background: var(--fm-green-950);
  box-shadow: 0 10px 26px rgba(8,41,29,.18);
  transform: translateY(-1px);
}

.fm-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.fm-primary-action:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.fm-suggestion-list {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 7px;
  max-height: 330px;
  margin-top: 9px;
  padding: 9px;
  overflow-y: auto;
  border: 1px solid var(--fm-line);
  border-radius: 14px;
  background: var(--fm-white);
  box-shadow: 0 18px 42px rgba(8,41,29,.12);
}

.fm-suggestion-list[hidden] {
  display: none;
}

.fm-suggestion-item {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 13px;
  border: 0;
  border-radius: 10px;
  background: var(--fm-green-50);
  color: var(--fm-ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.fm-suggestion-item:hover {
  background: var(--fm-green-100);
}

.fm-suggestion-item span {
  min-width: 0;
}

.fm-suggestion-item strong,
.fm-suggestion-item small {
  display: block;
}

.fm-suggestion-item strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fm-suggestion-item small {
  margin-top: 3px;
  color: var(--fm-muted);
}

.fm-suggestion-item b {
  flex: 0 0 auto;
  color: var(--fm-green-700);
}

.fm-selected-foods,
.fm-mix-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.fm-selected-card,
.fm-mix-row {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--fm-line);
  border-radius: 15px;
  background: var(--fm-green-50);
}

.fm-selected-card__mark,
.fm-result-mark {
  display: inline-flex;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--fm-green-100);
  color: var(--fm-green-800);
  font-size: 12px;
  font-weight: 850;
}

.fm-selected-card > div,
.fm-mix-row > div:first-of-type {
  min-width: 0;
  flex: 1;
}

.fm-selected-card strong,
.fm-selected-card small,
.fm-mix-row strong,
.fm-mix-row small {
  display: block;
}

.fm-selected-card strong,
.fm-mix-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fm-selected-card small,
.fm-mix-row small {
  margin-top: 3px;
  color: var(--fm-muted);
}

.fm-selected-card button,
.fm-mix-row button {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid var(--fm-line);
  border-radius: 8px;
  background: var(--fm-white);
  color: #8d2c2c;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
}

.fm-tool-empty,
.fm-tool-error,
.fm-tool-loading {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed var(--fm-line);
  border-radius: 16px;
  background: var(--fm-green-50);
  color: var(--fm-muted);
  text-align: center;
}

.fm-tool-error {
  border-color: #e3b8b8;
  background: #fff6f6;
  color: #812a2a;
}

.fm-control-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr .7fr;
  gap: 16px;
}

.fm-ranking-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.fm-ranking-row {
  display: grid;
  grid-template-columns: 48px 48px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--fm-line);
  border-radius: 14px;
  background: var(--fm-white);
}

.fm-ranking-row__rank {
  color: var(--fm-green-700);
  font-weight: 850;
  text-align: center;
}

.fm-ranking-row h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.fm-ranking-row p {
  margin: 4px 0 0;
  color: var(--fm-muted);
  font-size: 12px;
}

.fm-ranking-row__value {
  color: var(--fm-green-900);
  font-size: 18px;
  font-weight: 850;
  white-space: nowrap;
}

.fm-compare-wrap {
  overflow-x: auto;
}

.fm-compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--fm-line);
  border-radius: 14px;
}

.fm-compare-table th,
.fm-compare-table td {
  padding: 13px 14px;
  border-right: 1px solid var(--fm-line);
  border-bottom: 1px solid var(--fm-line);
  text-align: left;
}

.fm-compare-table th {
  background: var(--fm-green-50);
  color: var(--fm-green-900);
}

.fm-compare-table tr:last-child td,
.fm-compare-table tr:last-child th {
  border-bottom: 0;
}

.fm-compare-table th:last-child,
.fm-compare-table td:last-child {
  border-right: 0;
}

.fm-compare-table td {
  font-weight: 700;
}

.fm-mix-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 120px auto;
}

.fm-mix-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--fm-muted);
  font-size: 12px;
}

.fm-mix-row input {
  min-height: 42px;
  padding: 0 10px;
}

.fm-total-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  margin-top: 22px;
}

.fm-total-card {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--fm-line);
  border-radius: 14px;
  background: var(--fm-green-50);
}

.fm-total-card span {
  color: var(--fm-muted);
  font-size: 13px;
}

.fm-total-card strong {
  color: var(--fm-green-900);
  font-size: 22px;
}

.fm-mix-coverage-note {
  margin: 16px 0 0;
  color: var(--fm-muted);
  font-size: 13px;
  line-height: 1.6;
}

.fm-education-note,
.fm-transparency-note,
.fm-policy-alert,
.fm-legal-note {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--fm-gold);
  border-radius: 12px;
  background: var(--fm-cream);
  color: var(--fm-muted);
}

.fm-education-note strong,
.fm-transparency-note strong,
.fm-policy-alert strong {
  color: var(--fm-ink);
}

.fm-education-note p,
.fm-transparency-note p,
.fm-policy-alert p {
  margin: 6px 0;
  line-height: 1.65;
}

.fm-education-note a {
  color: var(--fm-green-800);
  font-weight: 750;
}

.fm-regional-grid,
.fm-feature-grid,
.fm-contact-grid,
.fm-definition-grid,
.fm-method-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.fm-regional-card,
.fm-feature-grid article,
.fm-contact-grid article,
.fm-definition-grid article,
.fm-method-cards article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--fm-line);
  border-radius: 20px;
  background: var(--fm-white);
  box-shadow: 0 8px 28px rgba(8,41,29,.055);
}

.fm-regional-card__mark,
.fm-feature-grid article > span,
.fm-contact-grid article > span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 13px;
  background: var(--fm-green-100);
  color: var(--fm-green-800);
  font-size: 12px;
  font-weight: 850;
}

.fm-regional-card h2,
.fm-feature-grid h2,
.fm-contact-grid h2,
.fm-definition-grid h3,
.fm-method-cards h3 {
  margin: 0;
  color: var(--fm-ink);
  font-size: 21px;
  line-height: 1.25;
}

.fm-regional-card p,
.fm-feature-grid p,
.fm-contact-grid p,
.fm-definition-grid p,
.fm-method-cards p {
  margin: 12px 0 0;
  color: var(--fm-muted);
  line-height: 1.65;
}

.fm-regional-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.fm-regional-card a {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--fm-green-50);
  color: var(--fm-green-800);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.fm-regional-card a:hover {
  background: var(--fm-green-800);
  color: var(--fm-white);
}

.fm-page-cta,
.fm-owner-section,
.fm-safety-banner,
.fm-correction-section {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(48px, 7vw, 86px);
  padding: clamp(28px, 5vw, 58px);
  border-radius: 24px;
  background: var(--fm-green-900);
  color: var(--fm-white);
}

.fm-page-cta h2,
.fm-owner-section h2,
.fm-safety-banner h2,
.fm-correction-section h2 {
  color: var(--fm-white);
}

.fm-page-cta p:last-child,
.fm-owner-section p:last-child,
.fm-safety-banner p:last-child,
.fm-correction-section p:last-child {
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
}

.fm-page-cta > a,
.fm-owner-section > a,
.fm-safety-banner > a,
.fm-correction-section > a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border: 2px solid transparent;
  background: var(--fm-gold) !important;
  color: var(--fm-green-950) !important;
}

.fm-page-cta > a:hover,
.fm-page-cta > a:focus-visible,
.fm-owner-section > a:hover,
.fm-owner-section > a:focus-visible,
.fm-safety-banner > a:hover,
.fm-safety-banner > a:focus-visible,
.fm-correction-section > a:hover,
.fm-correction-section > a:focus-visible {
  border-color: var(--fm-gold) !important;
  background: var(--fm-green-950) !important;
  color: var(--fm-gold-light) !important;
}

.fm-info-hero {
  padding: clamp(52px, 8vw, 110px) clamp(28px, 7vw, 90px);
}

.fm-info-hero > p:last-child {
  max-width: 900px;
}

.fm-statement-grid,
.fm-split-section,
.fm-contact-details {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
  margin-top: clamp(62px, 9vw, 120px);
}

.fm-statement-grid h2,
.fm-split-section h2,
.fm-contact-details h2,
.fm-content-section h2,
.fm-contact-checklist h2 {
  margin: 0;
  color: var(--fm-ink);
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.042em;
  line-height: 1.05;
}

.fm-statement-grid > div:last-child p,
.fm-split-section > div:first-child p,
.fm-contact-details > div:last-child,
.fm-content-section > p,
.fm-contact-checklist > p {
  color: var(--fm-muted);
  font-size: 17px;
  line-height: 1.8;
}

.fm-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(50px, 7vw, 90px);
}

.fm-number-stack {
  display: grid;
  gap: 10px;
}

.fm-number-stack div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--fm-line);
  border-radius: 15px;
  background: var(--fm-green-50);
}

.fm-number-stack strong {
  color: var(--fm-green-800);
  font-size: 28px;
}

.fm-number-stack span {
  color: var(--fm-muted);
}

.fm-inline-link,
.fm-source-buttons a,
.fm-contact-grid a {
  display: inline-flex;
  margin-top: 15px;
  color: var(--fm-green-800);
  font-weight: 780;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.fm-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--fm-line);
  border-radius: 14px;
  background: var(--fm-white);
}

.fm-toc strong {
  margin-right: 8px;
}

.fm-toc a,
.fm-source-buttons a {
  padding: 8px 11px;
  border-radius: 9px;
  background: var(--fm-green-50);
  color: var(--fm-green-800);
  text-decoration: none;
}

.fm-content-section,
.fm-contact-checklist {
  margin-top: clamp(56px, 8vw, 100px);
  scroll-margin-top: 120px;
}

.fm-method-cards,
.fm-definition-grid {
  margin-top: 26px;
}

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

.fm-process-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: fm-process;
}

.fm-process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 26px;
  padding: 22px 0 22px 64px;
  border-bottom: 1px solid var(--fm-line);
  counter-increment: fm-process;
}

.fm-process-list li::before {
  content: counter(fm-process, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 19px;
  color: var(--fm-green-700);
  font-weight: 850;
}

.fm-process-list span {
  color: var(--fm-muted);
  line-height: 1.65;
}

.fm-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.fm-check-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border: 1px solid var(--fm-line);
  border-radius: 12px;
  background: var(--fm-white);
  color: var(--fm-muted);
  line-height: 1.55;
}

.fm-check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--fm-green-700);
  border-bottom: 2px solid var(--fm-green-700);
  transform: rotate(-45deg);
}

.fm-source-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.fm-download-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: center;
  padding: clamp(38px, 7vw, 90px);
  border-radius: 30px;
  background: radial-gradient(circle at 85% 8%, rgba(255,241,173,.9), transparent 30%), linear-gradient(135deg,var(--fm-green-50),var(--fm-cream));
}

.fm-download-hero > div:first-child > a {
  display: inline-flex;
  flex-direction: column;
  margin-top: 28px;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--fm-green-900);
  color: var(--fm-white);
  text-decoration: none;
}

.fm-download-hero > div:first-child > a span {
  font-size: 11px;
}

.fm-download-hero > div:first-child > a strong {
  font-size: 21px;
}

.fm-phone-illustration {
  padding: 18px;
  border: 9px solid var(--fm-green-950);
  border-radius: 44px;
  background: var(--fm-white);
  box-shadow: 0 25px 55px rgba(8,41,29,.24);
  transform: rotate(2deg);
}

.fm-phone-illustration > div {
  display: flex;
  min-height: 480px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
  border-radius: 25px;
  background: radial-gradient(circle at 70% 12%,rgba(231,180,22,.35),transparent 28%),linear-gradient(155deg,var(--fm-cream),var(--fm-green-50));
  text-align: center;
}

.fm-phone-illustration span {
  color: var(--fm-green-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.fm-phone-illustration strong {
  margin-top: 16px;
  color: var(--fm-ink);
  font-size: 36px;
  line-height: 1.05;
}

.fm-phone-illustration small {
  margin-top: 16px;
  color: var(--fm-muted);
  line-height: 1.6;
}

.fm-app-feature-list {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  margin-top: clamp(56px,8vw,100px);
}

.fm-app-feature-list article {
  display: flex;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--fm-line);
  border-radius: 18px;
}

.fm-app-feature-list article > span {
  color: var(--fm-green-700);
  font-weight: 850;
}

.fm-app-feature-list h2 {
  margin: 0;
  font-size: 22px;
}

.fm-app-feature-list p {
  margin: 10px 0 0;
  color: var(--fm-muted);
  line-height: 1.65;
}

.fm-safety-banner {
  background: var(--fm-cream);
  color: var(--fm-ink);
}

.fm-safety-banner h2 {
  color: var(--fm-ink);
}

.fm-safety-banner p:last-child {
  color: var(--fm-muted);
}

.fm-contact-grid a {
  margin-top: 20px;
}

.fm-contact-details > div:last-child p {
  display: grid;
  grid-template-columns: 120px minmax(0,1fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--fm-line);
  margin: 0;
}

.fm-contact-details a {
  color: var(--fm-green-800);
}

.fm-contact-details span {
  color: var(--fm-muted);
}

.fm-policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0,1fr);
  gap: clamp(34px,6vw,84px);
  align-items: start;
  margin-top: clamp(50px,7vw,90px);
}

.fm-policy-layout > aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--fm-line);
  border-radius: 16px;
  background: var(--fm-green-50);
}

.fm-policy-layout > aside span {
  margin-bottom: 12px;
  color: var(--fm-muted);
  font-size: 13px;
}

.fm-policy-layout > aside a {
  padding: 8px 0;
  border-bottom: 1px solid var(--fm-line);
  color: var(--fm-green-800);
  font-size: 14px;
  text-decoration: none;
}

.fm-policy-layout article section {
  padding: 0 0 34px;
  scroll-margin-top: 120px;
}

.fm-policy-layout article h2 {
  margin: 0 0 14px;
  color: var(--fm-ink);
  font-size: clamp(24px,3vw,34px);
  letter-spacing: -.025em;
}

.fm-policy-layout article h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.fm-policy-layout article p,
.fm-policy-layout article li {
  color: var(--fm-muted);
  font-size: 16px;
  line-height: 1.8;
}

.fm-policy-layout article a {
  color: var(--fm-green-800);
}

.fm-policy-alert {
  margin-top: 22px;
}

.fm-legal-note {
  font-size: 13px;
  line-height: 1.6;
}

.fm-archive-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  margin-top: 32px;
}

.fm-archive-grid .fm-guide-card h2 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.28;
}

.fm-archive-grid .fm-guide-card h2 a {
  color: inherit;
  text-decoration: none;
}

.fm-archive-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.fm-archive-pagination a,
.fm-archive-pagination span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--fm-line);
  border-radius: 10px;
  color: var(--fm-green-900);
  text-decoration: none;
}

.fm-archive-pagination .current,
.fm-archive-pagination a:hover {
  border-color: var(--fm-green-800);
  background: var(--fm-green-800);
  color: var(--fm-white);
}

@media (max-width: 1100px) {
  .fm-feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .fm-regional-grid,.fm-contact-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .fm-total-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .fm-archive-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 800px) {
  .fm-tool-hero { grid-template-columns: 1fr; }
  .fm-tool-hero__mark { display: none; }
  .fm-control-grid { grid-template-columns: 1fr; }
  .fm-statement-grid,.fm-split-section,.fm-contact-details,.fm-policy-layout { grid-template-columns: 1fr; }
  .fm-policy-layout > aside { position: static; }
  .fm-download-hero { grid-template-columns: 1fr; }
  .fm-phone-illustration { width: min(100%,360px); margin: 0 auto; }
  .fm-page-cta,.fm-owner-section,.fm-safety-banner,.fm-correction-section { align-items: flex-start; flex-direction: column; }
  .fm-method-cards { grid-template-columns: 1fr; }
  .fm-total-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 600px) {
  .fm-page { padding: 10px; }
  .fm-tool-hero,.fm-info-hero,.fm-download-hero { padding: 36px 22px; border-radius: 20px; }
  .fm-tool-hero h1,.fm-info-hero h1,.fm-download-hero h1 { font-size: 42px; }
  .fm-input-action { flex-direction: column; }
  .fm-selected-foods,.fm-mix-items,.fm-feature-grid,.fm-regional-grid,.fm-contact-grid,.fm-definition-grid,.fm-app-feature-list,.fm-archive-grid { grid-template-columns: 1fr; }
  .fm-mix-row { grid-template-columns: 40px minmax(0,1fr) auto; }
  .fm-mix-row label { grid-column: 2 / -1; }
  .fm-ranking-row { grid-template-columns: 36px 40px minmax(0,1fr); }
  .fm-ranking-row__value { grid-column: 3; }
  .fm-total-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .fm-process-list li { grid-template-columns: 1fr; gap: 7px; padding-left: 48px; }
  .fm-contact-details > div:last-child p { grid-template-columns: 1fr; gap: 4px; }
  .fm-phone-illustration > div { min-height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  .fm-page * { transition-duration: .01ms !important; animation-duration: .01ms !important; scroll-behavior: auto !important; }
}
