@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap
}

:root {
  --ink: #16161c;
  --muted: #6d6b70;
  --orange: #ff643e;
  --orange-dark: #ee4e2d;
  --cream: #fff8ed;
  --cream-strong: #ffedc4;
  --blue: #245e7b;
  --line: #eee8e1;
  --green: #58b96a;
  --shadow: 0 10px 30px rgba(77, 53, 31, .08), 0 2px 6px rgba(77, 53, 31, .06)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdf9;
  font-family: Gilroy, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

button,
a {
  font: inherit
}

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

button {
  color: inherit
}

img {
  max-width: 100%
}

.page-shell {
  min-height: 100vh;
  padding: 0
}

.site-card {
  width: 100%;
  max-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fffdf9;
  box-shadow: none
}

.header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  padding: 0 36px;
  background: rgba(255, 253, 249, .9);
  backdrop-filter: blur(12px)
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.7px
}

.logo-word>span {
  color: var(--orange)
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 7px 10px rgba(236, 73, 43, .2));
  transform: rotate(-2deg)
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%
}

.logo-word {
  line-height: 1;
  text-shadow: 0 1px rgba(255, 255, 255, .6)
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 600
}

.nav a {
  position: relative;
  padding: 8px 0;
  transition: color .2s ease
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .2s ease
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--orange)
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1)
}

.header-cta {
  justify-self: end;
  padding: 13px 22px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(180deg, #ff795a, #f45130);
  box-shadow: 0 7px 15px rgba(246, 84, 47, .22), inset 0 1px rgba(255, 255, 255, .35);
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease
}

.header-cta:hover,
.primary-button:hover,
.partner-button:hover,
.legal-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(246, 84, 47, .27)
}

.menu-button {
  display: none;
  padding: 8px;
  border: 0;
  background: none;
  cursor: pointer
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .18s ease, opacity .18s ease
}

.menu-button.is-open span:first-child {
  transform: translateY(7px) rotate(45deg)
}

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

.menu-button.is-open span:last-child {
  transform: translateY(-7px) rotate(-45deg)
}

.hero {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  min-height: 390px;
  padding: 38px 56px 20px
}

.hero-copy {
  position: relative;
  z-index: 3
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.15px;
  text-transform: uppercase
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -4px
}

.hero-break {
  display: none
}

.hero-subtitle {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.44
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(105deg, #ff704e, #ff5936);
  box-shadow: 0 9px 20px rgba(243, 81, 45, .22), inset 0 1px rgba(255, 255, 255, .34);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease
}

.hero-button {
  min-width: 245px;
  padding: 16px 18px;
  font-size: 16px
}

.hero-button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: auto;
  border-radius: 50%;
  color: var(--orange);
  background: #fff;
  font-size: 20px
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 10px
}

.trust-row p {
  margin: 0;
  color: #777178;
  font-size: 11px;
  line-height: 1.4
}

.trust-row strong {
  color: #3e3a3e
}

.avatars {
  width: 94px;
  height: 36px;
  overflow: hidden
}

.avatars img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.12)
}

.hero-visual {
  position: relative;
  align-self: stretch;
  height: 350px
}

.hero-visual>img {
  position: absolute;
  inset: -44px -30px -24px -74px;
  width: calc(100% + 104px);
  height: calc(100% + 68px);
  object-fit: contain
}

.floating-note {
  position: absolute;
  z-index: 4;
  padding: 13px 17px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 20px rgba(69, 50, 33, .12);
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  animation: noteFloat 3.8s ease-in-out infinite
}

.note-approved {
  left: 5%;
  bottom: 15%;
  transform: rotate(2deg)
}

.note-money {
  top: 22%;
  right: 1%;
  animation-delay: -1.7s
}

.note-money span {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-left: 4px;
  border-radius: 50%;
  color: #fff;
  background: #63c466
}

.loan-finder {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 46px;
  align-items: center;
  margin: 18px 34px 0;
  padding: 48px 50px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #1e5b75 0%, #18465f 100%);
  box-shadow: 0 22px 46px rgba(26, 72, 94, .22)
}

.loan-finder::before,
.loan-finder::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.loan-finder::before {
  top: -155px;
  left: -115px;
  width: 320px;
  height: 320px;
  border: 54px solid rgba(255, 255, 255, .045)
}

