#wrapper {
  background: #edf0fa;
}

#main,
#header,
#footer {
  padding: 0 80px;
}

#header {
  padding-bottom: 80px;
}

.section1 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section1 h1 strong {
  color: #00b5ad;
  font-weight: 700;
}

.section1 h1 i {
  font-size: 50%;
  font-weight: 500;
}

.section1 .ct-center {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 20px;
  color: #737373;
  margin-bottom: 36px;
}

.section1 .ct-center .btn {
  background: #000;
  border-radius: 12px;
}

.section1 .ct-bottom ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 18px;
}

.feature-list {
  margin-top: 40px;
  padding: 0;
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section1 .ct-bottom .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.section1 .ct-bottom .icon svg {
  width: 20px;
  height: 20px;
}

.section1 .box-right {
  background:
    radial-gradient(
      ellipse 80% 60% at 95% 5%,
      rgba(180, 240, 255, 0.5) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 70% 80% at 100% 60%,
      rgba(200, 190, 255, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      rgba(245, 243, 255, 1) 0%,
      rgba(250, 248, 255, 1) 100%
    );
  padding: 48px;
  border-radius: 20px;
  min-height: 620px;
}

.section1 .box-right .tabs {
  background-color: #bec6ff;
  padding: 4px;
  border-radius: 12px;
  display: flex;
  margin-bottom: 36px;
}

.section1 .box-right .tab {
  flex: 1;
  text-align: center;
  padding: 6px 12px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}

.section1 .box-right .tab.active {
  background-color: #fff;
  border-radius: 8px;
}

.section1 .box-right .msg {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 12px 0;
}

.section1 .box-right .msg.main-mess {
  margin: 20px 0;
}

.section1 .box-right .msg.left {
  justify-content: flex-end;
}

.section1 .box-right .msg.right {
  justify-content: flex-start;
}

.section1 .box-right .bubble {
  padding: 8px 16px;
  border-radius: 99px;
  background: #bec6ff;
}

.section1 .box-right .msg.right .bubble {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 4px;
  padding-right: 12px;
}

.section1 .box-right .msg.right:not(.main-mess) .icon {
  width: 32px;
  height: 32px;
  padding: 6px;
  background-color: #3c71a326;
  border-radius: 99px;
  margin-right: 8px;
}

.section1 .box-right .msg.right:nth-of-type(4) .icon {
  background-color: #25a0bd26;
}

.section1 .box-right .msg.right:nth-of-type(5) .icon {
  background-color: #6b50bb26;
}

.section1 .box-right .msg.right:nth-of-type(6) .icon {
  background-color: #0b4d8c26;
}

.section1 .box-right .typing::after {
  content: " ▍";
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.section1 .box-right .main-mess.msg .bubble {
  background-color: transparent;
}

.section1 .box-right .main-mess .icon.left {
  width: 20px;
  margin-right: 8px;
}

.section1 .box-right .main-mess .icon.right {
  width: 30px;
  margin-left: 8px;
}

.section1 .box-right .cta-text {
  margin-top: 16px;
  margin-bottom: 24px;
  font-style: italic;
}

.section1 .box-right .btn {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.section2 {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  min-height: 825px;
}

.section2::before {
  content: "";
  background-color: #e3ecf3; /* màu cũ */
  height: 100%;
  width: calc(47% + 50vw);
  position: absolute;
  left: -50vw;
  top: 0;

  transform: scaleX(var(--before-scale, 1)); /* nên là 1 */
  transform-origin: left;
  z-index: 1;
}

.section2::after {
  content: "";
  background-color: #e0e0f4; /* 👈 màu mới */
  height: 100%;
  width: calc(47% + 50vw);
  position: absolute;
  left: -50vw;
  top: 0;

  transform: scaleX(var(--after-scale, 0));
  transform-origin: right;
  z-index: 2;
}

.section2 > .row {
  z-index: 3;
  position: relative;
}

.section2 .ct-top h2 {
  font-size: 24px;
  font-weight: 500;
}

.section2 .ct-top h2 strong {
  color: #00b5ad;
}

.section2 #step1 ul li {
  opacity: 0;
}

#step1.done .b-ul {
  height: 0;
  display: none;
}

.section2 #step1 .ct-content {
  padding: 8px 16px;
  border-radius: 99px;
  background: #bec6ff;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 24px;
}

.section2 #step1 .ct-content.done::after {
  display: none;
}

.section2 .b-ul {
  transition: all 0.3s ease;
}

.section2 .b-ul ul {
  padding: 16px 24px 16px;
  position: relative;
  list-style: none;
  margin: 0;
  margin-top: 12px;
}

.section2 .b-ul ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 6px;
  height: var(--line-h, 0%);
  background-color: #bec6ff;
  border-radius: 6px;
}

.section2 #step2 .b-ul ul::before {
  background-color: #89c4b5;
}

#step2 .b-ul li:last-child {
  text-align: end;
}

#step2.done .b-ul {
  display: none;
}

#step3.done .b-ul {
  display: none;
}

#step3 .b-ul li:nth-of-type(2) {
  text-align: center;
}

#step3 .b-ul li:last-child {
  text-align: end;
}

.section2 #step3 .b-ul ul::before {
  background-color: #7586ff;
}

.section2 #step4 .b-ul ul::before {
  background-color: #0fa982;
}

.section2 .b-ul ul li {
  opacity: 0;
  font-size: 28px;
}

.section2 .b-ul ul li:not(:last-child) {
  margin-bottom: 12px;
}

.section2 .done .b-ul {
  opacity: 0;
}

#step2 .ct2 {
  border: 1px solid #00b5ad;
  padding: 24px;
  border-radius: 20px;
  display: flex;
}

#step2 .ct2 ul li:first-child::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 60px;
  top: 3px;
  left: -100px;
  display: block;
  background: url(../img/tree.png)
    no-repeat center / contain;
}

#step2 .ct2 ul li:nth-child(2):before {
  content: "";
  position: absolute;
  width: 90px;
  height: 60px;
  top: 3px;
  left: -100px;
  display: block;
  background: url(../img/tree2.png)
    no-repeat center / contain;
}

#step2 .ct2 ul li:nth-child(3):before {
  content: "";
  position: absolute;
  width: 90px;
  height: 60px;
  top: -28px;
  left: -100px;
  display: block;
  background: url(../img/tree3.png)
    no-repeat center / contain;
}

#step2 .ct2 ul li:nth-child(4):before {
  content: "";
  position: absolute;
  width: 90px;
  height: 60px;
  top: -28px;
  left: -100px;
  display: block;
  background: url(../img/tree4.png)
    no-repeat center / contain;
}

#step2 .ct2 .icon {
  width: 32px;
  height: 32px;
  background-color: #10a37f;
  padding: 6px;
  position: relative;
  border-radius: 99px;
}

#step2 .ct2 .icon::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px dashed #10a37f;
  border-radius: 99px;
  top: -6px;
  left: -6px;

  animation: spin 10s linear infinite;
  transform-origin: center;
}

#step2 .ct2 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 80px;
  margin-top: 10px;
}

#step2 .ct2 ul li {
  opacity: 0;
}

#step3 .ct3 {
  position: relative;
  width: 160px;
  height: 160px;
  left: 5%;
  margin-bottom: 24px;
}

#step3 .ct3 .icon {
  width: 48px;
  height: 48px;
  background-color: #d8dff5;
  border-radius: 12px;
  padding: 8px;
  z-index: 2;
  position: relative;
  opacity: 0;
}

#step3 .ct3 .icon:nth-child(2) {
  position: absolute;
  bottom: -5px;
  left: 35px;
}

#step3 .ct3 .icon:nth-child(3) {
  position: absolute;
  right: -10px;
  top: 40px;
}

#step3 .line1 {
  position: absolute;
  left: -20px;
  border: 1px dashed #10a37f;
  transform: rotate(30deg) !important;
  opacity: 0;
}

#step3 .line2 {
  position: absolute;
  top: 25px;
  left: -36px;
  border: 1px dashed #bec6ff;
  transform: rotate(30deg) !important;
  opacity: 0;
}

