@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
       url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
       url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.woff2') format('woff2'),
       url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
       url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-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: #48505e;
  --primary: #137d7f;
  --primary-dark: #0b5f61;
  --accent: #f2a14c;
  --red: #d50001;
  --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: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Gilroy', sans-serif;
  color: var(--text);
  background: #f2f2f2;
  /*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;
}

.text-center {
  text-align: center!important;
}

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

.site-header {
  padding: 16px 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 4px hsla(0, 0%, 53%, .1);
  box-shadow: 0 4px 4px hsla(0, 0%, 53%, .1);
}

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

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-header__nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--blue);
}

.site-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(25, 59, 120, 0.12);
  border-radius: 12px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.site-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.site-logo img {
  width: 150px;
  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(20px, 2.85vw, 36px);
  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 rgb(223, 243, 228);
  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: #45bc6d;
}

.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: #44bc6d;
  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: #45bc6d;;
  background: #fff;
  border: 1px solid #ebeff8;
}

.hero__tag--active {
  color: #ffffff;
  background: linear-gradient(135deg, #67c47a, #45bc6d);
  border-color: #45bc6d;
}

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

.offers-section {
  padding: 24px 0;
}
.offers-section .section-title {
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 700;
  margin-top: 0;
}
.offers-section .section-title span {
  color: #3ba354;
}
@media (min-width: 767px) {
  .offers-section .section-head__inner {
    padding: 20px 0;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto 24px;
}

.section-head__text {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.2;
  margin-top: 8px;
  font-size: clamp(14px, 1vw, 16px);
}

.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: 12px;
}

.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-link {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 86px;
}

.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: 1px solid var(--text-soft);
  border-radius: 7px;
  background: #ffffff;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  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: 44px;
  padding: 12px;
  border: 0;
  border-radius: 100px;
  text-decoration: none;
  font-size: clamp(12px, 1.2vw, 15px);
  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: auto;
  padding-inline: 26px;
  font-size: 14px;
  font-weight: 400;
  height: 38px;
  min-height: auto;
}

.button--hero {
  height: 100%;
  border-radius: 8px;
  font-size: 16px;
  background: linear-gradient(135deg, #67c47a, #45bc6d);
  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;
}

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

.lender-details-section__head {
  max-width: 900px;
  margin-bottom: 30px;
}

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

.lender-details-card {
  overflow: hidden;
  border: 1px solid #ececf2;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(23, 58, 124, 0.06);
  padding: 16px;
  cursor: pointer;
  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.2);
  box-shadow: 0 18px 34px rgba(23, 58, 124, 0.1);
}

.lender-details-card__header {
  padding: 18px 6px;
  border-radius: 16px;
  background: #f1f1f1;
  text-align: center;
}

.lender-details-card__name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.lender-details-card__rows {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.lender-details-card__row {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 3px;
  align-items: start;
}

.lender-details-card__row span,
.lender-details-card__row strong {
  display: block;
  padding: 6px;
  background: #f1f1f1;
  color: #5f636d;
  font-size: 13px;
  line-height: 1.15;
}

.lender-details-card__row span {
  font-weight: 500;
}

.lender-details-card__row strong {
  font-weight: 500;
  color: #4a4e57;
}

.lender-details-card__row a {
  color: inherit;
  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: #f3f8ff;
}

.offer-modal__close {
  position: absolute;
  top: 36px;
  right: 24px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #808183;
  font-size: 1.95rem;
  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: #171717;
  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;
  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;
  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.2;
}

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

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

.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-list--compact {
  gap: 10px;
  margin-top: 20px;
}

.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-list--compact .faq-item {
  border-radius: 14px;
  box-shadow: 0 5px 12px rgba(23, 58, 124, 0.04);
}

.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-list--compact .faq-item__summary {
  padding: 18px 56px 18px 20px;
  font-size: 1rem;
}

.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: var(--red);
  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-list--compact .faq-item__content {
  padding: 0 20px 18px;
}

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

.faq-list--compact .faq-item__content p {
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  padding: 24px 0;
  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;
}

.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;
  color: var(--text-soft);
  font-size: 12px;
}

.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));
  }

  .lender-details-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;
    position: relative;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .site-header__nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(25, 59, 120, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(23, 58, 124, 0.08);
    z-index: 20;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-header__nav a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .site-header__nav a:hover,
  .site-header__nav a:focus-visible {
    background: #f4f7fc;
  }

  .site-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 20px;
  }

  .info-card {
    padding: 22px;
  }

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

  .section-head__inner {
    text-align: center;
  }

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

  .offers-grid {
    gap: 6px;
/*    grid-template-columns: 1fr;*/
  }
  .lender-details-card {
    padding: 16px;
    border-radius: 18px;
  }
  .lender-details-card__header {
    padding: 18px 14px;
    border-radius: 14px;
  }
  .lender-details-card__row,
  .lender-details-card__row--full {
/*    grid-template-columns: 1fr;*/
    gap: 6px;
  }
  .lender-details-grid {
    grid-template-columns: 1fr;
  }
  .offer-card__logo-wrap {
    padding: 16px 8px;
  }
  .offer-card__body {
    padding: 0 8px 20px;
  }
  .offer-card__stats {
    gap: 6px;
  }
  .offer-card__stats div {
    font-size: 14px;
  }
  .offer-card__footer {
    padding: 0 8px 22px;
  }
  .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: 20px;
  }

  .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;
  }

  .offer-modal__cta {
    flex: 1;
  }

  .offer-card__info-button {
    flex: 0 0 22px;
    min-height: 22px;
    height: 22px;
  }

  .offer-card__footer {
    gap: 6px;
  }

  .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;
  }
}


