*,
*::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;
  background: #fff;
  padding: 62px 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.hero__bg-decoration {
  position: absolute;
  top: 9.18%;
  right: 1.56%;
  bottom: 68.72%;
  left: 48.28%;
  background: #d5e3ff;
  border-radius: 9999px;
  filter: blur(32px);
  opacity: 0.2;
  pointer-events: none;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.hero__content {
  flex: 1;
  max-width: 552px;
}

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

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

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

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 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__visual {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  height: 540px;
}

.hero__phone {
  position: relative;
  width: 256px;
  height: 540px;
  margin-left: auto;
  background: #141d23;
  border: 8px solid #141d23;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.1), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero__phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 101px;
  height: 16px;
  background: #141d23;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__card {
  position: absolute;
  right: 0;
  top: 223px;
  width: 126px;
  padding: 17px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.hero__card-icon {
  width: 22px;
  height: 21px;
  margin-bottom: 14px;
}

.hero__card-title {
  font-size: 12px;
  font-weight: 700;
  color: #141d23;
  letter-spacing: 0.6px;
  line-height: 16px;
  margin-bottom: 2px;
}

.hero__card-desc {
  font-size: 10px;
  color: #43474f;
  line-height: 15px;
}

/* Steps */
.steps {
  padding: 80px 0 100px;
  background: #f8f9ff;
}

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

.steps__line {
  height: 4px;
  margin-bottom: -2px;
  opacity: 0.2;
}

.steps__line img {
  width: 100%;
  height: 4px;
  object-fit: cover;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps__card {
  position: relative;
  background: #fff;
  border: 1px solid #c3c6d1;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  min-height: 204px;
}

.steps__badge {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #012e8f;
  border: 4px solid #f6faff;
  border-radius: 9999px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 28px;
}

.steps__badge--final {
  background: #83fc8e;
  border-color: #001e40;
  color: #002106;
  z-index: 2;
}

.steps__icon {
  height: 25px;
  width: auto;
  margin-bottom: 12px;
}

.steps__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #001e40;
  line-height: 28px;
  margin-bottom: 4px;
}

.steps__card-title--light {
  color: #fff;
}

.steps__card-desc {
  font-size: 14px;
  color: #43474f;
  line-height: 20px;
}

.steps__card-desc--light {
  color: rgba(255, 255, 255, 0.8);
}

.steps__card--final {
  grid-column: span 2;
  background: #001e40;
  border: none;
  min-height: 185px;
  padding: 24px;
  /* overflow: hidden; */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.steps__final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.steps__final-content {
  flex: 1;
}

.steps__apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px 32px;
  background: #fbcb06;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}

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

.steps__final-glow {
  position: absolute;
  top: -64px;
  right: -64px;
  width: 128px;
  height: 128px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  filter: blur(12px);
  pointer-events: none;
}

/* 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;
}