#step3 .line-icon {
  position: absolute;
  bottom: 0;
  z-index: 1;
  opacity: 0;
}

#step3 .line-icon img {
  width: 160px;
  height: 160px;

  animation: spin 12s linear infinite;
}

#step3 .ct3 .icon span {
  position: absolute;
  top: -40px;
  left: 0;
  font-style: italic;
  color: #0a0a0ab3;
}

#step3 .ct3 .icon:nth-child(2) span {
  position: absolute;
  bottom: -35px;
  left: 15px;
  top: unset;
}

#step3 .ct3 .icon:nth-child(3) span {
  left: 115%;
  position: absolute;
  top: unset;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

#step4 .ct4,
#step4 .ct4-3 {
  padding: 8px 16px;
  border-radius: 99px;
  background: #c0ddd6;
  width: fit-content;
  opacity: 0;
}

#step4 .ct4-3 {
  background: #bec6ff;
  margin-left: auto;
  margin-top: 50px;
}

#step4 .ct4-2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

#step4 .ct4-2 .icon {
  background-color: #0fa982;
  padding: 2px 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
}

#step4 .ct4-2 .icon.icon-svg,
#step4 .ct4-2 .icon.icon-svg svg {
  padding: 0;
  background-color: transparent;
  transform: translate(0px, 12px) !important;
}

#step4 .ct4-2 .icon.icon-svg2 {
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27px;
}

#step4 .ct4-2 .icon.icon-svg2 svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

#step4 .ct4-4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-top: 24px;
}

#step4 .ct4-4 .icon {
  animation: spin 10s linear infinite;
  transform-origin: center;
}

#step5 .ct01 {
  font-size: 24px;
  font-weight: 500;
}

#step5 .ct01 span {
  color: #ae9edd;
  -webkit-text-stroke: 2px #907dcd;
  font-weight: 500;
  letter-spacing: 3px;
}

#step5 .ct1 {
  font-size: 24px;
  font-weight: 500;
}

#step5 .ct1 span,
#step5 .ct1 strong {
  background: linear-gradient(to right, #004aad, #cb6ce6);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

#step5 .ct1 strong {
  font-size: 44px;
  letter-spacing: 4px;
}

#step5 .ct1 img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(74%) saturate(1000%)
    hue-rotate(263deg) brightness(95%) contrast(91%);
  width: 24px;
  position: relative;
  top: -15px;
}

#step5 .ct2 {
  background:
    radial-gradient(
      ellipse 80% 60% at 95% 5%,
      rgba(180, 240, 255, 0.5) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 70% 80% at 100% 60%,
      rgba(200, 190, 255, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      rgba(245, 243, 255, 1) 0%,
      rgba(250, 248, 255, 1) 100%
    );
  padding: 24px;
  border-radius: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-top: 48px;
  opacity: 0;
}

#step5 .ct2 > .ct2-1 {
  font-size: 22px;
  font-weight: 700;
  color: #0b4d8c;
  position: relative;
  padding-left: 20px;
}

#step5 .ct2 > .ct2-1 span {
  font-size: 88px;
  background: linear-gradient(to right, #004aad, #cb6ce6);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  bottom: -6px;
  left: -40px;
}

#step5 .ct2 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 16px;
}

#step5 .ct2 ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

#step5 .ct3 {
  width: 250px;
  height: 250px;
}

#step5 .ct3 .ct3-box {
  flex: 0 0 auto;
  border: 6px solid #aeb2cf;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  width: calc(50%);
  min-width: 100px;
  text-align: center;
  padding: 2px;
  box-sizing: border-box;
  opacity: 0;
  background: #edf0fa;
}

#step5 .ct3 {
  width: 250px;
  height: 280px;
  position: relative;
  margin: 0 auto;
}

#step5 .ct3 > div {
  transition: all 0.3s ease;
}

#step5 .ct3 .ct3-1 {
  position: absolute;
  bottom: 40px;
  width: 100px;
  left: 27.5px;
}

