/* ==========================================================================
   Eazy Cash Loan — landing page
   Layout, type scale and colour are matched to the UI/UX concept
   (1536px reference width, 1304px content column).
   ========================================================================== */

:root {
  --ink: #1a1f24;
  --ink-soft: #3b444d;
  --muted: #5a646e;

  --green: #2e8b23;
  --green-deep: #2f8020;
  --green-mid: #37881f;
  --green-band: #f4f9f4;
  --green-band-line: #e4efe5;
  --green-pill: #dbecd7;
  --green-social: #5ea341;

  --orange: #f47501;
  --orange-hi: #ff8a12;
  --orange-warn: #fb7f08;

  --line: #e3e6e9;
  --line-strong: #dcdfe3;
  --card-line: #e8eaec;

  --warn-bg: #fef7e6;
  --warn-line: #f6e3bd;

  --footer-bg: #20282f;

  --shadow-card: 0 10px 28px rgba(20, 32, 43, 0.07), 0 2px 6px rgba(20, 32, 43, 0.04);

  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Nunito, Inter, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img,
svg {
  display: block;
}

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

.wrap {
  width: 100%;
  max-width: 1352px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Shared orange button ---------------------------------------------------- */
.btn-primary {
  align-items: center;
  background: var(--orange);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--sans);
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.1px;
  transition: background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.btn-primary:hover {
  background: var(--orange-hi);
  box-shadow: 0 6px 16px rgba(244, 117, 1, 0.28);
}

.btn-primary:active {
  transform: translateY(1px);
}

:where(a, button, input, summary):focus-visible {
  outline: 3px solid rgba(46, 139, 35, 0.45);
  outline-offset: 2px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 32px;
  height: 80px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.brand img {
  height: 81px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  gap: 37px;
  margin-left: auto;
}

.nav-links a {
  color: var(--ink);
  transition: color 150ms ease;
}

.nav-links a:hover {
  color: var(--green);
}

.header-cta {
  flex: 0 0 auto;
  font-size: 15px;
  height: 40px;
  margin-left: 74px;
  padding: 0 20px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 21px 0 19px;
}

.hero-grid {
  align-items: center;
  column-gap: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 384px 421px;
}

.hero-mascot {
  padding: 0 67px 0 9px;
}

.hero-copy h1 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(38px, 4.1vw, 63px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 9.4em;
}

.hero-copy h1 span {
  color: var(--green-deep);
}

.hero-sub {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 17.5px);
  line-height: 1.52;
  max-width: 470px;
}

.trust-row {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  margin-top: 27px;
  max-width: 390px;
}

.trust-row li {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  font-size: 15.5px;
  gap: 12px;
  min-height: 30px;
  padding: 0 17px;
  white-space: nowrap;
}

.trust-row li:first-child {
  padding-left: 0;
}

.trust-row li:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-row svg {
  fill: none;
  flex: 0 0 auto;
  height: 26px;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 26px;
}

.trust-row svg.ico-fill,
.secure-note svg.ico-fill {
  fill: var(--green);
  stroke: none;
}

/* Mascot ------------------------------------------------------------------ */
.hero-mascot {
  justify-self: center;
}

.hero-mascot img {
  height: auto;
  width: 308px;
}

/* Request card ------------------------------------------------------------ */
.request-card {
  background: #fff;
  border: 1px solid var(--card-line);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 21px 23px 16px;
}

.card-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.1px;
  margin-bottom: 13px;
}

.amount-row {
  align-items: center;
  display: flex;
  gap: 12px;
}

.currency {
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.amount-row input {
  border: 1px solid #e3e6e9;
  border-radius: 8px;
  color: var(--ink);
  flex: 1;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 500;
  height: 47px;
  min-width: 0;
  padding: 0 16px;
}

.amount-row input::placeholder {
  color: #b4bbc2;
  font-weight: 500;
}

.amount-range {
  --pct: 44.4%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  display: block;
  height: 20px;
  margin: 14px 0 0;
  width: 100%;
}

.amount-range::-webkit-slider-runnable-track {
  background: linear-gradient(
    90deg,
    #2f8020 0 var(--pct),
    #e9edf1 var(--pct) 100%
  );
  border-radius: 999px;
  height: 6px;
}

.amount-range::-moz-range-track {
  background: linear-gradient(
    90deg,
    #2f8020 0 var(--pct),
    #e9edf1 var(--pct) 100%
  );
  border-radius: 999px;
  height: 6px;
}

.amount-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: radial-gradient(circle at 50% 50%, #fff 0 27%, var(--orange) 29% 100%);
  border: 0;
  border-radius: 50%;
  height: 20px;
  margin-top: -7px;
  width: 20px;
}

.amount-range::-moz-range-thumb {
  background: radial-gradient(circle at 50% 50%, #fff 0 27%, var(--orange) 29% 100%);
  border: 0;
  border-radius: 50%;
  height: 20px;
  width: 20px;
}

.range-labels {
  color: var(--ink-soft);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  margin-top: 2px;
}

.field-label {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin: 14px 0 7px;
}

#zip {
  border: 1px solid #e3e6e9;
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  height: 40px;
  padding: 0 15px;
  width: 100%;
}

#zip::placeholder {
  color: #b4bbc2;
}

.btn-continue {
  font-size: 19px;
  height: 43px;
  margin-top: 17px;
  position: relative;
  width: 100%;
}

.btn-continue .chev {
  fill: none;
  height: 17px;
  position: absolute;
  right: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 17px;
}

.secure-note {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 12.5px;
  gap: 7px;
  justify-content: center;
  margin-top: 12px;
}

.secure-note svg {
  fill: #2b323a;
  height: 14px;
  width: 14px;
}

.no-obligation {
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
}

.form-message {
  color: var(--green-deep);
  display: none;
  font-size: 13.5px;
  font-weight: 700;
  margin-top: 8px;
  text-align: center;
}

.form-message.is-visible {
  display: block;
}

/* ==========================================================================
   Section headings shared
   ========================================================================== */
.side-title {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.22;
}

/* ==========================================================================
   How it works
   ========================================================================== */
.steps-band {
  background: var(--green-band);
  border-bottom: 1px solid var(--green-band-line);
  border-top: 1px solid var(--green-band-line);
  padding: 24px 0;
}

.steps-grid {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 190px minmax(0, 1fr);
}

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr) 36px minmax(0, 1fr);
}

