@font-face {
  font-family: "Roboto Flex";
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url("./assets-a/fonts/roboto-flex.ttf") format("truetype");
}

@font-face {
  font-family: "Be Vietnam Pro Display";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./assets-a/fonts/be-vietnam-pro-900.ttf") format("truetype");
}

:root {
  --ink: #292b33;
  --muted: #626673;
  --soft: #9599a6;
  --orange: #ff7a1b;
  --orange-dark: #c84b00;
  --cream: #fff3d5;
  --line: rgba(41, 43, 51, 0.1);
  --page: #ffffff;
  --wash: #fff7ef;
  --shadow: 0 20px 60px rgba(41, 43, 51, 0.12);
  --header-height: 128px;
  --sticky-data-height: 90px;
  font-family: "Roboto Flex", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: var(--sticky-data-height);
  color: var(--ink);
  background: var(--page);
}

button,
input,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    linear-gradient(180deg, rgba(255, 122, 27, 0.06), rgba(255, 255, 255, 0) 520px),
    #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.risk-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 56px;
  overflow: hidden;
  padding: 10px 32px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 122, 27, 0.98), rgba(255, 137, 25, 0.92)),
    radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.2), transparent 30%);
  font-size: clamp(14px, 1.12vw, 16px);
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}

.risk-strip img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.risk-marquee {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.risk-marquee-track {
  --risk-gap: 80px;
  --risk-half-gap: 40px;
  display: flex;
  width: max-content;
  gap: var(--risk-gap);
  animation: riskStripMarquee 34s linear infinite;
  will-change: transform;
}

.risk-marquee span {
  flex: 0 0 auto;
  min-width: 0;
  white-space: nowrap;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.25;
}

.nav-bar > .brand span:last-child {
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  -webkit-text-stroke: 0.25px currentColor;
  text-shadow: 0 0 0.25px currentColor;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand.small {
  font-size: 18px;
}

.site-footer .brand.small span:last-child {
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  -webkit-text-stroke: 0.25px currentColor;
  text-shadow: 0 0 0.25px currentColor;
}

.brand.small .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a.active {
  color: var(--orange);
  background: var(--cream);
}

.submenu-link {
  position: relative;
  z-index: 1;
}

.submenu-toggle {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: -8px;
  border: 0;
  border-radius: 999px;
  color: rgba(41, 43, 51, 0.58);
  background: transparent;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.submenu-toggle span {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.18s ease;
}

.submenu-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 320px;
  padding: 16px;
  border: 1px solid rgba(41, 43, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(41, 43, 51, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.submenu-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 36px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(41, 43, 51, 0.08);
  border-left: 1px solid rgba(41, 43, 51, 0.08);
  background: rgba(255, 255, 255, 0.98);
  transform: rotate(45deg);
}

.submenu-panel a {
  justify-content: flex-start;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  white-space: normal;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.submenu-panel a:hover,
.submenu-panel a:focus-visible {
  color: var(--orange);
  background: var(--wash);
  transform: translateY(-1px);
}

.nav-item.has-submenu:hover .submenu-panel,
.nav-item.has-submenu:focus-within .submenu-panel,
.nav-item.has-submenu.is-open .submenu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item.has-submenu:hover .submenu-toggle,
.nav-item.has-submenu:focus-within .submenu-toggle,
.nav-item.has-submenu.is-open .submenu-toggle {
  color: var(--orange);
  background: var(--cream);
}

.nav-item.has-submenu:hover .submenu-toggle span,
.nav-item.has-submenu:focus-within .submenu-toggle span,
.nav-item.has-submenu.is-open .submenu-toggle span {
  transform: rotate(225deg) translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero-section {
  position: relative;
  min-height: 600px;
  color: #fff;
  background-image: url("./assets-a/figma/hero-bg-1920.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-section::before {
  content: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 386px;
  align-items: end;
  width: min(1200px, calc(100% - 40px));
  min-height: 600px;
  margin: 0 auto;
  gap: 56px;
}

.success-marquee {
  position: absolute;
  top: 28px;
  left: 42px;
  z-index: 4;
  width: min(392px, calc(100% - 480px));
  height: 54px;
  overflow: hidden;
  pointer-events: none;
}

.success-marquee-item {
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  min-height: 54px;
  padding: 9px 18px 9px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(87, 26, 0, 0.12);
  opacity: 0;
  transform: translateY(110%);
  animation: successMarquee 200s cubic-bezier(0.22, 0.76, 0.22, 1) infinite;
  animation-delay: calc(var(--item-index) * 4s);
  will-change: opacity, transform;
}

.success-marquee-item img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(41, 43, 51, 0.12);
}

.success-marquee-item span {
  min-width: 0;
  color: #292b33;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}

.success-marquee-item b {
  font-weight: 800;
}

.success-marquee-item strong {
  color: var(--orange);
  font-weight: 900;
}

.hero-copy {
  align-self: center;
  padding: 44px 0 10px 42px;
}

.hero-title-lockup {
  position: relative;
  width: min(760px, 100%);
  height: 244px;
  margin: 50px 0 26px;
}

.hero-kicker {
  position: absolute;
  top: 76px;
  left: 0;
  z-index: 2;
  margin: 0;
  color: #fff200;
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: none;
  text-transform: uppercase;
}

.hero-title {
  position: absolute;
  inset: 0;
  margin: 0;
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-number {
  position: absolute;
  top: 0;
  left: 162px;
  color: #fff200;
  font-size: 238px;
  font-weight: 900;
  line-height: 0.92;
  text-shadow: 0 12px 0 rgba(133, 54, 0, 0.18);
}

.hero-title-words {
  position: absolute;
  top: 76px;
  left: 348px;
  display: block;
  width: 410px;
}

.hero-title-words strong {
  display: block;
  color: #fff200;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  text-shadow: none;
}

.hero-title-words small {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.18;
  text-shadow: none;
}

.hero-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(684px, 100%);
  min-height: 58px;
  margin-bottom: 40px;
  padding: 10px 24px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 37px;
  color: #843700;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
  transform: translateY(-14px);
}

.hero-search-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 35px;
  background: linear-gradient(180deg, #fe9e1a 0%, #f15601 100%);
  overflow: hidden;
}

.hero-search-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-search p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  white-space: nowrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 766px;
  transform: translateY(-18px);
}

.hero-features article {
  display: flex;
  min-height: 157px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 10px;
  border: 2px solid #fff;
  border-radius: 12px;
  color: #000;
  background: linear-gradient(180deg, #ffdcb5 0%, #fff 100%);
  overflow: hidden;
}

.hero-features img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  object-fit: contain;
}

.hero-features span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.hero-feature-highlight {
  color: var(--orange);
  font-weight: 900;
}

.phone-frame {
  position: relative;
  align-self: end;
  width: 375px;
  height: 596px;
  margin-top: 44px;
  padding: 32px 24px 24px;
  border: 11px solid #4c1700;
  border-bottom: 0;
  border-radius: 58px 58px 0 0;
  background: #fff;
  box-shadow: 0 24px 48px rgba(87, 26, 0, 0.24);
}

.phone-speaker {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 78px;
  height: 5px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(41, 43, 51, 0.18);
}

.loan-card {
  color: var(--ink);
}

.loan-card h2 {
  margin: 0 0 22px;
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 26px;
}

.loan-row,
.range-limits {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loan-row span,
.term-group > span,
.date-field span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.loan-row strong {
  color: var(--orange);
  font-size: 22px;
  line-height: 30px;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  margin: 16px 0 10px;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) var(--loan-progress, 19%), #e5e7eb var(--loan-progress, 19%));
}

input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 122, 27, 0.14), 0 0 10px rgba(255, 107, 26, 0.45);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 122, 27, 0.14), 0 0 10px rgba(255, 107, 26, 0.45);
}

.loan-slider-shell {
  position: relative;
}

.loan-hand-hint {
  position: absolute;
  left: 50%;
  top: 28px;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  pointer-events: none;
  transform: translateX(-50%);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.loan-hand-hint img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(255, 122, 27, 0.18));
  transform-origin: 70% 30%;
  animation: loanHandNudge 1.6s ease-in-out infinite;
}

.loan-hand-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.range-limits {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.term-group {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.term-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.term-buttons button {
  min-height: 38px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.term-buttons button.selected {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--cream);
}

.date-field {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.date-field output {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.summary-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 8px;
  background: #f9fafb;
}

.summary-box div:first-child {
  border-right: 1px solid #e5e7eb;
  padding-right: 10px;
}

.summary-box div:last-child {
  padding-left: 16px;
}

.summary-box > div {
  display: grid;
  grid-template-rows: 34px 14px 24px;
  align-content: start;
}

.summary-box span,
.summary-box small {
  display: block;
}

.summary-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.summary-box small {
  color: var(--soft);
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
}

.summary-box strong {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font-size: 17px;
  line-height: 24px;
}

.primary-action-link {
  display: block;
  text-decoration: none;
}

.primary-action {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 24px rgba(255, 122, 27, 0.24);
  font-size: 16px;
  font-weight: 800;
}

.primary-action.is-ready {
  background: #21a661;
  box-shadow: 0 14px 24px rgba(33, 166, 97, 0.22);
}

.loan-note {
  margin: 12px 0 0;
  color: var(--soft);
  font-size: 11px;
  line-height: 16px;
  text-align: center;
}

.section-heading {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.35;
}

.banks-section {
  padding: 54px 0 66px;
  background: #fff;
}

.bank-marquee {
  display: grid;
  gap: 20px;
  width: 100%;
  overflow: hidden;
}

.bank-row {
  display: flex;
  width: max-content;
  gap: 24px;
  will-change: transform;
}

.bank-row.left {
  animation: bankLeft 68s linear infinite;
}

.bank-row.right {
  animation: bankRight 72s linear infinite;
}

.bank-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 96px;
  flex: 0 0 auto;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(41, 43, 51, 0.04);
}

.bank-card img {
  max-width: 150px;
  max-height: 56px;
  object-fit: contain;
}

.bank-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  max-width: 146px;
  min-height: 42px;
  color: var(--brand-color, var(--ink));
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.testimonials-section {
  padding: 70px 0 86px;
  background: linear-gradient(180deg, #fff8ee, #fff5e9);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 373px));
  justify-content: center;
  gap: 40px;
  width: min(1200px, calc(100% - 40px));
  height: 920px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.testimonial-column {
  height: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: grid;
  gap: 24px;
  will-change: transform;
}

.testimonial-track.up {
  animation: testimonialUp 48s linear infinite;
}

.testimonial-track.down {
  animation: testimonialDown 48s linear infinite;
}

.testimonial-grid:hover .testimonial-track,
.testimonial-grid:focus-within .testimonial-track,
.mobile-testimonials:hover .testimonial-track,
.mobile-testimonials:focus-within .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.stars {
  color: #ffb400;
  font-size: 20px;
  line-height: 24px;
}

.testimonial-card blockquote {
  min-height: 72px;
  margin: 12px 0 24px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.person {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.person img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
}

.person b,
.person span {
  display: block;
}

.person b {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.person span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
}

.mobile-testimonials {
  display: none;
}

.promo-section {
  width: min(1200px, calc(100% - 40px));
  margin: 72px auto 60px;
}

.promo-section img {
  width: 100%;
  border-radius: 8px;
}

.download-section {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px)) minmax(306px, 387px);
  align-items: center;
  justify-content: center;
  column-gap: 32px;
  width: 100%;
  min-height: var(--sticky-data-height);
  margin: 0;
  padding: 6px max(24px, calc((100vw - 1200px) / 2));
  border-radius: 0;
  color: #fff;
  background: #280d00;
  box-shadow: 0 -18px 44px rgba(40, 13, 0, 0.18);
}

.metric {
  min-width: 0;
}

.metric b {
  display: block;
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 38px;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

.store-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.qr {
  width: 78px;
  height: 78px;
  border-radius: 8px;
  background: #fff;
}

.app-store {
  display: block;
  width: 150px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 12px;
  background: #0b0f18;
  object-fit: cover;
  overflow: hidden;
}

.contact-section {
  display: grid;
  grid-template-columns: 373px minmax(0, 1fr);
  grid-column: 1 / -1;
  gap: 40px;
  width: 100%;
  margin: 0 0 64px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.contact-copy h2 {
  margin: 0 0 20px;
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 36px;
  -webkit-text-stroke: 0.45px currentColor;
  text-shadow: 0 0 0.35px currentColor;
}

.contact-copy h2 span {
  color: var(--orange);
}

.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(41, 43, 51, 0.08);
}

.contact-card::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 2;
  height: 1px;
  background: rgba(41, 43, 51, 0.1);
}

.contact-card article:nth-of-type(1),
.contact-card article:nth-of-type(2) {
  grid-row: 1;
}

.contact-card article {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 24px;
  border-radius: 10px;
  background: #f8f8f8;
}

.contact-card article:first-child {
  color: var(--orange);
  background: #fff4e7;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-label img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.contact-card .wide {
  grid-column: 1 / -1;
  grid-row: 3;
  padding-inline: 24px;
  background: #fff;
}

.contact-card span {
  color: rgba(41, 43, 51, 0.7);
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.contact-card article:first-child span {
  color: rgba(110, 37, 0, 0.7);
}

.contact-card b {
  min-width: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 24px;
  overflow-wrap: anywhere;
}

.contact-card article:first-child b {
  color: var(--orange);
  font-size: 24px;
  line-height: 32px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr;
  gap: 40px;
  padding: 80px max(20px, calc((100vw - 1200px) / 2)) 42px;
  border-top: 6px solid var(--orange);
  background: rgba(41, 43, 51, 0.05);
}

.site-footer p {
  margin: 24px 0;
  color: rgba(41, 43, 51, 0.72);
  font-size: 14px;
  line-height: 22px;
}

.site-footer strong {
  font-size: 14px;
  line-height: 20px;
}

.site-footer nav {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer nav b,
.popular-tags b {
  margin-bottom: 10px;
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 28px;
}

.site-footer nav a {
  color: var(--ink);
  font-size: 14px;
  line-height: 20px;
}

.footer-store {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 15px;
}

.popular-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}

.popular-tags b {
  width: 100%;
  text-align: center;
}

.popular-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  color: rgba(41, 43, 51, 0.72);
  background: rgba(41, 43, 51, 0.05);
  font-size: 12px;
  font-weight: 700;
}

.support-chat-overlay {
  position: fixed;
  inset: 0;
  z-index: 97;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.support-chat-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.support-chat-open {
  overflow: hidden;
}

.support-chat-panel {
  position: fixed;
  right: 126px;
  bottom: calc(var(--sticky-data-height) + 20px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  width: 600px;
  height: 800px;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transform-origin: right bottom;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.support-chat-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.support-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 12px;
  color: #fff;
  background: linear-gradient(90deg, #ff6816 0%, #ff7a1b 48%, #ffc22a 100%);
}

.support-chat-header b {
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0;
}

.support-chat-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.support-chat-body {
  flex: 1;
  min-height: 0;
  padding: 30px 20px 18px;
  overflow-y: auto;
  scrollbar-width: none;
}

.support-chat-body::-webkit-scrollbar {
  display: none;
}

.chat-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.chat-row img {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-row p {
  max-width: 276px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 0 14px 14px;
  color: #292b33;
  background: #f3f3f5;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.chat-row.user {
  justify-content: flex-end;
  gap: 10px;
}

.chat-row.user p {
  max-width: 240px;
  border-radius: 14px 0 14px 14px;
  color: #fff;
  background: var(--orange);
  font-weight: 800;
}

.chat-row.user img {
  background: #ffe4c9;
}

.chat-row.typing p {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 62px;
  min-height: 40px;
}

.chat-row.typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(98, 102, 115, 0.55);
  animation: chatTyping 1s ease-in-out infinite;
}

.chat-row.typing i:nth-child(2) {
  animation-delay: 0.12s;
}

.chat-row.typing i:nth-child(3) {
  animation-delay: 0.24s;
}

.support-chat-form {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  margin: 0 20px 20px;
  padding: 0 8px 0 12px;
  border: 2px solid var(--orange);
  border-radius: 10px;
  background: #fff;
}

.support-chat-form input {
  min-width: 0;
  flex: 1;
  height: 48px;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  background: transparent;
}

.support-chat-form input::placeholder {
  color: rgba(149, 153, 166, 0.7);
  font-weight: 500;
}

.support-chat-send {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: rgba(149, 153, 166, 0.5);
  background: transparent;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.support-chat-send span {
  display: block;
  font-size: 31px;
  line-height: 1;
  transform: rotate(-35deg) translate(1px, 0);
}

.support-chat-form.has-value .support-chat-send {
  color: var(--orange);
}

.support-chat-form.has-value .support-chat-send:hover {
  transform: translateY(-1px);
}

.support-float {
  appearance: none;
  position: fixed;
  right: 22px;
  bottom: calc(var(--sticky-data-height) + 30px);
  z-index: 101;
  display: grid;
  justify-items: center;
  width: 82px;
  padding: 7px 7px 8px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  background: #fff;
  box-shadow:
    0 14px 34px rgba(255, 104, 22, 0.22),
    0 4px 12px rgba(41, 43, 51, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.support-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(255, 104, 22, 0.22);
  border-radius: inherit;
  animation: supportPulse 2.4s ease-out infinite;
}

.support-float:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(255, 104, 22, 0.3),
    0 8px 18px rgba(41, 43, 51, 0.14);
}

.support-photo {
  display: block;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 104, 22, 0.22);
  border-radius: 50%;
  background: #fff4ea;
  overflow: hidden;
}

.support-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-label {
  margin-top: 4px;
  font-family: "Be Vietnam Pro Display", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 18px;
  letter-spacing: 0;
  -webkit-text-stroke: 0.25px currentColor;
  text-shadow: 0 0 0.2px currentColor;
}

@keyframes bankLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes bankRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes testimonialUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes testimonialDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes successMarquee {
  0% {
    opacity: 0;
    transform: translateY(110%);
  }
  1%,
  2% {
    opacity: 1;
    transform: translateY(0);
  }
  3%,
  100% {
    opacity: 0;
    transform: translateY(-110%);
  }
}

@keyframes riskStripMarquee {
  to {
    transform: translateX(calc(-50% - var(--risk-half-gap)));
  }
}

@keyframes supportPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.96);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

@keyframes chatTyping {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes loanHandNudge {
  0%,
  100% {
    transform: translate(0, 0) rotate(330deg) scale(1);
  }
  20% {
    transform: translate(-6px, -3px) rotate(330deg) scale(1.02);
  }
  40% {
    transform: translate(6px, 3px) rotate(330deg) scale(0.98);
  }
  60% {
    transform: translate(-4px, -2px) rotate(330deg) scale(1.01);
  }
  80% {
    transform: translate(3px, 2px) rotate(330deg) scale(0.99);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding-inline: 12px;
    font-size: 14px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
  }

  .success-marquee {
    left: 20px;
    width: min(360px, calc(100% - 396px));
  }

  .success-marquee-item span {
    font-size: 13px;
  }

  .phone-frame {
    width: 350px;
    transform: none;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: translateY(-20px);
  }

  .hero-title-words {
    left: 350px;
    width: 410px;
  }

  .testimonial-grid {
    gap: 20px;
  }

  .download-section {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(240px, 300px);
    column-gap: 20px;
    padding-inline: 24px;
  }

  .store-panel {
    grid-column: auto;
    justify-content: flex-end;
    gap: 22px;
  }

  .support-chat-panel {
    top: calc(var(--header-height) + 24px);
    right: 96px;
    bottom: auto;
    height: min(558px, calc(100vh - var(--header-height) - 44px));
    transform-origin: right top;
  }

  .support-float {
    top: calc(var(--header-height) + 28px);
    right: 14px;
    bottom: auto;
    width: 72px;
    padding: 6px 6px 7px;
  }

  .support-photo {
    width: 56px;
    height: 56px;
  }

  .support-label {
    font-size: 13px;
    line-height: 16px;
  }

  .metric b {
    font-size: 30px;
    line-height: 40px;
  }

  .metric span {
    font-size: 15px;
    line-height: 22px;
  }
}

@media (max-width: 1080px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 120px;
    --sticky-data-height: 172px;
  }

  .risk-strip {
    min-height: 48px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .risk-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  }

  .risk-marquee-track {
    --risk-gap: 56px;
    --risk-half-gap: 28px;
    animation-duration: 28s;
  }

  .nav-bar {
    width: min(100% - 28px, 720px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 120px;
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    justify-content: flex-start;
    border-radius: 8px;
  }

  .nav-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }

  .nav-item.has-submenu::after {
    display: none;
  }

  .submenu-link {
    min-width: 0;
  }

  .submenu-toggle {
    width: 40px;
    height: 40px;
    margin-left: 0;
    justify-self: end;
  }

  .submenu-panel {
    position: static;
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    border-radius: 14px;
    border-color: rgba(255, 122, 27, 0.14);
    background: linear-gradient(180deg, rgba(255, 243, 213, 0.9), rgba(255, 255, 255, 0.98));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .submenu-panel::before {
    display: none;
  }

  .submenu-panel a {
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 21px;
  }

  .nav-item.has-submenu:hover .submenu-panel,
  .nav-item.has-submenu:focus-within .submenu-panel {
    display: none;
  }

  .nav-item.has-submenu.is-open .submenu-panel,
  .nav-item.has-submenu.is-open:focus-within .submenu-panel {
    display: grid;
  }

  .hero-section,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 520px);
    gap: 0;
    padding-bottom: 0;
  }

  .success-marquee {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 360px);
    height: 48px;
    margin: 24px 0 0;
  }

  .success-marquee-item {
    min-height: 48px;
    padding: 7px 16px 7px 8px;
  }

  .success-marquee-item img {
    width: 34px;
    height: 34px;
  }

  .success-marquee-item span {
    font-size: 12px;
    line-height: 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-title-lockup {
    height: 180px;
    margin: 0 0 20px;
    order: 2;
  }

  .hero-kicker {
    top: 24px;
    left: 0;
    font-size: 27px;
  }

  .hero-number {
    top: 0;
    left: 142px;
    font-size: 150px;
    line-height: 0.9;
  }

  .hero-title-words {
    top: 40px;
    left: 282px;
    width: 226px;
  }

  .hero-title-words strong {
    font-size: 36px;
  }

  .hero-title-words small {
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.12;
  }

  .hero-search {
    justify-content: flex-start;
    min-height: 54px;
    padding: 8px 18px;
    margin-bottom: 0;
    order: 3;
  }

  .hero-search p {
    font-size: 16px;
    line-height: 22px;
    white-space: normal;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
    order: 5;
  }

  .phone-frame {
    width: min(375px, 100%);
    height: auto;
    min-height: 540px;
    margin: 86px auto 18px;
    transform: none;
    order: 4;
  }

  .phone-frame .primary-action-link {
    position: absolute;
    top: -70px;
    left: 50%;
    width: min(100%, 327px);
    transform: translateX(-50%);
  }

  .phone-frame .primary-action {
    color: var(--orange);
    background: #fff;
    box-shadow: 0 14px 24px rgba(87, 26, 0, 0.14);
  }

  .banks-section {
    padding-top: 42px;
  }

  .bank-row {
    gap: 14px;
  }

  .bank-card {
    width: 156px;
    height: 82px;
  }

  .bank-wordmark {
    min-width: 110px;
    font-size: 17px;
  }

  .testimonial-grid {
    display: none;
  }

  .mobile-testimonials {
    display: block;
    width: min(100% - 28px, 420px);
    height: 680px;
    margin: 0 auto;
    overflow: hidden;
    mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .mobile-testimonials .testimonial-track {
    animation: testimonialUp 58s linear infinite;
  }

  .testimonial-card {
    min-height: 245px;
  }

  .promo-section {
    width: min(100% - 28px, 720px);
    margin-block: 42px;
  }

  .download-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 12px;
    min-height: var(--sticky-data-height);
    padding: 12px 14px;
  }

  .store-panel {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 16px;
  }

  .metric b {
    font-size: 22px;
    line-height: 28px;
  }

  .metric span {
    margin-top: 4px;
    font-size: 11px;
    line-height: 15px;
  }

  .qr {
    width: 56px;
    height: 56px;
  }

  .app-store {
    width: 136px;
    height: 40px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 24px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card::before {
    display: none;
  }

  .contact-card article:nth-of-type(1),
  .contact-card article:nth-of-type(2) {
    grid-row: auto;
  }

  .contact-card .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .support-chat-panel {
    top: auto;
    right: 14px;
    bottom: calc(var(--sticky-data-height) + 86px);
    left: 14px;
    width: auto;
    height: 500px;
    min-height: 0;
    transform-origin: right bottom;
  }

  .support-chat-header {
    min-height: 56px;
  }

  .support-chat-body {
    padding: 22px 18px 14px;
  }

  .support-chat-form {
    margin: 0 18px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .support-float {
    top: auto;
    right: 14px;
    bottom: calc(var(--sticky-data-height) + 18px);
    width: 68px;
    padding: 6px 6px 7px;
  }

  .support-photo {
    width: 52px;
    height: 52px;
  }

  .support-label {
    margin-top: 3px;
    font-size: 13px;
    line-height: 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --sticky-data-height: 164px;
  }

  .brand {
    min-width: 0;
    font-size: 15px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-title-lockup {
    height: 178px;
    margin: 0 0 18px;
  }

  .success-marquee {
    width: 100%;
    height: 44px;
    margin-top: 18px;
  }

  .success-marquee-item {
    min-height: 44px;
    padding-right: 12px;
  }

  .success-marquee-item img {
    width: 30px;
    height: 30px;
  }

  .success-marquee-item span {
    font-size: 11px;
    line-height: 16px;
  }

  .download-section {
    padding-inline: 10px;
  }

  .metric b {
    font-size: 18px;
    line-height: 24px;
  }

  .metric span {
    font-size: 10px;
    line-height: 14px;
  }

  .qr {
    width: 48px;
    height: 48px;
  }

  .app-store {
    width: 126px;
    height: 37px;
  }

  .hero-kicker {
    top: 12px;
    left: 0;
    font-size: 23px;
  }

  .hero-number {
    top: 42px;
    left: 4px;
    font-size: 108px;
    line-height: 0.86;
  }

  .hero-title-words {
    top: 42px;
    left: 106px;
    width: calc(100% - 106px);
  }

  .hero-title-words strong {
    font-size: 32px;
  }

  .hero-title-words small {
    margin-top: 8px;
    font-size: 19px;
    line-height: 1.12;
  }

  .hero-features {
    gap: 10px;
  }

  .hero-features article {
    min-height: 108px;
    padding: 14px 12px;
  }

  .phone-frame {
    padding: 30px 16px 20px;
    border-width: 8px;
    border-bottom: 0;
    border-radius: 44px 44px 0 0;
  }

  .loan-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .term-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-box {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .loan-hand-hint {
    top: 26px;
    width: 30px;
    height: 30px;
  }

  .summary-box div:first-child {
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
    padding-right: 0;
    padding-bottom: 12px;
  }

  .summary-box div:last-child {
    padding-left: 0;
  }

  .section-heading {
    width: min(100% - 28px, 420px);
    margin-bottom: 28px;
  }

  .testimonials-section {
    padding-block: 48px;
  }

  .contact-card article {
    padding: 18px;
  }

  .contact-card article:first-child b {
    font-size: 21px;
  }

  .support-chat-panel {
    height: 500px;
    right: 10px;
    bottom: calc(var(--sticky-data-height) + 78px);
    left: 10px;
  }

  .support-chat-header {
    padding-inline: 10px;
  }

  .support-chat-header b {
    font-size: 13px;
  }

  .support-chat-body {
    padding: 18px 12px 12px;
  }

  .chat-row {
    gap: 8px;
  }

  .chat-row img {
    width: 36px;
    height: 36px;
  }

  .chat-row p {
    max-width: calc(100vw - 112px);
    padding: 10px 12px;
    font-size: 12px;
    line-height: 19px;
  }

  .chat-row.user p {
    max-width: calc(100vw - 126px);
  }

  .support-chat-form {
    min-height: 56px;
    margin: 0 12px 12px;
  }

  .support-float {
    right: -4px;
    bottom: calc(var(--sticky-data-height) + 14px);
    width: 58px;
    padding: 5px 5px 6px;
    border-width: 2px;
  }

  .support-photo {
    width: 44px;
    height: 44px;
  }

  .support-label {
    font-size: 12px;
    line-height: 15px;
  }
}