#step5 .ct3 .ct3-2 {
  position: absolute;
  bottom: 40px;
  width: 100px;
  right: 27.5px;
}

#step5 .ct3 .ct3-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 127.5px;
}

#step5 .ct3 .ct3-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 127.25px;
}

#step5 .ct3 .ct3-1.active {
  z-index: 1;
  border-color: #4876a8;
}

#step5 .ct3 .ct3-2.active {
  z-index: 2;
  border-color: #20d5ff;
}

#step5 .ct3 .ct3-3.active {
  z-index: 3;
  border-color: #6b50bb;
}

#step5 .ct3 .ct3-4.active {
  z-index: 4;
  border-color: #0b4d8c;
}

#step5 .ct4 {
  display: block;
  width: 120px;
  position: absolute;
  bottom: 73px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

#step5 .ct4 img {
  width: 100%;
}

#step5 .ct5 {
  background:
    radial-gradient(
      ellipse 80% 60% at 95% 5%,
      rgba(180, 240, 255, 0.5) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 70% 80% at 100% 60%,
      rgba(200, 190, 255, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      rgba(245, 243, 255, 1) 0%,
      rgba(250, 248, 255, 1) 100%
    );
  padding: 12px;
  border-radius: 20px;
  position: relative;
  width: fit-content;
  font-size: 22px;
  font-weight: 700;
  color: #0b4d8c;
  padding-left: 40px;
  margin-left: 24px;
}

#step5 .ct5 span {
  font-size: 88px;
  background: linear-gradient(to right, #004aad, #cb6ce6);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  bottom: -6px;
  left: -24px;
}

#step5 .ct6 {
  position: absolute;
  bottom: 220px;
  left: 20px;
  font-size: 18px;
}

#step5 .ct7 {
  position: absolute;
  bottom: 160px;
  left: 70px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#step5 .ct7 span {
  font-size: 40px;
  color: #25a0bd;
  text-decoration: underline;
}

#step5 .ct8 {
  position: absolute;
  bottom: 140px;
  left: 28%;
  font-size: 18px;
}

#step5 .ct9 {
  position: absolute;
  bottom: 190px;
  right: 33%;
  font-size: 18px;
}

#step5 .ct10 {
  position: absolute;
  bottom: 130px;
  right: 9%;
  font-size: 40px;
  background: linear-gradient(to right, #004aad, #cb6ce6);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

#step5 .ct11 {
  position: absolute;
  bottom: 100px;
  font-style: italic;
  right: 0;
  font-size: 18px;
}

#step5 {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
}

#step5 .col {
  position: relative;
}

#step5 .col > div:not(.ct3) {
  opacity: 0;
}

#step5 .ct21 {
  position: relative;
  bottom: 5%;
}

#step5 .b-ct21 {
  max-width: 30%;
  position: absolute;
  bottom: -30%;
  left: 0;
}

#step5 .b-ct21 p {
  margin: 0;
  position: absolute;
  line-height: 18px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

#step5 .b-ct21 p:first-of-type {
  bottom: 50%;
  left: 10%;
}

#step5 .b-ct21 p:nth-of-type(2) {
  bottom: 30%;
  left: 10%;
}

#step5 .b-ct21 p:last-of-type {
  bottom: 10%;
  left: 10%;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  background: linear-gradient(to right, rgb(0, 74, 173), rgb(203, 108, 230))
    text;
}

#step5 .b-ct21 p img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.section3 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section3 .ct1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section3 .ct1 img {
  width: 20px;
}

.section3 .ct1 span {
  text-decoration: underline;
}

.section3 .btn {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 16px;
}

.section3 .ct2 {
  text-align: center;
  font-style: italic;
  color: rgba(10, 10, 10, 0.7);
}

.section4 {
  padding-top: 48px;
  padding-bottom: 140px;
}

.section4 h2 {
  margin-bottom: 180px;
}

