@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
  --bg: #f4f8ff;
  --bg-soft: #edf4ff;
  --surface: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.82);
  --border: rgba(25, 59, 120, 0.12);
  --text: #0f223e;
  --text-soft: #61779c;
  --primary: #137d7f;
  --primary-dark: #0b5f61;
  --accent: #f2a14c;
  --blue: #2082f8;
  --shadow-lg: 0 24px 70px rgba(23, 58, 124, 0.12);
  --shadow-md: 0 14px 36px rgba(23, 58, 124, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Google Sans', sans-serif;
  color: var(--text);
  background: #fafafa;
  /*background:
    radial-gradient(circle at top left, rgba(19, 125, 127, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(242, 161, 76, 0.14), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);*/
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  outline: none;
  border: none;
}

h1,
p,
dl,
dd {
  margin: 0;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 600;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  padding: 20px 0 6px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: 120px;
  height: auto;
}

.hero {
  padding: 4px 0 18px;
}

.section-head__label,
.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
}

.section-head__label {
  color: var(--blue);
  background: #fff;
  border: 1px solid #ebeff8;
}

.section-title {
  margin-top: 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  font-weight: 600;
}

.section-title--card {
  margin-top: 0;
  text-align: center;
  font-size: 1.28rem;
}

h1 {
  max-width: 840px;
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero__intro {
  max-width: 1400px;
}

.hero__subtitle {
  margin-top: 8px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.hero__filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 200px;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.filter-card {
  position: relative;
  min-height: 50px;
  padding: 5px 16px 10px 16px;
  border: 1px solid #d5e4ff;
  border-radius: 8px 8px 3px 3px;
  background: #ffffff;
}

.filter-card__label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-soft);
}

.filter-card__input-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-right: 34px;
}

.filter-card__input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--blue);
}

.filter-card__input::placeholder {
  color: #97a3b5;
}

.filter-card__hint {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  font-weight: 600;
  color: #334b73;
}

.filter-card__range {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #d5e4ff;
  outline: none;
}

.filter-card__range::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 999px;
  background: transparent;
}

.filter-card__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  background: #1f82f8;
  box-shadow: 0 0 0 2px rgba(79, 100, 134, 0.15);
  cursor: pointer;
  margin-top: -7px;
}

.filter-card__range::-moz-range-track {
  height: 2px;
  border-radius: 999px;
  background: #d5e4ff;
}

.filter-card__range::-moz-range-progress {
  height: 2px;
  border-radius: 999px;
  background: #1f82f8;
}

.filter-card__range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #4f6486;
  box-shadow: 0 0 0 2px rgba(79, 100, 134, 0.15);
  cursor: pointer;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  text-decoration: none;
  color: var(--blue);
  background: #fff;
  border: 1px solid #ebeff8;
}

.hero__tag--active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.offers-section {
  padding: 24px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.section-head__text {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.2;
}

.section-head__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.meta-pill {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
}

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

.offer-card,
.info-card,
.empty-state {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
}

.offer-card__accent {
  height: 7px;
  background: linear-gradient(90deg, #7b9ff0, #84e36d, #efab33);
}

.offer-card__logo-wrap {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 16px;
}

.offer-card__logo {
  width: auto;
/*  max-width: 170px;*/
  max-height: 76px;
  object-fit: contain;
}

.offer-card__body {
  padding: 0 20px 24px;
}

.offer-card__lead {
  margin-top: 10px;
  text-align: center;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.offer-card__stats {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(25, 59, 120, 0.05);
}

.offer-card__stats div {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  font-size: 15px;
}

.offer-card__stats div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.offer-card__stats dt {
  color: var(--text-soft);
}

.offer-card__stats dd {
  font-weight: 600;
  text-align: right;
}

.offer-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 0 22px 22px;
}

.offer-card__footer .button {
  flex: 1 1 auto;
}

.offer-card__info-button {
  flex: 0 0 26px;
  min-height: 26px;
  height: 26px;
  border: 2px solid #8a93a4;
  border-radius: 7px;
  background: #ffffff;
  color: #5f6776;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.offer-card__info-button:hover,
.offer-card__info-button:focus-visible {
  transform: translateY(-1px);
  border-color: #4d68f2;
  color: #4d68f2;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.button--anim {
    overflow: hidden;
}
.button--anim:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #67c47a, #45bc6d);
  box-shadow: -1px 0px 6px rgba(11, 95, 97, 0.2);
}

.button--blue {
  color: #ffffff;
  background: var(--blue);
  box-shadow: -1px 0px 6px rgba(11, 95, 97, 0.2);
}

.button--header {
  width: auto;
  min-width: 180px;
  padding-inline: 26px;
}

.button--hero {
  height: 100%;
  border-radius: 8px;
  font-size: 16px;
  background: var(--blue);
  box-shadow: 0 6px 12px rgba(50, 84, 232, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.empty-state {
  padding: 24px;
  color: var(--text-soft);
  text-align: center;
}

.compliance-section {
  padding: 0 0 34px;
}

/*.compliance-card {
  padding: 28px;
  border: 1px solid rgba(25, 59, 120, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31, 130, 248, 0.05), rgba(255, 255, 255, 0.95));
  box-shadow: 0 12px 30px rgba(23, 58, 124, 0.05);
}*/

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

.compliance-item {
  padding: 18px;
  border: 1px solid rgba(25, 59, 120, 0.08);
  border-radius: 18px;
  background: white;
}

.compliance-item--wide {
  grid-column: 1 / -1;
}

.compliance-item__label {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
}

.compliance-item p {
  color: var(--text-soft);
  line-height: 1.7;
}

.lender-details-section {
  padding: 0 0 46px;
}

.lender-details-section__head {
  max-width: 980px;
}

.lender-details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.lender-details-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(25, 59, 120, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 58, 124, 0.05);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.lender-details-card:hover,
.lender-details-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(48, 95, 231, 0.28);
  box-shadow: 0 16px 30px rgba(23, 58, 124, 0.1);
}

.lender-details-card__header {
  padding: 14px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(25, 59, 120, 0.08);
}

.lender-details-card__name {
  font-size: 16px;
  font-weight: 600;
}

.lender-details-card__rows {
  display: grid;
}

.lender-details-card__row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 8px 16px;
  border-top: 1px solid rgba(25, 59, 120, 0.06);
}

.lender-details-card__row:first-child {
  border-top: 0;
}

.lender-details-card__row span {
  color: var(--text-soft);
  font-size: 14px;
}

.lender-details-card__row strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
}

.lender-details-card__row a {
  color: #305fe7;
  text-decoration: none;
  word-break: break-word;
}

.lender-details-card__row--full {
  grid-template-columns: 1fr;
}

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

.modal-backdrop[hidden] {
  display: none;
}

.modal-backdrop__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 31, 56, 0.52);
  backdrop-filter: blur(4px);
}

.offer-modal {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(16, 36, 72, 0.2);
}

.offer-modal__content {
  padding: 28px 0 0;
}

.offer-modal__top-group {
  margin: 0 16px;
  border-radius: 22px;
  background: var(--bg-soft);
}

.offer-modal__close {
  position: absolute;
  top: 36px;
  right: 20px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #8a93a4;
  font-size: 2.15rem;
  line-height: 1;
  cursor: pointer;
}

.offer-modal__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px;
}

.offer-modal__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.offer-modal__logo-badge {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef3fb 0%, #dde6f5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 18px rgba(35, 55, 93, 0.08);
}

.offer-modal__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
}

.offer-modal__eyebrow {
  font-size: 12px;
  color: var(--text-soft);
}

.offer-modal__title {
  margin-top: 3px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.02;
}

.offer-modal__hero {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px;
}

.offer-modal__metric span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.offer-modal__metric strong {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.offer-modal__cta {
  flex: 0 0 180px;
  min-height: 50px;
  border-radius: 14px;
  font-size: 15px;
  margin-left: auto;
}

.offer-modal__tabs {
  display: flex;
  gap: 24px;
  padding: 0 20px;
  border-top: 1px solid rgba(25, 59, 120, 0.08);
}

.offer-modal__tab {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #69758c;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.offer-modal__tab.is-active {
  color: var(--text);
  border-bottom-color: #4d68f2;
}

.offer-modal__tab--link:hover {
  color: var(--text);
}

.offer-modal__panel {
  display: none;
/*  margin-top: 18px;*/
  padding: 20px;
  border-top: 1px solid rgba(25, 59, 120, 0.08);
}

.offer-modal__panel.is-active {
  display: block;
}

.offer-modal__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 42px;
}

.offer-modal__list p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.offer-modal__list p:first-child {
  margin-top: 0;
}

.offer-modal__list strong {
  color: var(--text);
}

.faq-section {
  padding: 0 0 72px;
}

.service-section {
  padding: 50px 0;
}

.service-section__head {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 22px;
  margin-top: 26px;
}

.service-card,
.glossary-card {
  padding: 28px;
  border: 1px solid rgba(25, 59, 120, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(23, 58, 124, 0.05);
}

.service-card p,
.glossary-item p {
  color: var(--text-soft);
  line-height: 1.75;
}

.service-card__subtitle,
.glossary-card__title,
.glossary-item__term {
  font-weight: 700;
}

.service-card__subtitle {
  margin-top: 22px;
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.service-list {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--text);
}

.service-list li {
  margin-top: 10px;
  line-height: 1.65;
}

.service-list li::marker {
  color: #4d68f2;
}

.glossary-card__title {
  font-size: 1.4rem;
}

.glossary-item {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(25, 59, 120, 0.1);
}

.glossary-item:first-of-type {
  padding-top: 16px;
}

.glossary-item__term {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.faq-section__head {
  max-width: 720px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(25, 59, 120, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 10px rgba(23, 58, 124, 0.05);
}

.faq-item[open] {
  box-shadow: 0 18px 34px rgba(23, 58, 124, 0.08);
}

.faq-item__summary {
  position: relative;
  display: block;
  padding: 24px 68px 24px 28px;
  list-style: none;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
}

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

.faq-item__summary::before,
.faq-item__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #4d68f2;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-item__summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-item__summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item__content {
  padding: 0 28px 26px;
}

.faq-item__content p {
  max-width: 940px;
  color: var(--text-soft);
  line-height: 1.75;
}

.site-footer {
  padding: 36px 0 34px;
  background: #f1f1f1;
  border-top: 1px solid rgba(25, 59, 120, 0.08);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(25, 59, 120, 0.1);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  max-width: 120px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.site-footer__nav a {
  font-weight: 500;
  font-size: 14px;
}

.site-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  padding: 18px 0 20px;
  border-bottom: 1px solid rgba(25, 59, 120, 0.1);
  color: var(--text-soft);
  font-size: 12px;
}

.site-footer__contacts a {
  font-size: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.site-footer__nav a,
.site-footer__bottom a {
  color: var(--text);
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__bottom a:hover {
  color: #3f61f3;
}

.site-footer__text {
  padding: 20px 0 0;
}

.site-footer__text p {
  color: var(--text-soft);
  line-height: 1.4;
  font-size: 12px;
}

.site-footer__text p + p {
  margin-top: 12px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(25, 59, 120, 0.12);
  color: var(--text-soft);
  font-size: 12px;
}

.site-footer__bottom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.policy-page {
  padding-bottom: 44px;
}

.policy-hero {
  padding: 8px 0 24px;
}

.policy-hero__card {
  padding: 34px;
  border: 1px solid rgba(19, 125, 127, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(63, 97, 243, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(19, 125, 127, 0.08), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: var(--shadow-lg);
}

.policy-hero__subtitle {
  max-width: 920px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.policy-content {
  padding: 0 0 24px;
}

.policy-grid {
  display: grid;
  gap: 18px;
}

.policy-card {
  padding: 28px;
  border: 1px solid rgba(25, 59, 120, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 32px rgba(23, 58, 124, 0.06);
}

.policy-card p {
  margin-top: 16px;
  color: var(--text-soft);
  line-height: 1.75;
}

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

  .hero__filters {
    grid-template-columns: 1fr;
  }

  /*.button--hero {
    min-height: 60px;
  }*/
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    padding-top: 16px;
  }

  .site-header__inner {
    align-items: center;
  }

  .hero {
    padding-top: 20px;
  }

  .info-card {
    padding: 22px;
  }

  .section-head {
    flex-direction: column;
  }

  .section-head__meta {
    justify-content: flex-start;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .lender-details-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .offer-modal {
    border-radius: 18px;
  }

  .offer-modal__content {
    padding-top: 24px;
  }

  .offer-modal__top-group {
    margin: 0 10px;
    border-radius: 18px;
  }

  .offer-modal__header {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 20px 22px;
  }

  .offer-modal__hero {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 20px 22px;
  }

  .offer-modal__tabs {
    gap: 18px;
    padding: 0 20px;
    overflow-x: auto;
  }

  .offer-modal__panel {
    padding: 22px 20px 24px;
  }

  .offer-modal__panel-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero__filters {
    padding: 18px;
    gap: 14px;
  }

  /*.filter-card {
    min-height: 98px;
    padding: 14px 18px 24px;
  }*/

  /*.hero__tag {
    min-height: 46px;
    padding-inline: 16px;
  }*/
  .hero__tags {
    justify-content: center;
    gap: 4px;
  }
  .button--hero {
    margin-top: 18px;
    height: auto;
  }

  .faq-item__summary {
    padding: 20px 58px 20px 20px;
    font-size: 1.02rem;
  }

  .faq-item__summary::before,
  .faq-item__summary::after {
    right: 22px;
  }

  .faq-item__content {
    padding: 0 20px 22px;
  }

  .policy-hero__card,
  .policy-card,
  .service-card,
  .glossary-card {
    padding: 22px;
  }

  .site-footer__top,
  .site-footer__contacts,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .compliance-card,
  .lender-details-card__header,
  .service-card,
  .glossary-card,
  .policy-hero__card,
  .policy-card {
    padding: 22px;
  }

  .lender-details-card__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 16px;
  }
}