.step {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 43px auto minmax(0, 1fr);
}

.step-num {
  align-items: center;
  background: var(--green-pill);
  border-radius: 50%;
  color: #2b7a2b;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 800;
  height: 43px;
  justify-content: center;
  width: 43px;
}

.step img {
  height: auto;
  width: 69px;
}

.step:nth-child(3) img {
  width: 77px;
}

.step:nth-child(5) img {
  width: 65px;
}

.step-text h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.1px;
  margin-bottom: 4px;
}

.step-text p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.38;
  max-width: 20em;
}

.step-arrow {
  align-items: center;
  align-self: stretch;
  border-left: 1px solid #d7e4d9;
  display: flex;
  justify-content: center;
}

.step-arrow svg {
  fill: none;
  height: 18px;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefits {
  padding: 26px 0 24px;
}

.benefits-grid {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 190px minmax(0, 1fr);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-list article {
  align-items: center;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 0 20px;
}

.benefit-list article:first-child {
  padding-left: 0;
}

.benefit-list article:last-child {
  border-right: 0;
  padding-right: 0;
}

.benefit-list h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.1px;
  margin-bottom: 4px;
}

.benefit-list p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.38;
}

.ico-benefit,
.ico-shield {
  color: var(--green);
  height: 44px;
  width: 44px;
}

.ico-benefit {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

/* ==========================================================================
   Need gallery
   ========================================================================== */
.need-gallery {
  border-top: 1px solid var(--line);
  padding: 26px 0 26px;
}

.gallery-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.gallery-head p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  max-width: 470px;
}

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

.need-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(20, 32, 43, 0.05);
  overflow: hidden;
}