.loan-finder::after {
  right: 38%;
  bottom: -205px;
  width: 330px;
  height: 330px;
  background: rgba(255, 196, 86, .08)
}

.finder-intro {
  position: relative;
  z-index: 1
}

.finder-intro .section-kicker {
  color: #ffcb69
}

.finder-intro h2 {
  max-width: 450px;
  margin: 0;
  font-size: clamp(36px, 3.7vw, 54px);
  line-height: .98;
  letter-spacing: -2.3px
}

.finder-intro>p:last-child {
  max-width: 455px;
  margin: 22px 0 0;
  color: #d5e5eb;
  font-size: 15px;
  line-height: 1.6
}

.finder-console {
  position: relative;
  z-index: 1;
  padding: 24px 25px 22px;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 253, 249, .97);
  box-shadow: 0 18px 40px rgba(3, 30, 45, .23), inset 0 1px #fff
}

.finder-console__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #71909e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em
}

.finder-console__topline b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #287e58
}

.finder-console__topline b::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57c587;
  box-shadow: 0 0 0 4px rgba(87, 197, 135, .13);
  animation: livePulse 1.8s ease-in-out infinite
}

.finder-amount label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  font-weight: 800
}

.finder-amount output {
  min-width: 108px;
  padding: 8px 12px;
  border-radius: 10px;
  color: #fff;
  background: var(--orange);
  font-size: 13px;
  text-align: center;
  box-shadow: 0 7px 14px rgba(246, 84, 47, .2)
}

.finder-amount input[type="range"] {
  width: 100%;
  height: 5px;
  margin: 23px 0 9px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--orange) 0 var(--range-progress, 0%), #dfe7e9 var(--range-progress, 0%) 100%);
  appearance: none;
  cursor: pointer
}

.finder-amount input[type="range"]::-webkit-slider-thumb {
  width: 21px;
  height: 21px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 2px 8px rgba(26, 45, 53, .27);
  appearance: none
}

.finder-amount input[type="range"]::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 2px 8px rgba(26, 45, 53, .27)
}

.finder-scale {
  display: flex;
  justify-content: space-between;
  color: #96999b;
  font-size: 9px
}

.finder-options {
  min-width: 0;
  margin: 19px 0 0;
  padding: 0;
  border: 0
}

.finder-options legend {
  margin-bottom: 8px;
  color: #72777a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}

.filter-chips button {
  padding: 8px 11px;
  border: 1px solid #dce3e5;
  border-radius: 9px;
  color: #596064;
  background: #f8faf9;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease
}

.filter-chips button:hover,
.filter-chips button:focus-visible {
  border-color: #f08b72;
  color: #c64c2f;
  transform: translateY(-1px);
  outline: none
}

.filter-chips button.is-active {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  box-shadow: 0 6px 12px rgba(246, 84, 47, .18)
}

.filter-chips--sort button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 6px 12px rgba(36, 94, 123, .16)
}

.finder-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid #e4e9e9
}

.finder-result>div {
  display: flex;
  align-items: center;
  gap: 9px
}

.finder-result strong {
  font-size: 30px;
  line-height: 1;
  color: var(--blue)
}

.finder-result span {
  color: #777e81;
  font-size: 9px;
  line-height: 1.15;
  text-transform: uppercase
}

.finder-result button,
.filter-empty button {
  padding: 0;
  border: 0;
  color: #36738f;
  background: none;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer
}

.offers-section {
  margin-top: -18px;
  padding: 74px 56px 38px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.8px
}

.section-heading>p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55
}

.section-hint {
  color: #9a9490 !important;
  font-size: 12px !important
}

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

.offer-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px 17px 15px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease
}

.offer-card:nth-child(n+7) {
  display: none
}

.offers-grid.expanded .offer-card {
  display: flex
}

.offers-grid.is-catalog-filtered .offer-card {
  display: flex
}

.offer-card.is-filtered-out {
  display: none !important
}

.offer-card:hover,
.offer-card:focus-visible,
.offer-card:focus-within {
  z-index: 2;
  border-color: #ffc9b9;
  box-shadow: 0 17px 38px rgba(91, 54, 33, .14);
  transform: translateY(-5px);
  outline: none
}