.section4 h2 span {
  background: linear-gradient(to right, #004aad, #cb6ce6);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.section4 .ct1 {
  font-size: 20px;
  text-align: right;
  margin-top: 30px;
  margin-bottom: 40px;
}

.section4 .ct2 {
  background-color: #d9dfff;
  padding: 24px;
  border-radius: 20px;
}

.section4 .b-content {
  display: flex;
  align-items: center;
  background-color: #edf0fa;
  border-radius: 20px;
  overflow: hidden;
}

.section4 .b-content .b-img {
  width: 40%;
}

.section4 .b-content .b-img img {
  width: 100%;
}

.section4 .b-content .b-text {
  width: 60%;
  padding-left: 16px;
}

.section4 .b-content .b-text h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.section4 .b-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.section4 .b-content ul li {
  position: relative;
  margin: 0 0 20px 0;
  padding-left: 30px;
  font-weight: 500;
  counter-increment: item;
  padding-right: 15px;
}

.section4 .b-content ul li::before {
  content: counter(item);
  position: absolute;
  left: 0px;
  top: 3px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  font-weight: 400;
  background-color: #bec6ef;
  color: #edf0fa;
  z-index: 2;
}

.section4 .b-content ul li::after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #bec6ef;
  position: absolute;
  bottom: -20px;
  left: 10px;
}

.section4 .ct3 {
  position: relative;
}

.section4 .ct3-1 {
  position: relative;
  max-width: 90%;
}

.section4 .ct3-1 .img2 {
  position: absolute;
  top: 15%;
  left: 10%;
  max-width: 80%;
  border-radius: 12px;
  overflow: hidden;
}

.section4 .ct3-2 {
  border: 4px solid #d9dfff;
  background-color: #edf0fa;
  padding: 16px;
  border-radius: 12px;
  width: fit-content;
  position: absolute;
  right: 0;
  top: 65%;
}

.section4 .ct3-2 h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.section4 .ct3-2 h3 span {
  background: linear-gradient(to right, #004aad, #cb6ce6);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section4 .ct3-2 ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.section4 .ct3-2 ul li {
  position: relative;
  margin: 0 0 20px 0;
  padding-left: 30px;
  font-weight: 500;
  counter-increment: item;
  padding-right: 15px;
}

.section4 .ct3-2 ul li::before {
  content: counter(item);
  position: absolute;
  left: 0px;
  top: 3px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  font-weight: 400;
  background: linear-gradient(to right, #004aad, #cb6ce6);
  color: #edf0fa;
  z-index: 2;
}

.section4 .ct3-2 ul li::after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #bec6ef;
  position: absolute;
  bottom: -20px;
  left: 10px;
}

.section4 .ct4 {
  background:
    radial-gradient(
      ellipse 80% 60% at 95% 5%,
      rgba(180, 240, 255, 0.5) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 70% 80% at 100% 60%,
      rgba(200, 190, 255, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      rgba(245, 243, 255, 1) 0%,
      rgba(250, 248, 255, 1) 100%
    );
  padding: 24px;
  width: fit-content;
  border-radius: 20px;
  margin-top: 24px;
  margin-left: 64px;
}

.section4 .ct4 a {
  font-family: "Inter", sans-serif;
  background: linear-gradient(90deg, #8c52ff, #3c6ceb, #5ce1e6);
  font-size: 18px;
  padding: 12px 24px;
  font-weight: 700;
  color: #ffff;
  border-radius: 12px;
  border: 2px solid #fff;
  min-width: 200px;
  display: block;
  text-align: center;
}

.section5 h2 {
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}

.section5 .ct1 {
  background-color: #d9dfff;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 700px;
  margin: 0 auto;
  margin-bottom: 48px;
}

.section5 .ct1-1 {
  background-color: #fff;
  padding: 4px 24px;
  border-radius: 8px;
  display: block;
  width: fit-content;
}

.section5 .ct1-2 {
  display: block;
  width: 6px;
  height: 6px;
  background: linear-gradient(to right, #004aad, #cb6ce6);
  border-radius: 99px;
}

.section5 .ct1-3 {
  background: linear-gradient(to right, #004aad, #cb6ce6);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section5 .ct2 {
  width: 700px;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding: 48px;
}

.section5 .ct2-1 {
  font-size: 40px;
  font-weight: 400;
  position: relative;
}

.section5 .ct2-1 img {
  width: 24px;
  position: relative;
  top: -15px;
}

.section5 .ct2-2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.section5 .ct2-3 {
  margin-bottom: 24px;
}

.section5 .ct2-4 {
  box-shadow: 0 12px 30px rgba(83, 114, 197, 0.16);
  border-radius: 20px;
  overflow: hidden;
}

.section5 .ct2-4 h3 {
  background-image: linear-gradient(
    90deg,
    #2f6be6 0%,
    #4b90f3 48%,
    #a5d9ff 100%
  );
  padding: 16px 32px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}

.section5 .ct5 {
  padding: 20px 32px 32px;
}

.section5 .ct5 p {
  margin: 0;
  margin-bottom: 16px;
}

.section5 .ct5 a {
  background-color: #edf1ff;
  display: block;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
}

.section5 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section6 {
  padding-top: 48px;
  padding-bottom: 64px;
}

.section6 .container {
  max-width: 1000px;
}

.section6 h2 {
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.faq-item:last-child {
  border: 0;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  position: relative;
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.faq-number {
  margin-right: 5px;
  color: #999;
}

.faq-answer {
  display: none;
  color: #666;
  padding: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question svg {
  display: none;
}

.faq-question svg:first-child {
  display: block;
}

.faq-item.active .faq-question svg:first-child {
  display: none;
}

.faq-item.active .faq-question svg:last-child {
  display: block;
}

#header {
  padding-top: 32px;
  padding-bottom: 32px;
}

#header .logo {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

#header .logo img {
  width: 40px;
}

#header .nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

#header .nav ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

#header .header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

#header .btn-login {
  border: 1px solid #c4bfbf;
  font-size: 16px;
  padding: 7px 24px;
  font-weight: 400;
  color: #0a0a0a;
  background: transparent;
  border-radius: 12px;
}

#header .btn-explore {
  border: 0;
  font-size: 16px;
  padding: 8px 24px;
  font-weight: 700;
  color: #ffff;
  background: #000;
  border-radius: 12px;
}

#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .header-left {
  display: flex;
  align-items: center;
  gap: 64px;
}

#footer {
  background-color: #d9dfff;
  padding-top: 48px;
}

#footer .logo {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

#footer .logo img {
  width: 40px;
}

#footer h3 {
  font-size: 20px;
  font-weight: 500;
}

#footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#footer ul li {
  margin-bottom: 12px;
}

#footer .socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

#footer .socials a {
  display: block;
  width: 24px;
  height: 24px;
}

.footer-bottom {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid lab(2.75381% 0 0);
  margin-top: 32px;
}

@media only screen and (max-width: 48em) {
  html,
  body {
    overflow-x: hidden;
  }

  #header {
    padding: 20px 15px;
  }

  #header .header-left .nav,
  #header .header-right {
    display: none;
  }

  #main,
  #footer {
    padding: 0;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .section1 {
    padding-top: 24px;
  }

  .section1 .ct-center {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .section1 .ct-bottom ul {
    margin-bottom: 24px;
  }

  .section1 .box-right {
    padding: 15px;
    font-size: 14px;
  }

  .section1 .box-right .tab {
    font-size: 16px;
  }

  .section2::before,
  .section2::after {
    width: 100%;
    left: 100%;
  }

  .section2 .ct-top h2 {
    font-size: 18px;
  }

  .section2 .b-ul ul li {
    font-size: 18px;
  }

  #step3 {
    padding-top: 48px;
    padding-bottom: 24px;
  }

  #step5 {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    padding-top: 24px;
  }

  #step5 .ct01,
  #step5 .ct1 {
    font-size: 18px;
  }

  #step5 .b-ct21 {
    position: relative;
    bottom: -50px;
    margin-bottom: 30px;
    max-width: 50%;
    left: 50%;
  }

  .section4 h2 {
    margin-bottom: 24px;
    text-align: center;
    font-size: 24px;
  }

  .section4 .ct3-1 {
    max-width: 100%;
  }

  .section4 .ct3-2 {
    position: relative;
    width: 100%;
    margin-top: 24px;
  }

  .section2 {
    min-height: unset;
  }

  #step5 .ct6,
  #step5 .ct7 {
    font-size: 16px;
  }

  #step5 .ct7 {
    left: 20px;
  }

  #step5 .ct8 {
    font-size: 16px;
    left: 90px;
  }

  #step5 .ct9 {
    right: 28%;
  }

  #step5 .ct10 {
    font-size: 20px;
    right: 12%;
    bottom: 160px;
  }

  #step5 .ct11 {
    font-size: 18px;
    width: 120px;
    right: 6%;
  }

  .section5 .ct1 {
    width: 100%;
    flex-wrap: wrap;
    padding: 15px;
    margin-bottom: 24px;
  }

  .section5 .ct2 {
    width: 100%;
    padding: 15px;
  }

  .section4 {
    padding-bottom: 48px;
  }

  .section4 .ct1 {
    margin-bottom: 24px;
  }

  .section5,
  .section6 {
    padding-top: 0;
  }

  #footer {
    padding-top: 20px;
  }

  .footer-bottom {
    flex-wrap: wrap-reverse;
    gap: 20px;
    justify-content: center;
  }
}