.need-cards img {
  aspect-ratio: 1.55;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.need-cards div {
  padding: 13px 14px 15px;
}

.need-cards h3 {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 5px;
}

.need-cards p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

/* ==========================================================================
   Borrow carefully
   ========================================================================== */
.borrow-wrap {
  padding-bottom: 18px;
}

.borrow-note {
  align-items: center;
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  border-radius: 9px;
  display: grid;
  gap: 22px;
  grid-template-columns: 28px max-content minmax(0, 1fr);
  padding: 10px 26px;
}

.ico-warn {
  color: var(--orange-warn);
  height: 28px;
  width: 28px;
}

.borrow-note strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.borrow-note p {
  color: var(--ink-soft);
  font-size: 16px;
  padding-left: 26px;
}

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

.disclosure-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
}

.disclosure-grid strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.disclosure-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* ==========================================================================
   About
   ========================================================================== */
.about-section {
  border-top: 1px solid var(--line);
  padding: 27px 0 28px;
}

.about-grid {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 320px minmax(0, 1fr);
}

.about-grid > div > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin-top: 10px;
}

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

.about-points article {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.about-points strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 5px;
}

.about-points span {
  color: var(--muted);
  display: block;
  font-size: 13.5px;
  line-height: 1.48;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding-bottom: 30px;
}

.faq-head {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 13px;
}

.see-all {
  align-items: center;
  color: var(--green-deep);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
}

.see-all .chev {
  fill: none;
  height: 13px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  width: 13px;
}

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

.faq details {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  height: fit-content;
}

.faq summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
  justify-content: space-between;
  letter-spacing: -0.1px;
  list-style: none;
  padding: 9px 12px;
}

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

.faq summary::after {
  border-bottom: 2px solid #55606b;
  border-right: 2px solid #55606b;
  content: "";
  flex: 0 0 auto;
  height: 7px;
  margin-bottom: 3px;
  transform: rotate(45deg);
  transition: transform 160ms ease;
  width: 7px;
}

.faq details[open] summary::after {
  margin-bottom: -2px;
  transform: rotate(-135deg);
}

.faq details p {
  border-top: 1px solid #eef1f3;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 14px;
  padding: 10px 0 12px;
}

/* ==========================================================================
   Legal
   ========================================================================== */
.legal-section {
  border-top: 1px solid var(--line);
  padding: 28px 0 32px;
}

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

.legal-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
}

.legal-grid h2 {
  margin-bottom: 12px;
}

.legal-grid p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin-top: 10px;
}

.legal-grid a {
  color: var(--green-deep);
  font-weight: 700;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.88);
  padding: 19px 0 12px;
}

.footer-grid {
  column-gap: 30px;
  display: grid;
  grid-template-columns: 470px 173px 150px minmax(0, 1fr) auto;
  row-gap: 0;
}

.footer-brand {
  align-items: start;
  column-gap: 32px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
}

.footer-brand img {
  height: auto;
  margin-top: -2px;
  width: 172px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.55;
  max-width: 275px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-col a,
.footer-heading {
  font-size: 13px;
  line-height: 1.5;
}

.footer-col a {
  transition: color 150ms ease;
}

.footer-col a:hover {
  color: #fff;
}

.socials {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}

.socials a {
  align-items: center;
  background: var(--green-social);
  border-radius: 50%;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  transition: background 150ms ease;
  width: 38px;
}

.socials a:hover {
  background: #6cb54c;
}

.socials svg {
  fill: #fff;
  height: 19px;
  width: 19px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  font-size: 13px;
  gap: 78px;
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 12px;
  padding-top: 11px;
}

/* ==========================================================================
   Request modal
   ========================================================================== */
.modal-backdrop {
  align-items: center;
  background: rgba(26, 31, 36, 0.58);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 60;
}

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

.request-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  max-height: min(92vh, 760px);
  max-width: 620px;
  overflow: auto;
  padding: 24px;
  position: relative;
  width: 100%;
}

.modal-close {
  align-items: center;
  background: #f2f5f3;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 36px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 36px;
}

.modal-head {
  padding-right: 46px;
}

.modal-head h2 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.modal-head p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.modal-progress {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}

.modal-progress span {
  align-items: center;
  background: #edf4ec;
  border-radius: 50%;
  color: var(--green-deep);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.modal-progress span.active {
  background: var(--green);
  color: #fff;
}

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

.modal-fields label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
}

