@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes slideCard {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

.scroll-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-hidden.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
  background: #ffffff;
  padding: 0 60px;
}
.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0s;
}
.nav__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: #0f3460;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 14px;
  font-weight: 700;
}
.nav__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #0f3460;
}
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__link {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav__link:hover {
  color: #0f3460;
}
.nav__search {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
}

.hero__left {
  max-width: 520px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-direction: column;
}

.hero__badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.1s;
}
.hero__badge-new {
  background: #0f3460;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.hero__badge-text {
  font-size: 13px;
  color: #666;
}

.hero__title {
  font-size: 54px;
  font-weight: 900;
  color: #0f3460;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.2s;
}

.hero__sub {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.3s;
}

.hero__btn {
  padding: 16px 36px;
  background: #0f3460;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  margin-bottom: 48px;
  animation: pulse 2.5s ease-in-out infinite;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.4s;
}
.hero__btn:hover {
  background: rgb(9.4864864865, 32.8864864865, 60.7135135135);
}

.hero__trusted {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.5s;
}
.hero__trusted-text {
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
}

.hero__logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__logo {
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
}

.hero__right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  flex: 1;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeRight 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero__circle {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #dbeafe;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero__person {
  position: relative;
  z-index: 1;
  height: 520px;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero__card {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 14px 28px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: slideCard 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}
.hero__card-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f3460;
}
.hero__card-role {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.why {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 60px;
  background: #dbeafe;
}
.why__left {
  max-width: 260px;
}
.why__title {
  font-size: 32px;
  font-weight: 900;
  color: #0f3460;
  line-height: 1.2;
  margin-bottom: 16px;
}
.why__sub {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}
.why__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
}
.why__card:hover {
  box-shadow: 0 6px 24px rgba(15, 52, 96, 0.15);
  transform: translateY(-6px);
}
.why__icon {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.why__name {
  font-size: 15px;
  font-weight: 700;
  color: #0f3460;
}
.why__text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.stats {
  background: #0a2240;
  padding: 60px;
  text-align: center;
}
.stats__title {
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}
.stats__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
}
.stats__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.stats__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
}
.stats__num {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
}
.stats__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.testi {
  padding: 80px 60px;
  background: #dbeafe;
  text-align: center;
}
.testi__title {
  font-size: 32px;
  font-weight: 900;
  color: #0f3460;
  margin-bottom: 40px;
}
.testi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.testi__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}
.testi__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(15, 52, 96, 0.12);
}
.testi__name {
  font-size: 15px;
  font-weight: 700;
  color: #0f3460;
}
.testi__text {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  flex: 1;
}
.testi__person {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.testi__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testi__pname {
  font-size: 14px;
  font-weight: 700;
  color: #0f3460;
}
.testi__prole {
  font-size: 12px;
  color: #666;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 60px;
  background: #ffffff;
}
.cta__left {
  max-width: 460px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  gap: 20px;
}
.cta__title {
  font-size: 32px;
  font-weight: 900;
  color: #0f3460;
  line-height: 1.2;
}
.cta__text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: #0f3460;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cta__btn:hover {
  background: rgb(9.4864864865, 32.8864864865, 60.7135135135);
  transform: translateY(-2px);
}
.cta__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.cta__img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  background: #0a2240;
  padding: 60px 60px 30px;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand {
  min-width: 160px;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.footer__logo-icon {
  width: 34px;
  height: 34px;
  background: #ffffff;
  color: #0f3460;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 14px;
  font-weight: 900;
}
.footer__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
.footer__col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  flex-direction: column;
  gap: 10px;
}
.footer__col-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.footer__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__link:hover {
  color: #ffffff;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 24px;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.footer__socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.footer__social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s;
}
.footer__social:hover {
  background: #ffffff;
  color: #0f3460;
}

@media (max-width: 500px) {
  .hero {
    padding: 0 20px;
  }
  .hero__content {
    flex-direction: column;
    padding-top: 20px;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__btn {
    width: 100%;
  }
  .hero__circle {
    width: 280px;
    height: 280px;
  }
  .hero__person {
    height: 300px;
  }
  .hero__card {
    right: 10px;
    bottom: 10px;
    padding: 10px 16px;
  }
  .nav__links {
    display: none;
  }
  .why {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }
  .why__left {
    max-width: 100%;
  }
  .why__title {
    font-size: 24px;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
  .stats {
    padding: 40px 20px;
  }
  .stats__title {
    font-size: 22px;
  }
  .stats__grid {
    gap: 40px;
  }
  .stats__num {
    font-size: 36px;
  }
  .testi {
    padding: 40px 20px;
  }
  .testi__title {
    font-size: 24px;
  }
  .testi__grid {
    grid-template-columns: 1fr;
  }
  .cta {
    flex-direction: column;
    padding: 40px 20px;
  }
  .cta__left {
    max-width: 100%;
  }
  .cta__title {
    font-size: 24px;
  }
  .cta__btn {
    width: 100%;
    justify-content: center;
  }
  .cta__img {
    max-width: 100%;
  }
  .footer {
    padding: 40px 20px 24px;
  }
  .footer__top {
    flex-direction: column;
    gap: 28px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */