@property --primary-glow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  --brand: #ff7307;
  --brand-deep: #d84f00;
  --brand-light: #ffae13;
  --ink: #292b33;
  --orange: #ff7a1b;
  --orange-dark: #c84b00;
  --muted: rgba(41, 43, 51, 0.7);
  --cream: #fff8f1;
  --cream-strong: #ffead8;
  --footer: #1c1816;
  --white: #ffffff;
  --radius-lg: 24px;
  --content: 1200px;
  --shadow-orange: 0 18px 45px rgba(151, 71, 0, 0.2);
  --sticky-data-height: 0px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Roboto Flex", "SF Pro Display", "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

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

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

ul,
ol {
  padding: 0;
}

.container {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin-inline: auto;
}

:focus-visible {
  outline: 3px solid #005fec;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: #ff7307;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-bottom-color: rgba(41, 43, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(80, 42, 12, 0.1);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(255, 115, 7, 0.3);
  background: rgba(255, 115, 7, 0.08);
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(255, 115, 7, 0.1);
}

.site-header.is-scrolled .site-nav a.active {
  color: var(--white);
  background: var(--brand);
}

.site-header.is-scrolled .menu-toggle {
  color: var(--ink);
  background: rgba(41, 43, 51, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 47px;
  font-size: 16px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.13);
}

.site-nav a.active {
  color: #ff7a1b;
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  height: 767px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 71.78%, #fff 100%),
    linear-gradient(90deg, #ff7307 0%, #ff7307 100%);
}

.hero::before {
  position: absolute;
  inset: 76px 0 0;
  height: auto;
  content: "";
  opacity: 0.36;
  background:
    radial-gradient(circle at 74% 58%, rgba(255, 228, 166, 0.72), transparent 35%),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.2), transparent 28%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  height: 100%;
}

.notice {
  position: absolute;
  z-index: 8;
  top: 96px;
  left: 0;
  display: flex;
  width: 100%;
  height: 44px;
  align-items: center;
  gap: 8px;
  padding-left: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(59, 20, 0, 0.1);
}

.notice-viewport {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.notice-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: notice-marquee 32s linear infinite;
  will-change: transform;
}

.notice-copy {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding-right: 34px;
}

.notice-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.notice p {
  min-width: max-content;
  font-size: 12px;
  font-weight: 650;
  line-height: 18px;
  opacity: 0.72;
}

.notice:hover .notice-track,
.notice:focus-within .notice-track {
  animation-play-state: paused;
}

@keyframes notice-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-copy {
  position: absolute;
  z-index: 10;
  top: 190px;
  left: 0;
  width: 552px;
}

.hero-copy h1 {
  color: var(--white);
  font-size: 48px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.035em;
  text-shadow: 2px 2px 0 #9a2900;
}

.hero-title-kicker {
  display: block;
  font-size: 36px;
  font-weight: 850;
  line-height: 60px;
}

.hero-title-main {
  display: block;
  font-size: 48px;
  font-weight: 1000;
  line-height: 1.5;
  -webkit-text-stroke: 0.35px currentColor;
}

.hero-copy h1 em {
  color: #ffea07;
  font-style: inherit;
}

.loan-offer {
  position: relative;
  width: 447px;
  margin-top: 22px;
  padding-top: 28px;
}

