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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #444653;
  background: #f8f9ff;
  line-height: 1.5;
}

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

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

.page {
  min-width: 1280px;
}

.container {
  width: 1120px;
  max-width: calc(100% - 160px);
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 89px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 89px;
  padding: 0 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.header__logo {
  font-size: 24px;
  font-weight: 700;
  color: #002576;
  line-height: 32px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 16px;
  line-height: 24px;
  color: #444653;
  transition: color 0.2s;
}

.header__nav-link:hover {
  color: #002576;
}

.header__nav-link--active {
  font-weight: 600;
  color: #002576;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #ffd31a;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  color: #705b00;
  line-height: 24px;
  transition: opacity 0.2s;
}

.header__btn:hover {
  opacity: 0.9;
}

/* Hero */
.hero {
  position: relative;
  height: 879px;
  /* max-width: 1280px; */
  margin: 0 auto;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.83) 44.712%, rgba(255, 255, 255, 0) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 109px 80px 80px 133px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero__content {
  max-width: 672px;
}

.hero__title {
  font-size: 64px;
  font-weight: 700;
  color: #002576;
  line-height: 80px;
  letter-spacing: -1.28px;
  margin-bottom: 24px;
}

.hero__desc {
  font-size: 18px;
  line-height: 28px;
  color: #444653;
  max-width: 512px;
  margin-bottom: 16px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  padding-top: 16px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16.5px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  transition: opacity 0.2s;
}

.hero__btn:hover {
  opacity: 0.9;
}

.hero__btn--primary {
  background: #ffd31a;
  color: #705b00;
  box-shadow: 0 20px 25px -5px rgba(113, 92, 0, 0.1), 0 8px 10px -6px rgba(113, 92, 0, 0.1);
}

.hero__btn--outline {
  background: #fff;
  color: #002576;
  border: 1px solid #747685;
  padding: 17px 33px;
}

.hero__social {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
}

.hero__avatars {
  display: flex;
  align-items: center;
}

.hero__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -12px;
  object-fit: cover;
}

.hero__avatar:last-child {
  margin-right: 0;
}

.hero__social-count {
  font-size: 16px;
  font-weight: 700;
  color: #002576;
  line-height: 24px;
}

.hero__social-label {
  font-size: 14px;
  color: #444653;
  line-height: 20px;
}

/* Partner */
.partner {
  background: #fff;
  padding: 76px 0 80px;
}

.partner__title {
  font-size: 40px;
  font-weight: 700;
  color: #012e8f;
  text-align: center;
  line-height: 56px;
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}

.partner__desc {
  font-size: 18px;
  line-height: 28px;
  color: #3e4949;
  text-align: center;
  max-width: 926px;
  margin: 0 auto 88px;
}

.partner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #eff4ff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.partner__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #012e8f;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 32px;
  margin-bottom: 24px;
}

.partner__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.partner__card-title {
  font-size: 24px;
  font-weight: 600;
  color: #012e8f;
  text-align: center;
  line-height: 32px;
}

/* Loan Info */
.loan-info {
  padding: 80px 0;
  background: #f8f9ff;
}

.loan-info__title {
  font-size: 40px;
  font-weight: 700;
  color: #002576;
  text-align: center;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.loan-info__desc {
  font-size: 20px;
  line-height: 34px;
  color: #444653;
  text-align: center;
  max-width: 906px;
  margin: 0 auto 48px;
}

.loan-info__card {
  background: #fff;
  border: 1px solid rgba(196, 197, 213, 0.3);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 37, 118, 0.05);
}

.loan-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}

.loan-info__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.loan-info__label {
  font-size: 16px;
  font-weight: 500;
  color: #444653;
  line-height: 24px;
}

.loan-info__value {
  font-size: 16px;
  font-weight: 700;
  color: #002576;
  line-height: 24px;
}

.loan-info__bar {
  height: 8px;
  background: #dce9ff;
  border-radius: 8px;
}

/* Why Choose */
.why {
  background: #fff;
  padding: 80px 0;
}

.why__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.why__visual {
  flex: 0 0 528px;
  position: relative;
}