/* =========================================================================
 * WordPress theme additions (Stratea)
 * Appended to preserve the original design while supporting WP markup,
 * mobile navigation, sticky/transparent header, blog templates and the
 * Gutenberg block editor.
 * ====================================================================== */

/* ---------- Accessibility ---------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  word-wrap: normal !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Header logo (WP markup) ---------- */
#header .logo {
  color: #000;
}
#header .logo .logo-text,
#footer .logo .logo-text {
  display: inline-block;
}

/* ---------- Mobile menu toggle (hidden on desktop) ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid #c4bfbf;
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-nav-open .menu-toggle .menu-toggle-bar:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav-open .menu-toggle .menu-toggle-bar:nth-child(3) {
  opacity: 0;
}
.mobile-nav-open .menu-toggle .menu-toggle-bar:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile navigation panel ---------- */
.mobile-nav {
  display: none;
  padding: 16px 0 8px;
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav .mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .mobile-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-nav .mobile-menu a {
  display: block;
  padding: 12px 4px;
  color: #0a0a0a;
  font-weight: 500;
}
.mobile-nav .mobile-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* ---------- Sticky / transparent header ---------- */
.has-sticky-header #header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #edf0fa;
  padding-bottom: 24px;
  transition: box-shadow 0.25s ease;
}
.has-sticky-header #header.is-stuck {
  box-shadow: 0 4px 18px rgba(83, 114, 197, 0.12);
}
.has-transparent-header #header {
  background: transparent;
}

/* ---------- Optional hero image ---------- */
.section1 .box-right .hero-image {
  margin-bottom: 24px;
}
.section1 .box-right .hero-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* ---------- Blog / pages shared ---------- */
.blog-wrap,
.single-wrap,
.page-wrap,
.error-404-wrap {
  padding-top: 48px;
  padding-bottom: 64px;
}
.page-header {
  margin-bottom: 32px;
}
.page-title {
  font-size: 34px;
}
.archive-description {
  color: var(--muted-foreground, #737373);
}
.no-results {
  font-size: 18px;
  color: #555;
}

/* ---------- Post grid + cards ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(83, 114, 197, 0.08);
  display: flex;
  flex-direction: column;
}
.blog-card-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9edf8;
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-img--placeholder {
  object-fit: contain;
  padding: 20%;
  opacity: 0.5;
}
.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card-meta {
  font-size: 13px;
  color: #737373;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-card-meta a {
  color: #0b4d8c;
}
.blog-card-title {
  font-size: 20px;
  margin: 0;
  line-height: 1.3;
}
.blog-card-title a {
  color: #0a0a0a;
}
.blog-card-excerpt {
  color: #555;
  font-size: 15px;
}
.blog-card-more {
  margin-top: auto;
  font-weight: 600;
  color: #0b4d8c;
}

/* ---------- Single post ---------- */
.single-wrap,
.page-wrap {
  max-width: 820px;
}
.entry-title {
  font-size: 36px;
  line-height: 1.25;
}
.entry-meta {
  color: #737373;
  font-size: 14px;
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.entry-meta a {
  color: #0b4d8c;
}
.entry-thumbnail {
  margin: 0 0 28px;
}
.entry-thumbnail img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.entry-footer .post-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 28px 0 0;
}
.entry-footer .post-tags li a {
  display: inline-block;
  padding: 4px 12px;
  background: #d9dfff;
  border-radius: 99px;
  font-size: 13px;
  color: #0b4d8c;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.post-navigation a {
  color: #0b4d8c;
  font-weight: 600;
}

.related-posts {
  margin-top: 48px;
}
.related-posts-title {
  font-size: 24px;
  margin-bottom: 20px;
}

/* ---------- Pagination ---------- */
.pagination,
.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  background: #fff;
  color: #0a0a0a;
  font-weight: 600;
}
.pagination .page-numbers.current {
  background: #0b4d8c;
  color: #fff;
}