.modal-fields label.wide {
  grid-column: 1 / -1;
}

.modal-fields input,
.modal-fields select {
  border: 1px solid #dfe4e8;
  border-radius: 8px;
  color: var(--ink);
  font: 500 15px/1 var(--sans);
  height: 44px;
  padding: 0 12px;
  width: 100%;
}

.modal-fields .consent {
  align-items: start;
  display: flex;
  font-weight: 600;
  gap: 10px;
}

.modal-fields .consent input {
  flex: 0 0 auto;
  height: 18px;
  margin-top: 1px;
  width: 18px;
}

.modal-submit {
  font-size: 17px;
  height: 46px;
  margin-top: 18px;
  width: 100%;
}

.modal-message {
  color: var(--green-deep);
  display: none;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
}

.modal-message.is-visible {
  display: block;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1240px) {
  .nav-links {
    gap: 30px;
  }

  .header-cta {
    margin-left: 28px;
  }

  .hero-grid {
    column-gap: 28px;
    grid-template-columns: minmax(0, 1fr) 240px 380px;
  }

  .hero-mascot {
    padding: 0;
  }

  .hero-mascot img {
    width: 240px;
  }

  .steps-grid,
  .benefits-grid {
    gap: 18px;
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .step {
    gap: 12px;
    grid-template-columns: 38px auto minmax(0, 1fr);
  }

  .step img,
  .step:nth-child(3) img,
  .step:nth-child(5) img {
    width: 58px;
  }

  .step-num {
    font-size: 18px;
    height: 38px;
    width: 38px;
  }

  .benefit-list article {
    padding: 0 18px;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    column-gap: 26px;
    grid-template-columns: minmax(0, 1fr) 200px 340px;
  }

  .hero-mascot {
    padding: 0;
  }

  .hero-mascot img {
    width: 200px;
  }

  .footer-brand {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 10px;
  }

  .steps-grid,
  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 18px;
  }

  .step-arrow {
    display: none;
  }

  .step,
  .benefit-list article {
    border-right: 0;
  }

  .benefit-list {
    gap: 22px 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .benefit-list article,
  .benefit-list article:first-child,
  .benefit-list article:last-child {
    padding: 0;
  }

  .benefit-list article:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 22px;
  }

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

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.7fr)) minmax(0, 1fr);
    row-gap: 24px;
  }

  .socials {
    grid-column: 1 / -1;
    margin-top: 6px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 26px;
  }

  .hero-mascot {
    justify-self: center;
  }

  .hero-mascot img {
    width: 240px;
  }
}

@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }

  .header-inner {
    height: 68px;
  }

  .brand img {
    height: 58px;
  }

  .header-cta {
    font-size: 14px;
    height: 38px;
    margin-left: 0;
    padding: 0 16px;
  }

  .hero {
    padding: 26px 0 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .hero-mascot {
    padding: 0;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9.4vw, 46px);
    max-width: none;
  }

  .hero-mascot {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .hero-mascot img {
    width: min(230px, 62vw);
  }

  .request-card {
    grid-column: 1;
    grid-row: 3;
  }

  .wide-only {
    display: none;
  }

  .trust-row {
    margin-top: 26px;
  }

  .trust-row li {
    font-size: 13px;
    gap: 7px;
    padding: 0 8px;
  }

  .trust-row svg {
    height: 21px;
    width: 21px;
  }

  .benefit-list,
  .faq-grid,
  .need-cards,
  .legal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .benefit-list article:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .benefit-list article {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }

  .benefit-list article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .borrow-note {
    gap: 12px;
    grid-template-columns: 26px minmax(0, 1fr);
    padding: 16px 18px;
  }

  .borrow-note p {
    grid-column: 1 / -1;
    padding-left: 0;
  }

  .disclosure-grid,
  .about-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-points article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 14px;
  }

  .faq-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 10px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .socials {
    grid-column: 1 / -1;
  }

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

  .modal-fields {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 400px) {
  .trust-row li {
    font-size: 12px;
    padding: 0 5px;
  }
}