.offer-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #b54c31;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.offer-card__topline span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff0eb
}

.offer-card__topline b {
  color: #b2ada9
}

.lender-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 14px;
  border: 1px solid #f0ebe5;
  border-radius: 15px;
  background: linear-gradient(145deg, #fff, #fffcf7)
}

.lender-logo img {
  width: auto;
  max-width: 220px;
  max-height: 78px;
  object-fit: contain;
  transition: transform .2s ease, filter .2s ease
}

.offer-card:hover .lender-logo img {
  transform: scale(1.045);
  filter: saturate(1.08)
}

.offer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 17px 0 12px
}

.offer-stats>div {
  position: relative;
  min-width: 0;
  padding-top: 41px;
  text-align: center
}

.offer-stats dt {
  color: #858287;
  font-size: 10px
}

.offer-stats dd {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap
}

.stat-icon {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 54px;
  transform: translateX(-50%)
}

.amount-icon {
  background-color: #fff2dd;
  background-image: url("../images/boomcash/icons/amount.webp")
}

.shield-icon {
  background-color: #e9f8e9;
  background-image: url("../images/boomcash/icons/approval.webp")
}

.rate-icon {
  background-color: #e8f0fb;
  background-image: url("../images/boomcash/icons/rate.webp")
}

.apr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding: 9px 11px;
  border-radius: 10px;
  background: #fff6ed;
  color: #766a64;
  font-size: 10px
}

.apr-row strong {
  color: #b54c31;
  font-size: 11px;
  text-align: right
}

.card-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin-top: auto;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  animation: buttonPulse 2.8s ease-in-out infinite
}

.card-button::before {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -35%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .78), transparent);
  transform: skewX(-16deg);
  animation: buttonShine 3.5s ease-in-out infinite;
  pointer-events: none
}

.card-button span {
  margin-left: 8px;
  font-size: 17px;
  animation: arrowMove 1.35s ease-in-out infinite
}

.details-link {
  display: block;
  width: max-content;
  margin: 10px auto 0;
  color: #3f79ad;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px
}

.show-more {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 21px auto 0;
  border: 0;
  color: #3f79ad;
  background: none;
  font-size: 13px;
  cursor: pointer
}

.show-more .chevron {
  font-size: 19px;
  transition: transform .2s ease
}

.show-more[aria-expanded="true"] .chevron {
  transform: rotate(180deg)
}

.dots {
  display: none
}

.empty-state {
  padding: 30px;
  border: 1px dashed #e0d4c7;
  border-radius: 16px;
  color: var(--muted);
  text-align: center
}

.filter-empty {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 42px;
  border: 1px dashed #b9cbd2;
  border-radius: 18px;
  color: #64747b;
  background: rgba(255, 255, 255, .62);
  text-align: center
}

.filter-empty strong {
  color: #2d4b59;
  font-size: 20px
}

.filter-empty span {
  font-size: 13px
}

.filter-empty button {
  margin-top: 6px
}

.filter-empty[hidden],
.show-more[hidden] {
  display: none !important
}

.benefits {
  display: flex;
  align-items: center;
  gap: 42px;
  min-height: 122px;
  margin: 26px 34px 36px;
  padding: 22px 30px;
  border-radius: 20px;
  background: linear-gradient(100deg, #fff0c9, #ffedc4)
}

.benefits h2 {
  min-width: 185px;
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.6px
}

.benefits h2 span {
  font-size: 17px
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex: 1;
  gap: 20px
}

.benefit {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0
}

.benefit-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 12px rgba(103, 75, 36, .08)
}

.benefit-icon img {
  display: block;
  width: 48px;
  height: 48px;
  max-width: none;
  object-fit: contain
}

.benefit h3 {
  margin: 0 0 3px;
  font-size: 14px
}

.benefit p {
  margin: 0;
  font-size: 10px;
  line-height: 1.35
}

.how-section,
.partners,
.faq {
  padding: 64px 56px
}

.how-section {
  background: #fff4ee
}

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

.steps-grid article {
  position: relative;
  min-height: 190px;
  padding: 26px;
  border: 1px solid #f1d9d0;
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow)
}