.speed-pill {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 19px;
  display: flex;
  width: 335px;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 10px 26px 10px 50px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(90deg, #005fec, #109bff);
  box-shadow: 0 6px 6px rgba(132, 48, 0, 0.25);
  white-space: nowrap;
}

.speed-clock {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 73px;
  height: 77px;
  overflow: hidden;
}

.speed-clock img {
  position: absolute;
  top: -19.98%;
  left: -43.84%;
  width: 167.12%;
  max-width: none;
  height: 139.97%;
}

.speed-pill span {
  font-size: 24px;
  font-weight: 1000;
  line-height: 32px;
}

.amount-panel {
  display: flex;
  height: 124px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 10px;
  border: 6px solid #ffd3b2;
  border-radius: 24px 24px 56px 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  color: var(--white);
  text-align: center;
  text-shadow: 2px 2px 0 #9a2900;
}

.amount-panel span {
  font-size: 28px;
  font-weight: 850;
}

.amount-panel strong {
  font-size: 40px;
  font-weight: 950;
  line-height: 40px;
}

.primary-cta {
  position: relative;
  z-index: 0;
  display: flex;
  width: 447px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 17px 32px;
  border-radius: 999px;
  color: #c94a00;
  background: var(--white);
  box-shadow:
    0 15px 32px rgba(139, 48, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 22px rgba(255, 238, 190, 0.48);
  font-size: 20px;
  font-weight: 900;
  scale: 1;
  transform: translateY(0);
  transform-origin: center;
  animation: primary-cta-breathe 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transition: transform 180ms ease, box-shadow 220ms ease;
  will-change: scale, transform;
  -webkit-tap-highlight-color: transparent;
}

.primary-cta::before {
  --primary-glow-angle: 0deg;
  position: absolute;
  z-index: -1;
  inset: -12px;
  padding: 9px;
  border-radius: inherit;
  content: "";
  opacity: 0.82;
  background: conic-gradient(
    from var(--primary-glow-angle),
    rgba(255, 251, 229, 0.95) 0deg,
    rgba(255, 184, 69, 0.82) 64deg,
    rgba(255, 103, 0, 0.45) 132deg,
    rgba(255, 240, 190, 0.92) 214deg,
    rgba(255, 148, 26, 0.68) 292deg,
    rgba(255, 251, 229, 0.95) 360deg
  );
  filter: blur(10px);
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: primary-orbit-glow 3.6s linear infinite;
  transition: filter 220ms ease, opacity 220ms ease;
}

.primary-cta::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  content: "";
  opacity: 0.72;
  background: linear-gradient(
    108deg,
    transparent 43%,
    rgba(255, 219, 143, 0.12) 47%,
    rgba(255, 255, 255, 0.78) 50%,
    rgba(255, 235, 188, 0.18) 53%,
    transparent 57%
  );
  background-position: 145% 0;
  background-size: 260% 100%;
  pointer-events: none;
  animation: primary-surface-shimmer 2.2s ease-in-out infinite;
}

.primary-cta span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(139, 48, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.88),
    0 0 30px rgba(255, 239, 191, 0.68);
}

.primary-cta:hover::before {
  filter: blur(12px);
  opacity: 1;
}

.primary-cta:active {
  transform: translateY(0);
  box-shadow:
    0 10px 22px rgba(139, 48, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.78),
    0 0 18px rgba(255, 239, 191, 0.48);
  transition-duration: 70ms;
}

@keyframes primary-orbit-glow {
  to {
    --primary-glow-angle: 1turn;
  }
}

@keyframes primary-surface-shimmer {
  0%, 62% {
    background-position: 145% 0;
  }

  84%, 100% {
    background-position: -145% 0;
  }
}

@keyframes primary-cta-breathe {
  0%, 100% {
    scale: 1;
    animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }

  44% {
    scale: 0.92;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
}

.hero-visual {
  position: absolute;
  z-index: 4;
  top: 177px;
  right: 0;
  width: 732px;
  height: 589px;
}

.hero-halo {
  position: absolute;
  top: 44px;
  left: 191px;
  width: 461px;
  height: 461px;
  max-width: none;
}

.phone-shell {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 235px;
  width: 321px;
  height: 589px;
  overflow: hidden;
  border: 10px solid #2e2520;
  border-bottom: 0;
  border-radius: 32px 32px 0 0;
  background: #fff;
  box-shadow: 0 34px 70px rgba(99, 38, 0, 0.25);
}

.phone-shell::before {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 99px;
  background: #2e2520;
  content: "";
  transform: translateX(-50%);
}

.phone-shell img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
}