/* ---------- Search form ---------- */
.search-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
}
.search-form .search-field {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 10px;
  font: inherit;
}
.search-form .search-submit {
  border: 0;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

/* ---------- 404 ---------- */
.error-404 .page-title {
  font-size: 80px;
  line-height: 1;
  background: linear-gradient(to right, #004aad, #cb6ce6);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.error-404 .search-form {
  margin: 24px 0;
}

/* ---------- Footer CTA ---------- */
#footer .footer-cta {
  margin-top: 20px;
}
#footer .footer-cta .btn {
  display: inline-block;
}

/* =========================================================================
 * Gutenberg / block-editor content styles
 * Scoped to .entry-content so the homepage design is untouched.
 * ====================================================================== */
.entry-content {
  font-size: 17px;
  line-height: 1.7;
}
.entry-content > * {
  margin-top: 0;
  margin-bottom: 1.2em;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}
.entry-content h2 { font-size: 28px; }
.entry-content h3 { font-size: 23px; }
.entry-content h4 { font-size: 20px; }
.entry-content a {
  color: #0b4d8c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
}
.entry-content li {
  margin-bottom: 0.4em;
}
.entry-content img {
  height: auto;
  border-radius: 12px;
}
.entry-content figure {
  margin: 1.5em 0;
}
.entry-content figcaption {
  font-size: 14px;
  color: #737373;
  text-align: center;
  margin-top: 8px;
}
.entry-content blockquote {
  margin: 1.5em 0;
  padding: 8px 24px;
  border-left: 4px solid #0b4d8c;
  background: #f2f5fc;
  border-radius: 0 12px 12px 0;
  font-style: italic;
}
.entry-content blockquote p:last-child {
  margin-bottom: 0;
}
.entry-content pre,
.entry-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.entry-content pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 18px 20px;
  border-radius: 12px;
  overflow: auto;
}
.entry-content :not(pre) > code {
  background: #eef1fb;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.9em;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.entry-content th,
.entry-content td {
  border: 1px solid var(--border, #e5e5e5);
  padding: 10px 14px;
  text-align: left;
}
.entry-content th {
  background: #f2f5fc;
}
.entry-content .wp-block-button__link,
.entry-content .wp-element-button {
  background: linear-gradient(90deg, #8c52ff, #3c6ceb, #5ce1e6);
  color: #fff;
  border-radius: 99px;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.entry-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: #0b4d8c;
  border: 1px solid #0b4d8c;
}

/* Wide / full alignment within the constrained content column. */
.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px;
  max-width: calc(100% + 160px);
  width: auto;
}
.entry-content .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: auto;
}
.entry-content .alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}
.entry-content .alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}
.entry-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Mobile overrides ---------- */
@media only screen and (max-width: 48em) {
  .menu-toggle {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav[hidden] {
    display: none;
  }
  .entry-content .alignwide,
  .entry-content .alignfull {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .entry-title {
    font-size: 28px;
  }
}