.steps-grid article>span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #fff;
  background: var(--orange);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 7px 14px rgba(246, 84, 47, .2)
}

.steps-grid h3 {
  margin: 22px 0 8px;
  font-size: 20px
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5
}

.partners {
  background: #fffdf9
}

.partners-disclosure {
  overflow: hidden;
  border: 1px solid #ffb49f;
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow)
}

.partners-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  list-style: none;
  background: linear-gradient(105deg, #fff8f3, #ffe3d9);
  cursor: pointer
}

.partners-toggle::-webkit-details-marker {
  display: none
}

.partners-toggle span {
  display: grid;
  gap: 3px
}

.partners-toggle small {
  color: #b54c31;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.partners-toggle strong {
  font-size: 16px
}

.partners-toggle b {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #b54c31;
  background: #fff;
  box-shadow: 0 6px 14px rgba(153, 73, 50, .12);
  font-size: 22px;
  transition: transform .2s ease
}

.partners-disclosure[open] .partners-toggle b {
  transform: rotate(45deg)
}

.partners-disclosure__content {
  padding: 16px
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  align-items: stretch
}

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

.partner-card h3 {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  background: #fffaf6;
  font-size: 13px;
  line-height: 1.35
}

.partner-card__content {
  padding: 0 18px 18px
}

.partner-card dl {
  margin: 8px 0
}

.partner-card dl>div {
  display: grid;
  grid-template-columns: minmax(92px, .85fr) minmax(0, 1.15fr);
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f2efe9;
  font-size: 11px
}

.partner-card dt {
  color: var(--muted)
}

.partner-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 600
}

.partner-example {
  padding: 10px;
  border-radius: 10px;
  background: #fff5ee;
  color: #655a55;
  font-size: 10px;
  line-height: 1.4
}

.partner-button {
  display: block;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 7px 14px rgba(246, 84, 47, .15);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease
}

.faq {
  background: #fff7f1
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  max-width: 980px;
  margin-inline: auto
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 20px;
  list-style: none;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer
}

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

.faq-list summary span {
  color: var(--orange);
  font-size: 21px;
  transition: transform .18s ease
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 19px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55
}

.seo-copy {
  margin: 0 48px 48px;
  padding: 34px;
  border: 1px solid #eee3d8;
  border-radius: 19px;
  background: #faf7f2
}

.seo-copy h2 {
  margin: 0 0 14px;
  font-size: 28px
}

.seo-copy p {
  max-width: 1050px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65
}

.site-footer {
  margin: 0 22px 22px;
  padding: 34px;
  border-radius: 20px;
  color: #f7ede8;
  background: #27201f
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: start;
  gap: 36px;
  padding-bottom: 26px
}

.logo--footer {
  color: #fff
}

.footer-main>p {
  margin: 4px 0 0;
  color: #cfc2bd;
  font-size: 12px;
  line-height: 1.55
}

.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  font-size: 12px
}

.footer-main nav a:hover {
  color: #ff9a7e
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #a99b96;
  font-size: 11px
}

.footer-bottom a {
  color: #ffae98
}

.legal-page .header {
  border-bottom: 1px solid var(--line)
}

.legal-hero {
  padding: 70px 56px;
  background: linear-gradient(120deg, #fff1e8, #ffe1d5)
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -2px
}

.legal-hero>p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55
}

.legal-content {
  padding: 48px 56px 64px
}

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

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

.legal-card h2 {
  margin: 0 0 10px;
  font-size: 19px
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65
}

.legal-card a {
  color: #c64a2d;
  text-decoration: underline
}

.legal-back {
  display: inline-flex;
  margin-top: 24px;
  padding: 13px 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--orange);
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease
}

@keyframes noteFloat {

  0%,
  100% {
    translate: 0 0
  }

  50% {
    translate: 0 -7px
  }
}

@keyframes buttonPulse {

  0%,
  100% {
    box-shadow: 0 9px 20px rgba(243, 81, 45, .2)
  }

  50% {
    box-shadow: 0 11px 27px rgba(243, 81, 45, .36)
  }
}

@keyframes buttonShine {

  0%,
  52% {
    left: -35%
  }

  78%,
  100% {
    left: 118%
  }
}

