@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
:root {
  --alice-push-down: 0px;
  --aiman-push-down: 0px;
  --duo-img-gap: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Parkinsans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: #f5e8e0;
}

img {
  max-width: 100%;
}

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

button {
  font-family: inherit;
}

.text-center {
  text-align: center !important;
}

.top-header {
  background: #392919;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  line-height: normal;
}
@media (max-width: 768px) {
  .top-header {
    display: none !important;
    padding: 12px 20px;
  }
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.says-logo {
  width: 89px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .says-logo {
    width: 72px;
  }
}

.exclusive-text {
  color: #ffffff;
  font-family: "Proxima Nova", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.share-btn {
  width: 135px;
  height: 29px;
  background: transparent;
  border: 1.5px solid #ffffff;
  border-radius: 10px;
  color: #ffffff;
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.share-btn i {
  font-size: 13px;
}
.share-btn:hover {
  background: #ffffff;
  color: #392919;
}
@media (max-width: 768px) {
  .share-btn {
    width: 120px;
    font-size: 12px;
  }
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 59px);
  overflow: hidden;
  background-image: url("../img/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section.is-hidden {
  display: none;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding-bottom: 0;
    background-image: url("../img/mobile-bg.png");
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
  }
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .hero-stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  bottom: 90px;
}
@media (max-width: 768px) {
  .hero-center {
    order: 2;
    position: static;
    bottom: 0;
    width: 100%;
  }
}

.character-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
@media (max-width: 768px) {
  .character-wrap {
    width: 100%;
  }
}
.character-wrap img.character-img {
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .character-wrap img.character-img--desktop {
    display: none;
  }
}
.character-wrap img.character-img--mobile {
  display: none;
}
@media (max-width: 768px) {
  .character-wrap img.character-img--mobile {
    display: block;
    width: 100%;
    height: auto;
  }
}

.character-wrap--alice {
  margin-right: -20px;
  padding-top: var(--alice-push-down);
  flex-shrink: 0;
}
.character-wrap--alice img.character-img {
  width: 285px;
  height: auto;
}
@media (max-width: 1024px) {
  .character-wrap--alice img.character-img {
    width: 240px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .character-wrap--alice img.character-img {
    width: 100%;
    height: auto;
    margin-right: 0;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .character-wrap--alice {
    order: 1;
    width: 100%;
    margin-right: 0;
    padding-top: 20px;
    align-items: flex-end;
    justify-content: flex-end;
  }
}

.character-wrap--aiman {
  flex-shrink: 0;
  padding-left: 10px;
  padding-top: var(--aiman-push-down);
}
.character-wrap--aiman img.character-img {
  width: 275px;
  height: auto;
}
@media (max-width: 1024px) {
  .character-wrap--aiman img.character-img {
    width: 230px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .character-wrap--aiman img.character-img {
    width: 100%;
    height: auto;
    padding-left: 0;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .character-wrap--aiman {
    order: 3;
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.hero-card {
  grid-column: 2;
  grid-row: 1;
  background: #ffffff;
  border-radius: 10px;
  padding: 32px 40px 28px;
  text-align: center;
  box-shadow: 0px 7.21px 7.21px 0px rgba(0, 0, 0, 0.2509803922);
  max-width: 630px;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .hero-card {
    padding: 24px 24px 20px;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .hero-card {
    order: 2;
    border-radius: 14px;
    margin: 0 16px 14px;
    padding: 22px 30px 18px;
    max-width: none;
    width: calc(100% - 32px);
  }
}
@media (max-width: 400px) {
  .hero-card {
    padding: 22px 20px 18px;
  }
}
@media (max-width: 376px) {
  .hero-card {
    padding: 22px 10px 18px;
  }
}
@media (max-width: 360px) {
  .hero-card {
    padding: 22px 0 18px;
  }
}

.hero-title {
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 43.24px;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  color: #392919;
  margin: 0 0 14px;
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 22px;
    line-height: 1.3;
    margin: 0;
  }
}
@media (max-width: 360px) {
  .hero-title {
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
  }
}

.hero-published {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Parkinsans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #392919;
}
@media (max-width: 1024px) {
  .hero-published {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .hero-published {
    font-size: 14px;
  }
}
.hero-published img.hasil-logo {
  width: 75px;
  height: 48px;
  object-fit: contain;
}

.hero-btns {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 28px;
}
@media (max-width: 768px) {
  .hero-btns {
    order: 3;
    gap: 12px;
    padding: 0 16px 24px;
  }
}

.btn-character {
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  border: none;
  background: none;
  padding: 0;
}
.btn-character img {
  display: block;
  height: auto;
  max-width: 175px;
  width: auto;
}
@media (max-width: 768px) {
  .btn-character img {
    height: auto;
    max-width: 140px;
    width: 140px;
  }
}
.btn-character:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.06);
}
.btn-character:active {
  transform: translateY(0) scale(0.98);
}

.character-labels {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media (max-width: 768px) {
  .character-labels {
    display: none;
  }
}

.character-label--aiman, .character-label--alice {
  background: rgba(194, 167, 140, 0.36);
  padding: 20px 68px;
  max-width: 42%;
  min-width: 381px;
  backdrop-filter: blur(4px);
  pointer-events: auto;
}

.character-label--alice {
  text-align: right;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 260px;
}
.character-label--alice span.highlight-alice {
  background: linear-gradient(180deg, rgba(246, 194, 172, 0) 0%, rgba(246, 194, 172, 0.7) 100%);
  border-radius: 4px;
  padding: 0 4px;
}
@media (max-width: 1024px) {
  .character-label--alice {
    padding: 16px 28px 24px 16px;
    min-width: 240px;
  }
}

.character-label--aiman {
  text-align: left;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-right: 260px;
}
.character-label--aiman span.highlight-aiman {
  background: linear-gradient(0deg, rgba(126, 203, 234, 0.7) 0%, rgba(126, 203, 234, 0) 100%);
  border-radius: 4px;
  padding: 0 4px;
}
@media (max-width: 1024px) {
  .character-label--aiman {
    padding: 16px 16px 24px 28px;
    min-width: 240px;
  }
}

.label-name {
  font-family: "Parkinsans", sans-serif;
  font-weight: bold;
  font-size: 30px;
  color: #392919;
  margin: 0 0 2px;
}
@media (max-width: 1024px) {
  .label-name {
    font-size: 22px;
  }
}

.label-role {
  font-family: "Parkinsans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #392919;
  margin: 0 0 6px;
}

.label-desc {
  font-family: "Parkinsans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #392919;
  line-height: 1.5;
  margin: 0;
}

.mobile-character-label {
  display: none;
}

.journey-section {
  position: relative;
  min-height: calc(100vh - 59px);
  background-image: url("../img/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.journey-section.is-active {
  display: flex;
  opacity: 1;
}
@media (max-width: 768px) {
  .journey-section {
    min-height: auto;
  }
}

.journey-swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  height: auto;
}

.journey-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}
@media (max-width: 1024px) {
  .journey-layout {
    gap: 36px;
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .journey-layout {
    flex-direction: column;
    gap: 0;
    padding: 0;
    align-items: flex-start;
  }
}

.journey-img-wrap {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .journey-img-wrap {
    display: none;
  }
}

.journey-img {
  width: 500px;
  height: auto;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .journey-img {
    width: 380px;
  }
}

.journey-img-aiman {
  width: 540px;
  height: auto;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .journey-img-aiman {
    width: 380px;
  }
}

.journey-img-wrap--mobile {
  display: none;
  width: 100%;
}
@media (max-width: 768px) {
  .journey-img-wrap--mobile {
    display: flex;
    justify-content: center;
  }
}

.journey-img-mobile {
  width: 430px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.journey-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .journey-text {
    text-align: center;
    padding: 24px 20px 100px;
  }
}

@media (max-width: 768px) {
  .mobile-journey-text {
    text-align: center;
    padding: 24px 0 100px !important;
  }
}

.journey-heading {
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #392919;
  max-width: 80%;
}
.journey-heading span.highlight-alice {
  background: linear-gradient(180deg, rgba(246, 194, 172, 0) 0%, rgba(246, 194, 172, 0.7) 100%);
  border-radius: 4px;
  padding: 0 4px;
}
.journey-heading span.highlight-aiman {
  background: linear-gradient(0deg, rgba(126, 203, 234, 0.7) 0%, rgba(126, 203, 234, 0) 100%);
  border-radius: 4px;
  padding: 0 4px;
}
@media (max-width: 1024px) {
  .journey-heading {
    font-size: 20px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .journey-heading {
    font-size: 20px;
    padding: 0 45px;
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .journey-heading {
    padding: 0 25px;
  }
}
@media (max-width: 376px) {
  .journey-heading {
    padding: 0 15px;
  }
}
@media (max-width: 360px) {
  .journey-heading {
    padding: 0 12px;
  }
}

.journey-body {
  font-family: "Parkinsans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #392919;
}
.journey-body strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .journey-body {
    font-size: 16px;
    padding: 0 44px;
  }
}
@media (max-width: 400px) {
  .journey-body {
    padding: 0 24px;
  }
}
@media (max-width: 376px) {
  .journey-body {
    padding: 0 15px;
  }
}
@media (max-width: 360px) {
  .journey-body {
    padding: 0;
  }
}

.journey-nav {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
}
@media (max-width: 768px) {
  .journey-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.desktop-journey-btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .desktop-journey-btns {
    display: none !important;
  }
}

.mobile-journey-btns {
  display: none;
}
@media (max-width: 768px) {
  .mobile-journey-btns {
    display: flex;
    justify-content: space-between;
  }
}

.mobile-journey-btns__img {
  display: none !important;
  width: 182px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mobile-journey-btns__img {
    display: flex !important;
  }
}

.journey-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.journey-btn img {
  width: 133px;
  height: auto;
  display: block;
}
.journey-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.journey-btn:active {
  transform: translateY(0);
}
.journey-btn.swiper-button-lock {
  display: block;
}
@media (max-width: 768px) {
  .journey-btn.swiper-button-lock {
    display: none;
  }
}

.journey-slide--s3 {
  background: #FACCAB;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.journey-s3-bottom {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.journey-s3-bottom .journey-cards-col {
  flex: 1;
}
.journey-s3-bottom .journey-img-wrap {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .journey-s3-bottom {
    flex-direction: column;
    gap: 0;
  }
}

.journey-layout--s3 {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 40px 40px 100px;
  align-items: center;
}
@media (max-width: 768px) {
  .journey-layout--s3 {
    padding: 24px 0 70px;
  }
}

.journey-layout--top {
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 40px 60px 100px;
}
@media (max-width: 768px) {
  .journey-layout--top {
    padding: 24px 0;
  }
}

.journey-heading--top-aiman {
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  color: #392919;
  max-width: 40%;
}
@media (max-width: 768px) {
  .journey-heading--top-aiman {
    font-size: 20px;
    padding: 0 30px;
    max-width: 100%;
  }
}

.journey-heading--top {
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  color: #392919;
  max-width: 650px;
}
@media (max-width: 768px) {
  .journey-heading--top {
    font-size: 20px;
    padding: 0 55px;
  }
}
@media (max-width: 400px) {
  .journey-heading--top {
    padding: 0 45px;
  }
}
@media (max-width: 376px) {
  .journey-heading--top {
    padding: 0 40px;
  }
}
@media (max-width: 360px) {
  .journey-heading--top {
    padding: 0 20px;
  }
}

.journey-img-duo {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  max-width: 930px;
  width: 100%;
  gap: var(--duo-img-gap);
  font-size: 0;
}
.journey-img-duo img:first-child {
  margin-right: -8px;
}
.journey-img-duo img {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.journey-content-card {
  background: rgba(255, 255, 255, 0.3019607843);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.journey-content-card p {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #392919;
  margin-bottom: 10px;
}
.journey-content-card .bullet-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 8px 0;
}
.journey-content-card .bullet-row span {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #392919;
}
.journey-content-card .bullet-row span::before {
  content: "• ";
}
.journey-content-card .card-bold {
  font-weight: 700;
}
@media (max-width: 768px) {
  .journey-content-card {
    padding: 18px 20px;
  }
  .journey-content-card .bullet-row {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    padding-left: 16px;
  }
}

.journey-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.journey-card {
  background: rgba(255, 255, 255, 0.3019607843);
  border-radius: 10px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843) p, li;
  border-font-family: "Parkinsans", sans-serif;
  border-font-size: 15px;
  border-font-weight: 400;
  border-color: #392919;
  border-line-height: 1.6;
}
.journey-card ul {
  padding-left: 18px;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .journey-card {
    padding: 16px 18px;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

.mobile-only {
  display: none !important;
}
@media (max-width: 768px) {
  .mobile-only {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding-bottom: 40px;
  }
}

.alice-s2-mobile__img-wrap {
  width: 430px;
  max-width: 100%;
}
.alice-s2-mobile__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.alice-s2-mobile__img-wrap--right {
  align-self: flex-end;
  overflow: hidden;
}
.alice-s2-mobile__img-wrap--left {
  align-self: flex-start;
  overflow: hidden;
}
.alice-s2-mobile__card {
  margin: 0 16px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 16px 0 10px 10px;
}
@media (max-width: 360px) {
  .alice-s2-mobile__card {
    margin: 0 10px;
    padding: 16px 10px 10px 10px;
  }
}
.alice-s2-mobile__card p {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #392919;
}
.alice-s2-mobile__card strong {
  font-weight: 700;
}
.alice-s2-mobile__card-title {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #392919;
  margin-bottom: 10px;
}
.alice-s2-mobile__bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.alice-s2-mobile__bullet-grid ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}
.alice-s2-mobile__bullet-grid ul li {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #392919;
  line-height: 1.7;
  text-align: start;
}

.alice-s3-heading {
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #392919;
}
.alice-s3-heading span.highlight-alice {
  background: linear-gradient(180deg, rgba(246, 194, 172, 0) 0%, rgba(246, 194, 172, 0.7) 100%);
  border-radius: 4px;
  padding: 0 4px;
}
@media (max-width: 1024px) {
  .alice-s3-heading {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .alice-s3-heading {
    font-size: 20px;
  }
}

.alice-s3-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .alice-s3-bullet-list {
    padding: 0 68px;
    text-align: start;
    gap: 0;
  }
}
@media (max-width: 400px) {
  .alice-s3-bullet-list {
    padding: 0 47px;
  }
}
@media (max-width: 376px) {
  .alice-s3-bullet-list {
    padding: 0 40px;
  }
}
@media (max-width: 360px) {
  .alice-s3-bullet-list {
    padding: 0 34px;
  }
}

.alice-s3-bullet-item {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #392919;
  padding-left: 18px;
  position: relative;
}
.alice-s3-bullet-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.alice-s3-bullet-bold {
  font-weight: 700;
}

.alice-s3-dark-card {
  background-color: rgba(57, 41, 25, 0.6);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .alice-s3-dark-card {
    padding: 16px 45px;
    margin: 0 16px;
  }
}
@media (max-width: 400px) {
  .alice-s3-dark-card {
    padding: 16px 25px;
  }
}
@media (max-width: 376px) {
  .alice-s3-dark-card {
    padding: 16px 15px;
  }
}
@media (max-width: 360px) {
  .alice-s3-dark-card {
    padding: 16px 10px;
  }
}

.alice-s3-dark-card__text {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
}

.aiman-s2-mobile {
  display: none;
}
@media (max-width: 768px) {
  .aiman-s2-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
}
.aiman-s2-mobile__card {
  margin: 0 16px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 16px 62px;
  text-align: start;
}
@media (max-width: 400px) {
  .aiman-s2-mobile__card {
    padding: 16px 45px;
  }
}
@media (max-width: 376px) {
  .aiman-s2-mobile__card {
    padding: 16px 40px;
  }
}
@media (max-width: 360px) {
  .aiman-s2-mobile__card {
    padding: 16px 34px;
  }
}
@media (max-width: 768px) {
  .aiman-s2-mobile__card.different-padding {
    padding: 16px 28px;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .aiman-s2-mobile__card.different-padding {
    padding: 16px 0;
  }
}
@media (max-width: 376px) {
  .aiman-s2-mobile__card.different-padding {
    padding: 16px 0;
  }
}
@media (max-width: 360px) {
  .aiman-s2-mobile__card.different-padding {
    padding: 16px 0;
  }
}
.aiman-s2-mobile__card p {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #392919;
}
@media (max-width: 360px) {
  .aiman-s2-mobile__card p {
    font-size: 15px;
  }
}
.aiman-s2-mobile__card ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 6px;
  text-align: left;
  display: inline-block;
}
.aiman-s2-mobile__card ul li {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #392919;
  line-height: 1.7;
}
.aiman-s2-mobile__img-wrap {
  width: 100%;
  overflow: hidden;
}
.aiman-s2-mobile__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.aiman-s3-heading {
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #392919;
}
.aiman-s3-heading span.highlight-aiman {
  background: linear-gradient(0deg, rgba(126, 203, 234, 0.7) 0%, rgba(126, 203, 234, 0) 100%);
  border-radius: 4px;
  padding: 0 4px;
}
@media (max-width: 1024px) {
  .aiman-s3-heading {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .aiman-s3-heading {
    font-size: 20px;
    padding: 0 30px;
  }
}
@media (max-width: 400px) {
  .aiman-s3-heading {
    padding: 0 20px;
  }
}
@media (max-width: 376px) {
  .aiman-s3-heading {
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .aiman-s3-heading {
    padding: 0 20px;
  }
}

.aiman-s3-body {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #392919;
}
@media (max-width: 768px) {
  .aiman-s3-body {
    padding: 0 36px;
  }
}
@media (max-width: 400px) {
  .aiman-s3-body {
    padding: 0 20px;
  }
}
@media (max-width: 376px) {
  .aiman-s3-body {
    padding: 0 15px;
  }
}
@media (max-width: 360px) {
  .aiman-s3-body {
    padding: 0;
  }
}

.aiman-s3-body--bold {
  font-weight: 700;
}

@media (max-width: 768px) {
  .aiman-s3-text {
    padding-bottom: 20px !important;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .aiman-s3-img-wrap-mobile {
    padding-bottom: 80px;
  }
  .aiman-s3-img-wrap-mobile .journey-img-mobile {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
}

.alice-s4-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
@media (max-width: 1024px) {
  .alice-s4-layout {
    padding: 32px 48px 24px;
  }
}
@media (max-width: 768px) {
  .alice-s4-layout {
    padding: 24px 0 100px;
    gap: 16px;
  }
}

.alice-s4-title {
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.45;
  color: #392919;
  text-align: center;
  max-width: 260px;
}
@media (max-width: 768px) {
  .alice-s4-title {
    font-size: 20px;
  }
}

.alice-s4-subtitle {
  font-family: "Parkinsans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #392919;
  text-align: center;
  max-width: 600px;
}
@media (max-width: 768px) {
  .alice-s4-subtitle {
    font-size: 16px;
    padding: 0 55px;
  }
}
@media (max-width: 400px) {
  .alice-s4-subtitle {
    padding: 0 35px;
  }
}
@media (max-width: 376px) {
  .alice-s4-subtitle {
    padding: 0 25px;
  }
}
@media (max-width: 360px) {
  .alice-s4-subtitle {
    padding: 0 15px;
  }
}

.alice-s4-bullet-card {
  background: rgba(255, 255, 255, 0.188);
  border: 2px solid rgba(255, 255, 255, 0.302);
  border-radius: 10px;
  padding: 22px 20px;
  width: 480px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .alice-s4-bullet-card {
    padding: 16px 20px;
    width: 90%;
  }
}

.alice-s4-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.alice-s4-bullet-item {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #392919;
  padding-left: 18px;
  position: relative;
}
.alice-s4-bullet-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .alice-s4-bullet-item {
    font-size: 16px;
    line-height: 1.3;
  }
}

.alice-s4-time-text {
  font-family: "Parkinsans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #392919;
  text-align: center;
  max-width: 540px;
}
.alice-s4-time-text strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .alice-s4-time-text {
    font-size: 16px;
    padding: 0 60px;
  }
}
@media (max-width: 400px) {
  .alice-s4-time-text {
    padding: 0 45px;
  }
}
@media (max-width: 376px) {
  .alice-s4-time-text {
    padding: 0 35px;
  }
}
@media (max-width: 360px) {
  .alice-s4-time-text {
    padding: 0 25px;
  }
}

.alice-s4-image-card {
  width: 618px;
  height: 335px;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  object-fit: cover;
}
.alice-s4-image-card--placeholder {
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .alice-s4-image-card {
    height: auto;
  }
}

.aiman-s4-layout {
  display: flex;
  align-items: center;
  min-height: 700px;
}
@media (max-width: 1024px) {
  .aiman-s4-layout {
    gap: 36px;
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .aiman-s4-layout {
    flex-direction: column;
    min-height: unset;
    gap: 0;
    padding: 10px 0;
  }
}

.aiman-s4-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 62px 20px 32px;
}
@media (max-width: 1024px) {
  .aiman-s4-left {
    padding: 32px 32px 32px 40px;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .aiman-s4-left {
    padding: 24px 20px 16px;
    align-items: center;
    gap: 16px;
  }
}

.aiman-s4-title {
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #392919;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .aiman-s4-title {
    font-size: 20px;
    padding: 0 40px;
  }
}
@media (max-width: 400px) {
  .aiman-s4-title {
    padding: 0 20px;
  }
}
@media (max-width: 376px) {
  .aiman-s4-title {
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .aiman-s4-title {
    padding: 0 10px;
  }
}

.aiman-s4-dropdown {
  width: 429px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .aiman-s4-dropdown {
    width: 100%;
  }
}

.aiman-s4-dropdown__header {
  width: 429px;
  max-width: 100%;
  height: 96px;
  background: #6ABDE8;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 0 22px 0 26px;
  cursor: pointer;
  user-select: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  transition: border-radius 0.25s ease;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 768px) {
  .aiman-s4-dropdown__header span {
    padding: 10px !important;
  }
}
@media (max-width: 768px) {
  .aiman-s4-dropdown__header {
    width: 100%;
    height: auto;
    min-height: 57px;
    font-size: 16px;
    padding: 14px 30px 14px;
    flex-direction: column;
    gap: 0px;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .aiman-s4-dropdown__header {
    padding: 14px 15px 14px;
  }
}
@media (max-width: 376px) {
  .aiman-s4-dropdown__header {
    padding: 14px 10px 14px;
  }
}
@media (max-width: 360px) {
  .aiman-s4-dropdown__header {
    padding: 14px 0;
  }
}

.aiman-s4-dropdown__chevron {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.aiman-s4-dropdown__header.is-open .aiman-s4-dropdown__chevron {
  transform: rotate(180deg);
}

.aiman-s4-dropdown__body {
  width: 429px;
  max-width: 80%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.302);
  border-radius: 0 0 10px 10px;
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height 0.4s ease, padding 0.3s ease;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.aiman-s4-dropdown__body.is-open {
  max-height: 320px;
  padding: 20px 26px;
}
@media (max-width: 768px) {
  .aiman-s4-dropdown__body {
    width: 80%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .aiman-s4-dropdown__body.is-open {
    padding: 16px 20px;
  }
}

.aiman-s4-dropdown__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.aiman-s4-dropdown__item {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #392919;
  padding-left: 18px;
  position: relative;
}
.aiman-s4-dropdown__item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .aiman-s4-dropdown__item {
    font-size: 14px;
  }
}

.aiman-s4-text--bold {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  color: #392919;
  text-align: center;
  max-width: 520px;
}
@media (max-width: 768px) {
  .aiman-s4-text--bold {
    font-size: 16px;
    padding: 0 40px;
  }
}
@media (max-width: 400px) {
  .aiman-s4-text--bold {
    padding: 0 20px;
  }
}
@media (max-width: 376px) {
  .aiman-s4-text--bold {
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .aiman-s4-text--bold {
    padding: 0;
  }
}

.aiman-s4-text--regular {
  font-family: "Proxima Nova", "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #392919;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .aiman-s4-text--regular {
    font-size: 16px;
    padding: 0 60px;
  }
}
@media (max-width: 400px) {
  .aiman-s4-text--regular {
    padding: 0 40px;
  }
}
@media (max-width: 376px) {
  .aiman-s4-text--regular {
    padding: 0 35px;
  }
}
@media (max-width: 360px) {
  .aiman-s4-text--regular {
    padding: 0 30px;
  }
}

.aiman-s4-right {
  width: 537px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .aiman-s4-right {
    width: 100%;
    padding: 0;
    justify-content: center;
  }
}

.aiman-s4-image {
  width: 537px;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}
.aiman-s4-image--placeholder {
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .aiman-s4-image {
    width: 100%;
    height: auto;
    aspect-ratio: 370/411;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .aiman-s4-img-wrap-mobile {
    padding-bottom: 80px;
  }
  .aiman-s4-img-wrap-mobile .journey-img-mobile {
    width: 100%;
    max-width: 100%;
  }
}

.alice-cta-slide {
  position: relative;
  min-height: calc(100vh - 59px);
}

.alice-cta-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 59px);
  padding: 60px 40px 120px;
}
@media (max-width: 768px) {
  .alice-cta-layout {
    padding: 40px 20px 160px;
  }
}

.alice-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  max-width: 640px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.alice-cta-heading {
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #392919;
  max-width: 460px;
}
.alice-cta-heading span.highlight-alice {
  background: linear-gradient(180deg, rgba(246, 194, 172, 0) 0%, rgba(246, 194, 172, 0.7) 100%);
  border-radius: 4px;
  padding: 0 4px;
}
@media (max-width: 768px) {
  .alice-cta-heading {
    font-size: 20px;
    padding: 0 35px;
  }
}
@media (max-width: 400px) {
  .alice-cta-heading {
    padding: 0 18px;
  }
}
@media (max-width: 376px) {
  .alice-cta-heading {
    padding: 0 10px;
  }
}
@media (max-width: 360px) {
  .alice-cta-heading {
    padding: 0;
  }
}

.alice-cta-body {
  font-family: "Parkinsans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #392919;
  max-width: 560px;
}
@media (max-width: 768px) {
  .alice-cta-body {
    font-size: 16px;
    padding: 0 50px;
  }
}
@media (max-width: 400px) {
  .alice-cta-body {
    padding: 0 30px;
  }
}
@media (max-width: 376px) {
  .alice-cta-body {
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .alice-cta-body {
    padding: 0 10px;
  }
}

.alice-cta-dropdown {
  width: 429px;
  max-width: 100%;
}

.alice-cta-dropdown__header {
  width: 100%;
  min-height: 64px;
  background: #E8846A;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px 0 26px;
  cursor: pointer;
  user-select: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  transition: border-radius 0.25s ease;
  max-width: 429px;
  gap: 10px;
  margin: 0 auto;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 768px) {
  .alice-cta-dropdown__header {
    font-size: 16px;
    padding: 20px 75px;
    min-height: 120px;
    text-align: center;
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 400px) {
  .alice-cta-dropdown__header {
    padding: 20px 48px;
  }
}
@media (max-width: 376px) {
  .alice-cta-dropdown__header {
    padding: 20px 48px;
  }
}
@media (max-width: 360px) {
  .alice-cta-dropdown__header {
    padding: 20px 48px;
  }
}

.alice-cta-dropdown__chevron {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.alice-cta-dropdown__header.is-open .alice-cta-dropdown__chevron {
  transform: rotate(180deg);
}

.alice-cta-dropdown__body {
  width: 80%;
  margin: 0 auto;
  background: rgba(251, 144, 129, 0.3019607843);
  border-radius: 0 0 10px 10px;
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  text-align: left;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.alice-cta-dropdown__body.is-open {
  max-height: 360px;
  padding: 20px 26px;
}
@media (max-width: 768px) {
  .alice-cta-dropdown__body {
    width: 90%;
    margin: 0 auto;
    background: rgba(137, 165, 194, 0.3019607843);
  }
  .alice-cta-dropdown__body.is-open {
    padding: 16px 20px;
  }
}

.alice-cta-dropdown__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.alice-cta-dropdown__item {
  font-family: "Parkinsans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #392919;
  padding-left: 18px;
  position: relative;
}
.alice-cta-dropdown__item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .alice-cta-dropdown__item {
    font-size: 16px;
  }
}

.alice-cta-text--regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #392919;
  text-align: center;
}
@media (max-width: 768px) {
  .alice-cta-text--regular {
    padding: 0 45px;
  }
}
@media (max-width: 400px) {
  .alice-cta-text--regular {
    padding: 0 25px;
  }
}
@media (max-width: 376px) {
  .alice-cta-text--regular {
    padding: 0 15px;
  }
}
@media (max-width: 360px) {
  .alice-cta-text--regular {
    padding: 0 10px;
  }
}

.alice-cta-text--find-out {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.65;
  color: #392919;
  text-align: center;
}
.alice-cta-text--find-out a {
  color: #392919;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.alice-cta-text--find-out a:hover {
  opacity: 0.75;
}

.alice-cta-btn {
  background: #7ECBEA;
  border: none;
  border-radius: 10px;
  padding: 18px 40px;
  font-family: "Parkinsans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FAF1DC;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.alice-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.alice-cta-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .alice-cta-btn {
    font-size: 16px;
    padding: 16px 32px;
    align-self: flex-start;
  }
}
@media (max-width: 360px) {
  .alice-cta-btn {
    padding: 16px 25px;
  }
}

.alice-cta-img--left {
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 236px;
  height: 334px;
  object-fit: contain;
  object-position: bottom left;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .alice-cta-img--left {
    width: 180px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .alice-cta-img--left {
    width: 128px;
    left: 0;
    top: 83%;
  }
}

.alice-cta-img--right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 339px;
  height: 410px;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .alice-cta-img--right {
    width: 240px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .alice-cta-img--right {
    width: 238px;
    left: 49%;
  }
}
@media (max-width: 400px) {
  .alice-cta-img--right {
    width: 238px;
    left: 49%;
  }
}
@media (max-width: 376px) {
  .alice-cta-img--right {
    width: 238px;
    left: 49%;
  }
}
@media (max-width: 360px) {
  .alice-cta-img--right {
    width: 62%;
    left: 49%;
  }
}

.aiman-cta-slide {
  position: relative;
  min-height: calc(100vh - 59px);
}

.aiman-cta-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 59px);
  padding: 60px 40px 120px;
}
@media (max-width: 768px) {
  .aiman-cta-layout {
    min-height: 85vh;
    padding: 40px 20px 160px;
    justify-content: start;
  }
}

.aiman-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 620px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.aiman-cta-heading {
  font-family: "Parkinsans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #392919;
}
.aiman-cta-heading span.highlight-aiman {
  background: linear-gradient(0deg, rgba(126, 203, 234, 0.7) 0%, rgba(126, 203, 234, 0) 100%);
  border-radius: 4px;
  padding: 0 4px;
}
@media (max-width: 768px) {
  .aiman-cta-heading {
    font-size: 20px;
    padding: 0 30px;
  }
}
@media (max-width: 400px) {
  .aiman-cta-heading {
    padding: 0 10px;
  }
}
@media (max-width: 376px) {
  .aiman-cta-heading {
    padding: 0 10px;
  }
}
@media (max-width: 360px) {
  .aiman-cta-heading {
    padding: 0;
  }
}

.aiman-cta-body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}
@media (max-width: 768px) {
  .aiman-cta-body {
    font-size: 16px;
    padding: 0 45px;
  }
}
@media (max-width: 400px) {
  .aiman-cta-body {
    padding: 0 25px;
  }
}
@media (max-width: 376px) {
  .aiman-cta-body {
    padding: 0 15px;
  }
}
@media (max-width: 360px) {
  .aiman-cta-body {
    padding: 0 10px;
  }
}

.aiman-cta-disclaimer {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  color: #392919;
  text-align: center;
}

.aiman-cta-btn {
  background: #FB877B;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 18px 40px;
  font-family: "Parkinsans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FAF1DC;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.aiman-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.aiman-cta-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .aiman-cta-btn {
    font-size: 16px;
    padding: 16px 32px;
    align-self: flex-end;
  }
}

.aiman-cta-img--left {
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 278px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom left;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .aiman-cta-img--left {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .aiman-cta-img--left {
    left: 0;
    top: 66%;
    width: 283px;
  }
}
@media (max-width: 400px) {
  .aiman-cta-img--left {
    width: 217px;
  }
}
@media (max-width: 376px) {
  .aiman-cta-img--left {
    left: -8px;
    top: 67%;
    width: 215px;
  }
}
@media (max-width: 360px) {
  .aiman-cta-img--left {
    left: -8px;
    top: 67%;
    width: 212px;
  }
}

.aiman-cta-img--right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 393px;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .aiman-cta-img--right {
    width: 132px;
  }
}
@media (max-width: 768px) {
  .aiman-cta-img--right {
    width: 132px;
    top: 99%;
  }
}
@media (max-width: 400px) {
  .aiman-cta-img--right {
    top: 88%;
  }
}
@media (max-width: 376px) {
  .aiman-cta-img--right {
    top: 89%;
  }
}
@media (max-width: 360px) {
  .aiman-cta-img--right {
    top: 89%;
  }
}

/* ========================================
   SHARE MODAL STYLING
   ======================================== */
.share-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: flex-end;
}

.share-modal.active {
  display: flex;
}

.share-modal-content {
  background-color: white;
  border-radius: 20px 20px 0 0;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.share-options {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.share-option {
  background-color: white;
  border: none;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.share-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.share-option i {
  font-size: 32px;
  color: #5C4F9D;
}

.share-option span {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #333;
}

/* ========================================
   SHARE MODAL ICON STYLING
   ======================================== */
/* Facebook Icon */
.share-option:nth-child(1) i {
  color: #039be5;
  font-size: 32px;
}

/* X (Twitter) Icon */
.share-option:nth-child(2) i {
  color: #fff;
  background: #000;
  border-radius: 50%;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* WhatsApp Icon */
.share-option:nth-child(3) i {
  color: #fff;
  background: #40c351;
  border-radius: 50%;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Copy Link Icon */
.share-option:nth-child(4) i {
  color: #fff;
  background: #0056B3;
  border-radius: 50%;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

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