/* Bright orange theme — Groshi Vpered */
:root {
  --bg: #fff7ed;
  --bg-soft: #ffedd5;
  --surface: #ffffff;
  --border: rgba(234, 88, 12, .16);
  --text: #172033;
  --text-soft: #596174;
  --primary: #ff6b00;
  --primary-dark: #e84f00;
  --accent: #ffbf2f;
  --blue: #ff6b00;
  --shadow-lg: 0 26px 70px rgba(234, 88, 12, .18);
  --shadow-md: 0 14px 36px rgba(234, 88, 12, .11);
}

body { background: linear-gradient(180deg, #fffaf5 0%, #fff3e6 100%); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,107,0,.12); }
.site-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; color: #fff; background: linear-gradient(135deg,#ff8a00,#ff4d00); box-shadow: 0 10px 22px rgba(255,107,0,.25); font-size: 23px; font-weight: 800; }
.brand-name { color: #1d2433; font-size: 20px; font-weight: 700; white-space: nowrap; }
.brand-name strong { color: #ff6200; }
.site-header__registration { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 19px; border-radius: 14px; color: #fff; background: linear-gradient(135deg,#ff8a00,#ff4d00); box-shadow: 0 10px 22px rgba(255,107,0,.24); font-size: 14px; font-weight: 700; text-decoration: none; }
.site-header__nav a:hover, .site-header__nav a:focus-visible { color: #ff6200; }

.hero { position: relative; overflow: hidden; padding: 64px 0 72px; background: radial-gradient(circle at 8% 15%,rgba(255,191,47,.36),transparent 25%), radial-gradient(circle at 92% 8%,rgba(255,82,0,.2),transparent 24%), linear-gradient(135deg,#fff8e8 0%,#ffe2bd 48%,#fff4e6 100%); }
.hero::before, .hero::after { position: absolute; border-radius: 50%; content: ''; pointer-events: none; }
.hero::before { width: 260px; height: 260px; right: -90px; top: -90px; border: 44px solid rgba(255,107,0,.08); }
.hero::after { width: 160px; height: 160px; left: -70px; bottom: -70px; background: rgba(255,191,47,.2); }
.hero__intro { position: relative; z-index: 1; max-width: 820px; margin: 0 auto 34px; text-align: center; }
.hero__eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 8px; color: #e85600; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero__intro h1 { margin-top: 13px; color: #172033; font-size: clamp(2.65rem,6vw,5.2rem); line-height: .97; letter-spacing: -.045em; }
.hero__subtitle { max-width: 720px; margin: 18px auto 0; color: #5c493f; font-size: clamp(1.02rem,2vw,1.22rem); line-height: 1.6; }
.hero__filters { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; padding: 14px; border: 1px solid rgba(255,107,0,.15); border-radius: 26px; background: rgba(255,255,255,.94); box-shadow: 0 26px 70px rgba(151,67,0,.16); }
.filter-card { background: #fffaf4; border-color: rgba(255,107,0,.16); }
.filter-card__range { accent-color: #ff6500; }
.button--primary, .button--hero, .lead-form__submit { color: #fff; background: linear-gradient(135deg,#ff8a00,#ff4d00)!important; box-shadow: 0 12px 24px rgba(255,107,0,.25); }
.button--primary:hover, .button--hero:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(255,107,0,.32); }

.offers-section { background: #fff8ef; }
.offer-card { border: 1px solid rgba(255,107,0,.14); box-shadow: 0 15px 38px rgba(126,61,8,.09); }
.offer-card:hover { border-color: rgba(255,107,0,.35); box-shadow: 0 20px 46px rgba(126,61,8,.15); }
.offer-card__info-button { color: #ff6200; background: #fff0df; border-color: #ffd3aa; }
.faq-card, .lender-details-card { border-color: rgba(255,107,0,.13); }
.site-footer { background: #241b17; }

.offers-page-hero { position: relative; overflow: hidden; padding: 70px 0 62px; background: linear-gradient(135deg,#ff8a00,#ff4d00); color: #fff; }
.offers-page-hero::after { position: absolute; width: 340px; height: 340px; right: -110px; top: -150px; border: 55px solid rgba(255,255,255,.13); border-radius: 50%; content: ''; }
.offers-page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.offers-page-hero .section-kicker { color: #fff3d2; }
.offers-page-hero h1 { margin: 12px 0 13px; font-size: clamp(2.4rem,6vw,4.5rem); line-height: 1; letter-spacing: -.04em; }
.offers-page-hero p { max-width: 690px; color: rgba(255,255,255,.87); font-size: 1.08rem; line-height: 1.65; }

.registration-page { background: radial-gradient(circle at 10% 10%,rgba(255,191,47,.28),transparent 28%),linear-gradient(145deg,#fff7ed 0%,#fff 52%,#ffe5c4 100%); }
.registration-back { color: #e85600; font-weight: 700; text-decoration: none; }
.registration-main { min-height: calc(100vh - 78px); padding: 54px 0 68px; display: grid; align-items: center; }
.registration-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,470px); gap: clamp(36px,7vw,90px); align-items: center; }
.registration-copy h1 { max-width: 640px; margin: 12px 0 16px; font-size: clamp(2.5rem,5.4vw,4.7rem); line-height: .98; letter-spacing: -.045em; }
.registration-copy > p { max-width: 600px; color: var(--text-soft); font-size: 1.06rem; line-height: 1.7; }
.registration-summary { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.registration-summary div { min-width: 145px; padding: 15px 18px; border: 1px solid #ffd2a8; border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: 0 12px 28px rgba(187,81,0,.08); }
.registration-summary span { display: block; margin-bottom: 4px; color: var(--text-soft); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; }
.registration-summary strong { color: #d94b00; font-size: 1.2rem; }
.registration-points { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.registration-points li { display: flex; align-items: center; gap: 10px; }
.registration-points li::before { content: '✓'; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: #fff; background: #ff6b00; font-weight: 800; }
.registration-card { padding: clamp(24px,4vw,38px); border: 1px solid #ffd9b8; border-radius: 28px; background: rgba(255,255,255,.97); box-shadow: 0 30px 70px rgba(152,65,0,.18); }
.registration-card__head { margin-bottom: 22px; }
.registration-card__head > span { color: #ef5c00; font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.registration-card__head h2 { margin: 7px 0 7px; font-size: clamp(1.55rem,3vw,2rem); }
.registration-card__head p { margin: 0; color: var(--text-soft); }
.lead-form { display: grid; gap: 16px; }
.lead-field { display: grid; gap: 7px; color: #30231c; font-weight: 700; }
.lead-field input { width: 100%; min-height: 54px; padding: 0 16px; border: 1px solid #e8c9b0; border-radius: 13px; background: #fffaf6; color: var(--text); font: inherit; }
.lead-field input:focus { outline: none; border-color: #ff6b00; box-shadow: 0 0 0 4px rgba(255,107,0,.14); }
.lead-field small { color: var(--text-soft); font-weight: 400; }
.lead-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: var(--text-soft); font-size: .85rem; line-height: 1.45; }
.lead-consent input { width: 18px; height: 18px; accent-color: #ff6b00; }
.lead-consent a { color: #e85600; font-weight: 700; }
.lead-form__honeypot { position: absolute!important; left: -10000px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.turnstile-panel { display: grid; gap: 8px; padding: 12px; border: 1px solid #f0d3bd; border-radius: 13px; background: #fffaf6; }
.turnstile-panel > span { color: #473329; font-size: .82rem; font-weight: 700; }
.turnstile-panel .cf-turnstile { width: 100%; min-height: 65px; }
.turnstile-panel iframe { max-width: 100%; }
.lead-form__submit { width: 100%; min-height: 56px; border: 0; border-radius: 14px; font-size: 1rem; font-weight: 700; cursor: pointer; }
.lead-form__note { margin: 0; color: var(--text-soft); font-size: .76rem; line-height: 1.45; text-align: center; }
.form-alert { margin-bottom: 17px; padding: 13px 15px; border-radius: 12px; color: #9b2d25; background: #fff0ee; }

@media (max-width: 850px) {
  .registration-main { min-height: auto; padding: 12px 0 24px; align-items: start; }
  .registration-layout { grid-template-columns: 1fr; gap: 0; }
  .registration-copy { display: none; }
  .registration-card { padding: 18px 14px; border-radius: 18px; }
  .registration-card__head { margin-bottom: 13px; }
  .registration-card__head > span, .registration-card__head p, .lead-field small, .lead-form__note { display: none; }
  .registration-card__head h2 { margin: 0; font-size: 1.38rem; }
  .lead-form { gap: 12px; }
  .lead-field { gap: 5px; }
  .lead-field input { min-height: 49px; }
  .turnstile-panel { padding: 9px; gap: 5px; }
  .lead-form__submit { min-height: 51px; }
}

@media (max-width: 767px) {
  .site-header__inner { gap: 8px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px; font-size: 20px; }
  .brand-name { font-size: 16px; }
  .site-header__registration { min-height: 39px; margin-left: auto; padding: 0 11px; font-size: 12px; }
  .hero { padding: 42px 0 44px; }
  .hero__intro h1 { font-size: clamp(2.45rem,12vw,3.7rem); }
  .hero__filters { padding: 10px; border-radius: 20px; }
  .offers-page-hero { padding: 46px 0 42px; }
}


/* Hero people artwork */
.hero__showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: 30px;
}
.hero__showcase .hero__intro {
  max-width: none;
  margin: 0;
  text-align: left;
}
.hero__showcase .hero__intro h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}
.hero__showcase .hero__subtitle {
  margin-inline: 0;
}
.hero__media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 5px solid rgba(255,255,255,.88);
  border-radius: 34px;
  background: #ff8a00;
  box-shadow: 0 28px 60px rgba(153,63,0,.22);
  transform: rotate(1.2deg);
}
.hero__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: inherit;
  content: '';
  pointer-events: none;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  object-position: center;
}
.hero__showcase + .hero__filters {
  margin-top: 0;
}
@media (max-width: 980px) {
  .hero__showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero__showcase .hero__intro {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
  }
  .hero__showcase .hero__subtitle { margin-inline: auto; }
  .hero__media {
    width: min(100%, 760px);
    margin-inline: auto;
    transform: none;
  }
}
@media (max-width: 767px) {
  .hero__showcase { margin-bottom: 20px; }
  .hero__media { border-width: 3px; border-radius: 22px; }
  .hero__media img { aspect-ratio: 1.35 / 1; object-position: 58% center; }
}


/* Integrated hero background image */
.hero {
  background-image:
    linear-gradient(90deg, rgba(255,250,242,.98) 0%, rgba(255,239,218,.94) 42%, rgba(255,169,79,.35) 72%, rgba(255,107,0,.2) 100%),
    url('../images/happy-people-money-orange.png');
  background-size: cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
.hero > .container { position: relative; z-index: 2; }
.hero > .container > .hero__intro {
  max-width: 720px;
  margin: 0 0 30px;
  text-align: left;
}
.hero > .container > .hero__intro h1 { font-size: clamp(2.7rem, 5.3vw, 5rem); }
.hero > .container > .hero__intro .hero__subtitle { margin-inline: 0; }
.hero > .container > .hero__filters { max-width: 920px; margin-inline: 0; }
@media (max-width: 980px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(255,248,237,.97) 0%, rgba(255,234,204,.9) 62%, rgba(255,130,28,.35) 100%),
      url('../images/happy-people-money-orange.png');
    background-position: center, 62% center;
  }
  .hero > .container > .hero__intro { max-width: 700px; margin-inline: auto; text-align: center; }
  .hero > .container > .hero__intro .hero__subtitle { margin-inline: auto; }
  .hero > .container > .hero__filters { margin-inline: auto; }
}
@media (max-width: 767px) {
  .hero {
    background: #ff7200;
    background-image: none;
  }
  .hero::before,
  .hero::after { display: none; }
  .hero > .container > .hero__intro h1 {
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(112, 42, 0, .2);
  }
  .hero > .container > .hero__intro .hero__subtitle {
    color: rgba(255, 255, 255, .92);
  }
  .hero__eyebrow {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(96, 34, 0, .18);
    color: #ffffff;
  }
}


/* High-contrast footer for the Groshi Vpered brand */
.site-footer,
.site-footer__contacts,
.site-footer__text p,
.site-footer__bottom,
.site-footer__bottom-meta {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__logo,
.site-footer__nav a,
.site-footer__contacts a,
.site-footer__bottom a {
  color: #ffffff;
}

.site-footer__logo {
  max-width: none;
  gap: 10px;
  text-decoration: none;
}

.site-footer__logo .brand-mark {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

.site-footer__logo .brand-name {
  color: #ffffff;
}

.site-footer__logo .brand-name strong,
.site-footer__nav a:hover,
.site-footer__bottom a:hover {
  color: #ff9a2f;
}

.site-footer__contacts,
.site-footer__bottom {
  border-color: rgba(255, 255, 255, 0.14);
}