.hero-woman {
  position: absolute;
  z-index: 5;
  top: 72px;
  right: 0;
  width: 325px;
  height: 576px;
  max-width: none;
  object-fit: cover;
  object-position: 52% center;
}

.steps-list {
  position: absolute;
  z-index: 6;
  top: 171px;
  left: 0;
  width: 256px;
}

.hero-step {
  position: relative;
  display: flex;
  width: 256px;
  height: 60px;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 26px 8px 18px;
  background: url("assets/step-ribbon.svg") center / 100% 100% no-repeat;
  color: var(--white);
  filter: drop-shadow(0 8px 12px rgba(133, 49, 0, 0.24));
}

.hero-step-tall {
  height: 80px;
  margin-bottom: 0;
  padding-right: 24px;
  background-image: url("assets/step-ribbon-tall.svg");
}

.hero-step strong {
  flex: 0 0 auto;
  min-width: 42px;
  color: rgba(255, 255, 255, 0.96);
  font-family: Futura, "Arial Black", sans-serif;
  font-size: 32px;
  line-height: 1;
  text-shadow: 2px 2px 0 #9a2900;
}

.hero-step span {
  font-size: 14px;
  font-weight: 850;
  line-height: 20px;
  text-shadow: 1px 1px 0 #9a2900;
}