@keyframes arrowMove {

  0%,
  100% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(4px)
  }
}

@keyframes livePulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(87, 197, 135, .13)
  }

  50% {
    box-shadow: 0 0 0 7px rgba(87, 197, 135, .04)
  }
}

@media(max-width:1120px) {
  .nav {
    gap: 24px
  }

  .hero {
    padding-inline: 40px
  }

  .loan-finder {
    gap: 28px;
    margin-inline: 24px;
    padding: 40px 34px
  }

  .offers-section,
  .how-section,
  .partners,
  .faq {
    padding-inline: 40px
  }

  .offers-grid {
    gap: 15px
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .benefits {
    gap: 25px;
    padding-inline: 20px
  }

  .benefit-list {
    gap: 10px
  }

  .benefit {
    gap: 6px
  }
}

@media(max-width:760px) {
  html {
    scroll-padding-top: 74px
  }

  .page-shell {
    padding: 0
  }

  .site-card {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    box-shadow: none
  }

  .header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    height: 72px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(132, 93, 52, .08)
  }

  .logo {
    font-size: 20px
  }

  .logo-mark {
    width: 38px;
    height: 38px
  }

  .header-cta {
    display: none
  }

  .menu-button {
    z-index: 4;
    display: block
  }

  .nav {
    position: absolute;
    top: 66px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 13px;
    border: 1px solid #eee7df;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow)
  }

  .nav.is-open {
    display: flex
  }

  .nav a {
    padding: 12px 10px
  }

  .nav a::after {
    display: none
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 28px 20px 0
  }

  .hero-copy {
    display: contents
  }

  .hero-kicker {
    font-size: 10px
  }

  .hero-break {
    display: block
  }

  .hero h1 {
    font-size: 48px;
    line-height: .96;
    letter-spacing: -2.8px
  }

  .hero-subtitle {
    max-width: 440px;
    margin-top: 14px;
    font-size: 16px
  }

  .hero-actions {
    display: contents
  }

  .hero-button {
    order: 2;
    width: max-content;
    min-width: 216px;
    margin-top: 18px;
    padding: 13px 15px;
    font-size: 14px
  }

  .hero-button span,
  .trust-row {
    display: none
  }

  .hero-visual {
    order: 3;
    height: 320px;
    margin: 0 -20px;
    overflow: hidden
  }

  .hero-visual>img {
    inset: -12px -22% -15px -5%;
    width: 144%;
    height: 112%
  }

  .floating-note {
    padding: 10px 12px;
    border-radius: 11px;
    font-size: 10px
  }

  .note-approved {
    left: 5%;
    bottom: 18%
  }

  .note-money {
    top: 17%;
    right: 4%
  }

  .loan-finder {
    display: none;
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 0;
    padding: 38px 16px;
    border-radius: 0
  }

  .finder-intro h2 {
    max-width: 520px;
    font-size: 38px;
    letter-spacing: -1.7px
  }

  .finder-intro>p:last-child {
    margin-top: 15px;
    font-size: 13px
  }

  .finder-console {
    padding: 20px 16px 18px;
    border-radius: 18px
  }

  .finder-console__topline {
    margin-bottom: 18px
  }

  .finder-amount output {
    min-width: 100px;
    padding: 7px 10px
  }

  .finder-options {
    margin-top: 17px
  }

  .filter-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .filter-chips button {
    padding: 9px 6px
  }

  .finder-result {
    align-items: flex-end
  }

  .finder-result strong {
    font-size: 28px
  }

  .offers-section {
    position: relative;
    z-index: 5;
    margin-top: 0;
    padding: 40px 12px 24px
  }

  .section-heading--offers {
    display: block
  }

  .offers-grid,
  .offers-grid.expanded {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 10px;
    overflow: visible;
    padding: 3px 0 10px
  }

  .offer-card,
  .offer-card:nth-child(n+7),
  .offers-grid.expanded .offer-card,
  .offers-grid.is-catalog-filtered .offer-card {
    display: flex;
    min-height: 310px;
    padding: 10px;
    border-radius: 16px
  }

  .offer-card.is-filtered-out {
    display: none !important
  }

  .offer-card:hover,
  .offer-card:focus-visible,
  .offer-card:focus-within {
    transform: none
  }

  .offer-card__topline {
    margin-bottom: 7px;
    font-size: 7px
  }

  .offer-card__topline span {
    padding: 4px 6px
  }

  .lender-logo {
    min-height: 86px;
    padding: 8px;
    border-radius: 12px
  }

  .lender-logo img {
    max-width: 138px;
    max-height: 67px;
  }

  .offer-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin: 10px 0 8px
  }

  .offer-stats>div {
    min-height: 54px;
    padding: 8px 6px;
    border: 1px solid #eee8e1;
    border-radius: 9px;
    background: #fffdfa;
    text-align: left
  }

  .offer-stats>div:first-child {
    grid-column: 1/-1
  }

  .stat-icon {
    display: none
  }

  .offer-stats dt {
    font-size: 8px
  }

  .offer-stats dd {
    margin-top: 3px;
    font-size: 12px;
    white-space: normal
  }

  .offer-stats>div:first-child dd {
    font-size: 14px
  }

  .apr-row {
    display: block;
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 9px;
    font-size: 8px
  }

  .apr-row strong {
    display: block;
    margin-top: 3px;
    font-size: 9px;
    text-align: left
  }

  .card-button {
    padding: 10px 5px;
    border-radius: 10px;
    font-size: 10px
  }

  .card-button span {
    display: none
  }

  .details-link {
    margin-top: 7px;
    font-size: 8px
  }

  .dots,
  .show-more {
    display: none
  }

  .filter-empty {
    padding: 32px 20px
  }

  .benefits {
    min-height: auto;
    margin: 18px 12px 26px;
    padding: 14px 9px;
    border-radius: 17px
  }

  .benefits h2 {
    display: none
  }

  .benefit-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px
  }

  .benefit {
    flex-direction: column;
    gap: 6px;
    text-align: center
  }

  .benefit-icon {
    width: 45px;
    height: 45px
  }

  .benefit-icon img {
    width: 34px;
    height: 34px;
  }

  .benefit h3 {
    font-size: 9px
  }

  .benefit p {
    display: none
  }

  .how-section,
  .partners,
  .faq {
    padding: 44px 16px
  }

  .section-heading {
    display: block;
    margin-bottom: 20px
  }

  .section-heading h2 {
    font-size: 27px
  }

  .section-heading>p {
    margin-top: 12px;
    font-size: 13px
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 11px
  }

  .steps-grid article {
    min-height: 0;
    padding: 21px
  }

  .steps-grid h3 {
    margin-top: 16px
  }

  .partners-grid {
    grid-template-columns: 1fr
  }

  .partners-toggle {
    padding: 17px 15px
  }

  .partners-toggle strong {
    font-size: 14px
  }

  .partners-disclosure__content {
    padding: 9px
  }

  .faq-list summary {
    padding: 17px 16px;
    font-size: 14px
  }

  .faq-list p {
    padding: 0 16px 17px
  }

  .seo-copy {
    margin: 0 14px 32px;
    padding: 24px 20px
  }

  .seo-copy h2 {
    font-size: 25px
  }

  .site-footer {
    margin: 0;
    padding: 28px 20px 18px;
    border-radius: 0
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .footer-main nav {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px
  }

  .legal-page .header .nav {
    display: none
  }

  .legal-hero {
    padding: 52px 20px
  }

  .legal-hero h1 {
    font-size: 44px
  }

  .legal-hero>p:last-child {
    font-size: 15px
  }

  .legal-content {
    padding: 28px 14px 42px
  }

  .legal-grid {
    grid-template-columns: 1fr
  }

  .legal-card {
    padding: 22px
  }
}

@media(max-width:390px) {
  .hero h1 {
    font-size: 43px
  }

  .hero-subtitle {
    font-size: 15px
  }

  .hero-visual {
    height: 292px
  }

  .offers-grid,
  .offers-grid.expanded {
    gap: 8px
  }

  .offer-card,
  .offer-card:nth-child(n+7),
  .offers-grid.expanded .offer-card {
    padding: 9px
  }

  .offer-stats dd {
    font-size: 11px
  }

  .partner-card dl>div {
    grid-template-columns: 88px minmax(0, 1fr)
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}