.why__image-wrap {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.why__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.why__quote-badge {
  position: absolute;
  top: 39px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.why__quote-badge img {
  width: 24px;
  height: 30px;
}

.why__testimonial {
  position: absolute;
  bottom: -32px;
  right: -32px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 320px;
  padding: 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.why__testimonial-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #dcfce7;
  border-radius: 50%;
  flex-shrink: 0;
}

.why__testimonial-icon img {
  width: 16px;
  height: 20px;
}

.why__testimonial-text {
  font-size: 14px;
  font-weight: 600;
  color: #161d1f;
  line-height: 20px;
}

.why__content {
  flex: 1;
  padding-top: 32px;
}

.why__title {
  font-size: 40px;
  font-weight: 700;
  color: #002576;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why__item-title {
  font-size: 16px;
  font-weight: 600;
  color: #002576;
  line-height: 22px;
  margin-bottom: 4px;
}

.why__item-desc {
  font-size: 16px;
  color: #3e4949;
  line-height: 22px;
}

/* Steps */
.steps {
  background: #fff;
  padding: 80px 0 96px;
}

.steps__title {
  font-size: 40px;
  font-weight: 700;
  color: #002576;
  text-align: center;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin-bottom: 64px;
}

.steps__track {
  position: relative;
  margin-bottom: 48px;
}

.steps__line {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 4px;
  background: #fbcb06;
}

.steps__list {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  text-align: center;
}

.steps__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #002576;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.steps__icon-wrap--last {
  background: #fe7e4f;
}

.steps__icon {
  width: 22px;
  height: auto;
}

.steps__label {
  font-size: 16px;
  font-weight: 600;
  color: #002576;
  line-height: 41px;
  margin-bottom: 8px;
}

.steps__desc {
  font-size: 14px;
  color: #3e4949;
  line-height: 22.75px;
}

.steps__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 544px;
  max-width: 100%;
  margin: 0 auto;
  padding: 16px;
  background: #fbcb06;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #380c00;
  line-height: 32px;
  transition: opacity 0.2s;
}

.steps__btn:hover {
  opacity: 0.9;
}

/* Security */
.security {
  position: relative;
  background: #002576;
  padding: 80px 0;
  overflow: hidden;
}

.security__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.security__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.security__title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 40px;
  margin-bottom: 48px;
}

.security__card {
  max-width: 1122px;
  margin: 0 auto;
  padding: 48px 70px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.security__card p {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.security__card p:last-child {
  margin-bottom: 0;
}

/* Download */
.download {
  background: #fff;
  padding: 80px 0;
}

.download__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.download__content {
  flex: 0 0 528px;
}

.download__title {
  font-size: 40px;
  font-weight: 700;
  color: #002576;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin-bottom: 32px;
}

.download__desc {
  font-size: 16px;
  line-height: 39px;
  color: #002576;
  margin-bottom: 40px;
}

.download__store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px 12px 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(113, 92, 0, 0.1), 0 8px 10px -6px rgba(113, 92, 0, 0.1);
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 28px;
  transition: opacity 0.2s;
}

.download__store-btn:hover {
  opacity: 0.9;
}

.download__store-icon {
  width: 53px;
  height: 53px;
}

.download__visual {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.download__phone-frame {
  position: absolute;
  width: 253px;
  height: auto;
  z-index: 2;
}

.download__phone {
  position: relative;
  width: 233px;
  height: auto;
  border-radius: 12px;
  z-index: 1;
  margin-top: 24px;
}

/* Footer */
.footer {
  background: #213145;
  padding: 42px 80px 33px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__brand {
  max-width: 640px;
}

.footer__logo {
  font-size: 24px;
  font-weight: 700;
  color: #dce1ff;
  line-height: 32px;
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  line-height: 24px;
  margin-bottom: 24px;
}

.footer__info {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  line-height: 24px;
}

.footer__info p + p {
  margin-top: 8px;
}

.footer__links-title {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  line-height: 34px;
  margin-bottom: 4px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  line-height: 34px;
}

.footer__links a {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 33px;
}

.footer__copyright {
  font-size: 14px;
  color: rgba(211, 228, 254, 0.6);
  line-height: 20px;
}