.payment-toast {
  position: absolute;
  z-index: 8;
  top: 8px;
  left: 192px;
  width: 407px;
  height: 77px;
  padding: 11px 12px 9px 18px;
  border: 1px solid #fff;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px -12px #974700;
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.toast-meta {
  display: flex;
  align-items: center;
  color: rgba(41, 43, 51, 0.7);
  font-size: 12px;
  font-weight: 650;
  line-height: 18px;
}

.toast-meta img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.toast-meta time {
  margin-left: auto;
}

.payment-toast > strong {
  display: block;
  margin-top: 1px;
  font-size: 14px;
  line-height: 24px;
}

.stats {
  position: relative;
  z-index: 12;
  height: 0;
}

.stats-card {
  position: absolute;
  top: -97px;
  left: 50%;
  display: grid;
  height: 180px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 2px solid #ffad78;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(255, 115, 7, 0.08);
  transform: translateX(-50%);
}

.stat-item {
  display: flex;
  height: 83px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(41, 43, 51, 0.1);
}

.stat-item span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.stat-item strong {
  color: var(--brand);
  font-size: 40px;
  font-weight: 900;
  line-height: 48px;
}

.comparison {
  position: relative;
  z-index: 0;
  overflow: visible;
  padding: 158px 0 56px;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf6 12%, #fff2e5 65%, #ffe4c8 100%);
  isolation: isolate;
}

.comparison::after {
  position: absolute;
  right: -8%;
  bottom: -112px;
  left: -8%;
  z-index: 0;
  height: 112px;
  border-radius: 0 0 50% 50%;
  background: #ffe4c8;
  content: "";
  pointer-events: none;
}

.comparison-inner {
  position: relative;
  z-index: 2;
}

.comparison h2 {
  color: #55575d;
  font-size: 32px;
  font-weight: 500;
  line-height: 44px;
  text-align: center;
}

.comparison h2 strong {
  color: var(--ink);
  font-weight: 900;
}

.compare-grid {
  position: relative;
  display: grid;
  height: 696px;
  grid-template-columns: 629px 571px;
  margin-top: 80px;
}

.product-card {
  position: relative;
  overflow: visible;
}

.product-card h3 {
  font-size: 26px;
  font-weight: 900;
  line-height: 36px;
  text-align: center;
}

.featured-product {
  z-index: 3;
  height: 696px;
  padding: 129px 20px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff6c20 0%, #ffb20d 100%);
  box-shadow: 0 20px 45px rgba(193, 75, 0, 0.16);
}

.product-brand {
  position: absolute;
  z-index: 5;
  top: -38px;
  left: 50%;
  display: flex;
  width: 422px;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  transform: translateX(-50%);
}

.product-logo {
  display: grid;
  width: 86px;
  height: 86px;
  margin-bottom: 20px;
  place-items: center;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(123, 48, 0, 0.2);
}

.product-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-brand h3 {
  font-size: 26px;
  text-shadow: 1px 2px 0 rgba(136, 50, 0, 0.28);
}

.benefit-list {
  display: flex;
  height: 547px;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 34px 33px 26px;
  border-radius: 24px;
  background: var(--white);
  list-style: none;
}

.benefit-list li {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 19px;
  border-bottom: 1px solid rgba(41, 43, 51, 0.12);
}

.benefit-list li:last-child {
  min-height: 56px;
  border-bottom: 0;
}

.benefit-list li > strong {
  flex: 0 0 77px;
  color: #ffad78;
  font-size: 56px;
  font-weight: 900;
  line-height: 56px;
}

.benefit-list span {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.benefit-list b {
  color: var(--brand);
  font-weight: 900;
}

.other-product {
  z-index: 1;
  height: 637px;
  margin-top: 31px;
  padding: 102px 20px 20px 0;
  border-radius: 0 24px 24px 0;
  background: #ffe4cb;
}

.other-product::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -87px;
  width: 106px;
  border-radius: 0 24px 24px 0;
  background: rgba(255, 142, 35, 0.5);
  content: "";
  filter: blur(16px);
}

.other-product h3 {
  position: absolute;
  top: 41px;
  right: 0;
  left: 0;
  font-size: 26px;
}

.other-list {
  display: flex;
  height: 515px;
  flex-direction: column;
  padding: 42px 62px 20px;
  border-radius: 0 24px 24px 0;
  background: var(--white);
  list-style: none;
}

.other-list li {
  display: flex;
  flex: 1;
  min-height: 0;
  align-items: center;
  border-bottom: 1px solid rgba(41, 43, 51, 0.1);
  color: rgba(41, 43, 51, 0.78);
  font-size: 16px;
  line-height: 24px;
}

.other-list li:last-child {
  border-bottom: 0;
}

.other-list strong {
  margin-left: 5px;
  font-size: 20px;
}

.versus {
  position: absolute;
  z-index: 8;
  top: 337px;
  left: 619px;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #5d2300;
  box-shadow: 0 10px 24px rgba(102, 38, 0, 0.22);
  font-family: Futura, "Arial Black", sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1px currentColor;
  transform: translateX(-50%);
}

.banks {
  position: relative;
  z-index: 4;
  padding: 4px 0 72px;
  background: transparent;
}

.banks-panel {
  height: 369px;
  overflow: hidden;
  padding: 32px 0;
  border: 1px solid rgba(255, 151, 73, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(90, 41, 0, 0.08);
}

.banks-panel h2 {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 900;
  line-height: 44px;
  text-align: center;
}

.banks-panel h2 span {
  color: var(--brand);
}

.marquee-row {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.marquee-row + .marquee-row {
  margin-top: 20px;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-track-left {
  animation: marquee-left 104s linear infinite;
}

.marquee-track-right {
  animation: marquee-right 104s linear infinite;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
  padding-right: 24px;
}

.marquee-group figure {
  display: grid;
  flex: 0 0 180px;
  width: 180px;
  height: 96px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #f0ece9;
  border-radius: 8px;
  background: #fff;
}

.marquee-group img {
  width: auto;
  max-width: 150px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.banks:hover .marquee-track,
.banks:focus-within .marquee-track {
  animation-play-state: paused;
}

.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-close:hover {
  cursor: pointer;
}

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

.floating-support {
  position: fixed;
  top: 62vh;
  right: 14px;
  z-index: 101;
  display: block;
  width: 130px;
  height: auto;
  aspect-ratio: 300 / 304;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  cursor: grab;
  user-select: none;
  touch-action: none;
  -webkit-user-drag: none;
  will-change: left, top, transform;
  transition: transform 0.18s ease;
}

.floating-support img {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: contain;
}

.floating-support.is-dragging {
  cursor: grabbing;
  transform: scale(1.025);
}

.floating-support.is-snapping {
  transition: left .42s cubic-bezier(0.22, 1, 0.36, 1), top .42s cubic-bezier(0.22, 1, 0.36, 1), transform 0.18s ease;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

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

.advantages {
  padding: 0 0 66px;
  background: #fff;
}

.advantages h2 {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 900;
  line-height: 44px;
  text-align: center;
}

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

.advantage-card {
  position: relative;
  height: 200px;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  background: #f7f4f2;
}

.advantage-card > div {
  position: relative;
  z-index: 2;
  width: 232px;
}

.advantage-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
  line-height: 30px;
}

.advantage-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.advantage-card > img {
  position: absolute;
  z-index: 1;
  right: -39px;
  bottom: -27px;
  width: 186px;
  height: 190px;
  object-fit: cover;
  object-position: center;
  transform: rotate(5deg);
}

.advantage-card:nth-child(2) > img {
  right: -43px;
  bottom: -40px;
  width: 191px;
  height: 195px;
}

.advantage-card:nth-child(3) > img {
  right: -35px;
  bottom: -30px;
  width: 173px;
  height: 176px;
}

.site-footer {
  min-height: 518px;
  color: var(--white);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  min-height: 450px;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 0 82px;
}

.footer-grid h2 {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav a {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20px;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: #ffb16f;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand .brand-mark {
  width: 48px;
  height: 48px;
}

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-style: normal;
}

.footer-contact address p {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  font-weight: 650;
  line-height: 24px;
}

.footer-contact address p > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.footer-contact address img {
  width: 20px;
  height: 20px;
}

.footer-contact a:hover {
  color: #ffb16f;
}

.download {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.qr-wrap {
  position: relative;
  width: 119px;
  height: 119px;
}

.qr-code {
  width: 119px;
  height: 119px;
  object-fit: cover;
}

.qr-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid #292b33;
  border-radius: 8px;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.app-store {
  width: 147px;
  height: 49px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.footer-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 373px;
  list-style: none;
}

.footer-benefits li {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  line-height: 26px;
}

.footer-benefits li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("assets/icons/check.svg") center / contain no-repeat;
  content: "";
}

.footer-benefits li:not(:last-child) {
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: center;
  padding: 24px 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 650;
  line-height: 20px;
}

@media (max-width: 1226px) {
  .container {
    width: calc(100% - 64px);
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 14px;
    font-size: 14px;
  }

  .hero-copy {
    width: 46%;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-title-kicker {
    font-size: 31px;
  }

  .hero-title-main {
    font-size: 39px;
  }

  .hero-visual {
    right: -95px;
    transform: scale(0.82);
    transform-origin: top right;
  }

  .loan-offer,
  .primary-cta {
    width: 100%;
    max-width: 430px;
  }

  .amount-panel strong {
    font-size: 34px;
  }

  .compare-grid {
    grid-template-columns: 54% 46%;
  }

  .benefit-list {
    padding-inline: 24px;
  }

  .benefit-list li > strong {
    flex-basis: 60px;
    font-size: 45px;
  }

  .benefit-list span {
    font-size: 18px;
  }

  .other-product {
    padding-left: 0;
  }

  .other-list {
    padding-inline: 36px;
  }

  .versus {
    left: 54%;
  }

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

  .advantage-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 0.8fr 1.3fr 1fr;
  }

  .footer-benefits {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .hero {
    height: 1100px;
  }

  .hero::before {
    inset: 560px 0 0;
    background:
      radial-gradient(circle at 50% 58%, rgba(255, 228, 166, 0.72), transparent 35%),
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.2), transparent 28%);
  }

  .hero-copy {
    top: 180px;
    width: 552px;
    max-width: 100%;
  }

  .hero-visual {
    top: 603px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) scale(0.68);
    transform-origin: top center;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .site-header {
    height: 68px;
  }

  .brand {
    font-size: 16px;
  }

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 59px;
    right: 18px;
    left: 18px;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow: hidden;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(120, 42, 0, 0.94);
    box-shadow: 0 20px 50px rgba(79, 28, 0, 0.3);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(14px);
  }

  .site-nav.open {
    max-height: 360px;
    padding: 10px;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 42px;
    justify-content: flex-start;
    padding: 9px 14px;
    font-size: 14px;
  }

  .site-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
  }

  .site-header.is-scrolled .site-nav {
    border-color: rgba(41, 43, 51, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(79, 28, 0, 0.16);
  }

  .site-header.is-scrolled .site-nav a {
    color: var(--ink);
  }

  .site-header.is-scrolled .site-nav a.active {
    color: var(--white);
    background: var(--brand);
  }

  .hero {
    height: 1022px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 88%, #fff 100%),
      var(--brand);
  }

  .hero::before {
    inset: 600px 0 0;
  }

  .notice {
    top: 84px;
    height: 44px;
  }

  .notice-icon {
    margin-top: 0;
  }

  .notice p {
    min-width: max-content;
    font-size: 10px;
    line-height: 16px;
  }

  .notice-copy {
    padding-right: 28px;
  }

  .hero-copy {
    top: 184px;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1.28;
    letter-spacing: -0.04em;
  }

  .hero-title-kicker {
    font-size: clamp(24px, 6.7vw, 29px);
    line-height: 44px;
  }

  .hero-title-main {
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1.28;
  }

  .loan-offer {
    width: 100%;
    max-width: none;
    margin-top: 26px;
    padding-top: 24px;
  }

  .speed-pill {
    left: 22px;
    width: calc(100% - 44px);
    height: 48px;
    padding: 8px 12px 8px 48px;
  }

  .speed-clock {
    top: -20px;
    left: -20px;
    width: 66px;
    height: 70px;
  }

  .speed-pill span {
    font-size: clamp(18px, 5.2vw, 22px);
  }

  .amount-panel {
    height: 112px;
    border-width: 5px;
    border-radius: 20px 20px 44px 20px;
  }

  .amount-panel span {
    font-size: 22px;
  }

  .amount-panel strong {
    font-size: clamp(29px, 8.1vw, 36px);
  }

  .primary-cta {
    width: 100%;
    max-width: none;
    height: 58px;
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-visual {
    top: 560px;
    right: auto;
    left: 50%;
    width: 732px;
    height: 589px;
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
  }

  .stats {
    height: auto;
    padding: 0 0 20px;
  }

  .stats-card {
    position: relative;
    top: -38px;
    left: auto;
    height: auto;
    grid-template-columns: 1fr;
    padding: 8px 18px;
    transform: none;
  }

  .stat-item {
    height: 90px;
  }

  .stat-item + .stat-item {
    border-top: 1px solid rgba(41, 43, 51, 0.1);
    border-left: 0;
  }

  .stat-item span {
    margin-bottom: 2px;
    font-size: 14px;
  }

  .stat-item strong {
    font-size: 32px;
    line-height: 42px;
  }

  .comparison {
    padding: 52px 0 48px;
  }

  .comparison h2 {
    font-size: 25px;
    line-height: 36px;
  }

  .compare-grid {
    display: flex;
    height: auto;
    flex-direction: column;
    margin-top: 74px;
  }

  .featured-product {
    width: 100%;
    height: auto;
    padding: 96px 12px 12px;
  }

  .product-brand {
    top: -46px;
    width: 100%;
  }

  .product-logo {
    width: 74px;
    height: 74px;
    margin-bottom: 10px;
  }

  .product-brand h3 {
    font-size: 22px;
  }

  .benefit-list {
    height: auto;
    gap: 0;
    padding: 18px 18px;
  }

  .benefit-list li {
    min-height: 70px;
    gap: 12px;
  }

  .benefit-list li:last-child {
    min-height: 70px;
  }

  .benefit-list li > strong {
    flex-basis: 47px;
    font-size: 36px;
    line-height: 40px;
  }

  .benefit-list span {
    font-size: 15px;
    line-height: 22px;
  }

  .versus {
    position: relative;
    top: auto;
    left: 50%;
    z-index: 8;
    width: 70px;
    height: 70px;
    margin: -12px 0;
    border-width: 6px;
    font-size: 22px;
  }

  .other-product {
    width: 100%;
    height: auto;
    margin-top: 0;
    padding: 82px 12px 12px;
    border-radius: 24px;
  }

  .other-product::before {
    display: none;
  }

  .other-product h3 {
    top: 30px;
    font-size: 22px;
  }

  .other-list {
    height: auto;
    padding: 12px 18px;
    border-radius: 24px;
  }

  .other-list li {
    min-height: 70px;
    font-size: 14px;
  }

  .other-list strong {
    font-size: 16px;
  }

  .banks {
    padding: 0 0 64px;
  }

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

  .floating-support {
    right: 8px;
    width: 96px;
  }

  .banks-panel {
    width: 100%;
    height: 326px;
    border-radius: 0;
  }

  .banks-panel h2 {
    margin: 0 24px 28px;
    font-size: 24px;
    line-height: 34px;
  }

  .marquee-row + .marquee-row {
    margin-top: 16px;
  }

  .marquee-group {
    gap: 12px;
    padding-right: 12px;
  }

  .marquee-group figure {
    flex-basis: 146px;
    width: 146px;
    height: 82px;
  }

  .marquee-group img {
    max-width: 118px;
    max-height: 48px;
  }

  .advantages {
    padding-bottom: 56px;
  }

  .advantages h2 {
    margin-bottom: 28px;
    font-size: 26px;
  }

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

  .advantage-card,
  .advantage-card:last-child {
    grid-column: auto;
    height: 190px;
  }

  .advantage-card > div {
    width: min(67%, 232px);
  }

  .advantage-card h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .advantage-card p {
    font-size: 14px;
    line-height: 21px;
  }

  .advantage-card > img {
    right: -31px;
    width: 170px;
    height: 180px;
  }

  .footer-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 56px 0;
  }

  .footer-nav a {
    margin-bottom: 14px;
  }

  .footer-contact address p {
    overflow-wrap: anywhere;
  }

  .footer-benefits {
    width: 100%;
  }

  .copyright {
    height: auto;
    min-height: 68px;
    font-size: 10px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 975px;
  }

  .hero-visual {
    transform: translateX(-50%) scale(0.64);
  }
}

@media (max-width: 480px) {
  .hero {
    height: 928px;
  }

  .hero-visual {
    left: 50%;
    transform: translateX(-50%) scale(0.56);
  }

  .advantages .container {
    width: calc(100% - 24px);
  }

  .support-chat-panel {
    top: auto;
    right: 14px;
    bottom: calc(var(--sticky-data-height) + 78px);
    left: 14px;
    width: auto;
    height: 500px;
    min-height: 0;
    transform-origin: right bottom;
  }

  .support-chat-header {
    min-height: 56px;
    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;
  }
}

@media (max-width: 400px) {
  .hero {
    height: 887px;
  }

  .hero-visual {
    transform: translateX(-50%) scale(0.49);
  }

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

@media (max-width: 340px) {
  .hero {
    height: 851px;
  }

  .hero-visual {
    transform: translateX(-50%) scale(0.43);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .marquee-row {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .marquee-track {
    animation: none;
  }

  .notice-track {
    animation: none;
  }

  .primary-cta,
  .primary-cta::before,
  .primary-cta::after {
    animation: none;
    transition: none;
  }

  .primary-cta:hover,
  .primary-cta:active {
    transform: none;
  }

  .primary-cta::before {
    opacity: 0.78;
    background: linear-gradient(
      110deg,
      rgba(255, 248, 222, 0.92),
      rgba(255, 177, 56, 0.72),
      rgba(255, 237, 183, 0.88)
    );
  }

  .primary-cta::after {
    display: none;
  }

  .floating-support,
  .floating-support.is-snapping {
    transition: none;
  }
}

.privacy-content {
  white-space: pre-wrap;
  margin: 100px 100px;
}
