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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #264065;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.background__colors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  display: flex;
}
.background__cream {
  width: 65%;
  height: 100%;
  background-color: #FAF8F5;
}
.background__cyan {
  width: 35%;
  height: 100%;
  background-color: #A9D6CB;
  position: relative;
  overflow: hidden;
}
.background__lotus {
  position: absolute;
  top: 10%;
  right: 55%;
  width: 380px;
  height: auto;
  opacity: 0.18;
  color: #5B9A9A;
}
.background__lotus svg {
  width: 100%;
  height: auto;
}
.background__white {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #264065;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 200ms ease;
}

ul,
ol {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

::selection {
  background-color: #A9D6CB;
  color: #264065;
}

@media (max-width: 992px) {
  .background__colors {
    flex-direction: column;
    height: 100%;
  }
  .background__cream {
    width: 100%;
    height: 60%;
  }
  .background__cyan {
    width: 100%;
    height: 40%;
  }
  .background__lotus {
    top: 5%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    opacity: 0.1;
  }
  .background__white {
    display: none;
  }
}
@media (max-width: 768px) {
  .background__cream {
    height: 70%;
  }
  .background__cyan {
    height: 30%;
  }
}
.header {
  position: relative;
  z-index: 100;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0px;
}
.logo__glow {
  color: #264065;
}
.logo__queen {
  color: #A9D6CB;
}
.logo:hover {
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.999rem;
  font-weight: 500;
  color: #909090;
  padding: 0.5rem 0;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #A9D6CB;
  transition: width 200ms ease;
}
.nav__link:hover {
  color: #264065;
}
.nav__link:hover::after {
  width: 100%;
}
.nav__link--active {
  color: #264065;
  font-weight: 600;
}
.nav__dropdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__dropdown svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}
.nav__dropdown:hover svg {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-icons__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #264065;
  border-radius: 9999px;
  transition: all 200ms ease;
}
.header-icons__btn svg {
  width: 20px;
  height: 20px;
}
.header-icons__btn:hover {
  background-color: rgba(169, 214, 203, 0.2);
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-auth__signin {
  font-size: 0.999rem;
  font-weight: 500;
  color: #264065;
  text-decoration: underline;
}
.header-auth__signin:hover {
  color: #5B9A9A;
}
.header-auth__signup {
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #264065;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  transition: all 200ms ease;
}
.header-auth__signup:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #264065;
  border-radius: 2px;
  transition: all 200ms ease;
}

@media (max-width: 1024px) {
  .header {
    padding: 1rem 2rem;
  }
  .nav {
    gap: 1.5rem;
  }
  .header-actions {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
  }
  .menu-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    gap: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  .nav.active {
    height: auto;
    padding: 2rem 0;
  }
  .nav__link {
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }
  .nav__link::after {
    display: none;
  }
  .header-auth {
    gap: 1rem;
  }
  .header-auth__signin {
    font-size: 0.75rem;
  }
  .header-auth__signup {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  .header-icons {
    gap: 0.5rem;
  }
  .header-icons__btn {
    width: 36px;
    height: 36px;
  }
  .header-icons__btn svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 0.5rem 1rem;
  }
  .logo {
    font-size: 1.25rem;
  }
  .header-icons {
    display: none;
  }
}
.hero {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 5rem;
  min-height: calc(100vh - 105px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  padding-right: 3rem;
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #264065;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #909090;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 200ms ease;
  cursor: pointer;
}
.btn--primary {
  font-size: 0.875rem;
  color: #FFFFFF;
  background-color: #264065;
  padding: 1rem 2rem;
}
.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.btn--secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  padding: 0;
}

.btn-play {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 200ms ease;
}
.btn-play svg {
  width: 14px;
  height: 14px;
  fill: #264065;
  margin-left: 3px;
}
.btn-play:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.btn-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #264065;
}

.stats {
  background-color: #FFFFFF;
  padding: 2rem 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  justify-content: space-evenly;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat__icon {
  width: 72px;
  height: 72px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background-color: #a9d6cb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(169, 214, 203, 0.2);
}
.stat__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.stat__number {
  font-size: 2.25rem;
  font-weight: 500;
  color: #264065;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat__label {
  font-size: 0.75rem;
  font-weight: 400;
  color: #909090;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -5rem;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.hero-image {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(2.2);
  transform-origin: right;
}

.testimonial {
  position: absolute;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  max-width: 320px;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}
.testimonial--top {
  top: 10%;
  right: -40px;
}
.testimonial--bottom {
  bottom: 25%;
  right: 20px;
  background-color: rgba(91, 154, 154, 0.9);
  border: 1px solid rgba(91, 154, 154, 0.3);
}
.testimonial--bottom .testimonial__quote svg path {
  fill: rgba(255, 255, 255, 0.4);
}
.testimonial--bottom .testimonial__text {
  color: rgba(255, 255, 255, 0.95);
}
.testimonial--bottom .testimonial__author {
  color: #FFFFFF;
  font-weight: 700;
}
.testimonial__quote {
  margin-bottom: 0.5rem;
}
.testimonial__quote svg {
  width: 28px;
  height: 22px;
}
.testimonial__quote svg path {
  fill: rgba(38, 64, 101, 0.25);
}
.testimonial__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #909090;
  margin-bottom: 1rem;
}
.testimonial__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #5B9A9A;
  font-style: normal;
}

.hero-testimonial {
  position: absolute;
  z-index: 30;
}
.hero-testimonial__content img {
  max-width: 75%;
  height: auto;
}
.hero-testimonial--top {
  top: 13%;
  right: -28px;
}
.hero-testimonial--bottom {
  top: 55%;
  right: 10px;
}

@media (max-width: 1200px) {
  .hero {
    padding: 2rem 2rem;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    padding-right: 1.5rem;
    max-width: 100%;
  }
  .hero-visual {
    margin-right: 0;
  }
  .hero-image {
    transform: scale(1.5);
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
  .stats {
    padding: 1.5rem 2rem;
    gap: 3rem;
  }
  .hero-testimonial__content img {
    max-width: 280px;
  }
  .hero-testimonial--bottom {
    right: -10px;
  }
}
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: auto;
  }
  .hero-content {
    padding-right: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
    max-width: 500px;
  }
  .hero-visual {
    order: -1;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .hero-image-wrapper {
    max-width: 400px;
  }
  .hero-image {
    transform: scale(1.1);
  }
  .stats {
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 500px;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-testimonial {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 1.5rem 1rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  .stats {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  .stat {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }
  .stat__icon {
    margin-bottom: 0;
  }
  .stat__info {
    display: flex;
    flex-direction: column;
  }
  .stat__label br {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 1rem;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-subtitle {
    font-size: 0.875rem;
  }
  .hero-image-wrapper {
    max-width: 280px;
  }
  .btn--primary {
    width: 100%;
    justify-content: center;
  }
  .btn--secondary {
    width: 100%;
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */
