/* ===== top_page.css CLEANED & STRUCTURED ===== */

/* --- General Section Spacing --- */

/* --- My Page Section --- */
.mypage-container {
  padding: 30px 10px;
  max-width: 800px;
  margin: auto;
}

.mypage-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.mypage-subtitle {
  text-align: center;
  font-weight: bold;
  color: #e60073;
  background: #D9D9D9;
  padding: 10px;
  margin-bottom: 30px;
  border-radius: 6px;
  font-size: 18px;
}

/* --- Menu Grid Section --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: #fff;
  padding: 20px 10px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 220px;
}

.menu-item img {
  width: 170px;
  height: 170px;
  margin-bottom: 10px;
  border-radius: 10px;
  object-fit: contain;
}

.menu-item p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  margin-bottom: 12px;
  min-height: 3em; /* đảm bảo chiều cao đều nhau */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Header User Section --- */
.header-user {
  position: absolute;
  top: 0;
  right: 8px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  gap: 8px;
  z-index: 100;
  margin-bottom: 8px;
}

.header-user i.fa-user-circle {
  font-size: 22px;
  margin-right: 4px;
}

.header-user .user-name {
  font-weight: bold;
  margin: 0 4px 0 4px;
}

.header-user i.fa-angle-down {
  font-size: 14px;
}

.logout-area {
  display: none;
  position: absolute;
  top: 22px;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.logout-area a {
  display: block;
  color: #e6005a;
  font-weight: bold;
  text-decoration: none;
  padding: 6px 12px;
  transition: background 0.3s;
}

.logout-area a:hover {
  background-color: #ffe9f0;
}

.header-user:hover .logout-area {
  display: block;
}

.header-user-relative-container {
  position: relative;
  height: 50px;
  top: 8px;
}

.header-align-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Session Title Section --- */
.session-title div {
  display: flex;
  align-items: center;
}

.session-title div span {
  margin-right: 5px;
  font-size: 22px;
  color: #D92765;
}

.session-title h2 {
  font-size: 2rem;
}

.session-title a {
  font-size: 14px;
  color: #525263;
}

.session-title a:hover {
  cursor: pointer;
}

/* --- Banner --- */
.top-banner {
  position: relative;
}

.top-banner .title {
  position: absolute;
  bottom: 10%;
  left: 4%;
  width: 60%;
}

.top-banner .title .sub-title {
  font-weight: bold;
  margin-bottom: 3%;
  font-size: clamp(0.4rem, 0.174rem + 1.032vw, 1rem);
}

.top-banner .title h1 {
  margin: 0%;
  font-size: clamp(0.7rem, -0.166rem + 3.957vw, 3rem);
  line-height: clamp(0.4rem, -0.014rem + 1.892vw, 1.5rem);
}

.top-banner .title h1 small {
  font-size: clamp(0.4rem, -0.014rem + 1.892vw, 1.5rem);
}

/* --- Our Client Section --- */
.our-client .our-client-title div span {
  color: #D92765;
}

.our-client .our-client-title h2 {
  font-size: 2rem;
}

.branch-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

@media screen and (min-width: 450px) and (max-width: 768px) {
  .branch-section {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 449px) {
  .branch-section {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Challenges Section --- */
.challenges {
  background: #F2F2F2;
  padding: 10px 0;
}

.challenges-subtitle {
  font-weight: bold;
  font-size: 30px;
  border-bottom: 3px solid #E59EDD;
  display: inline-block;
  padding-bottom: 2px;
}

.challenges-list {
  list-style: disc inside;
}

.challenges-list li {
  font-weight: bold;
}

.challenges-desc {
  font-size: 0.95rem;
  font-weight: bold;
}

.challenges-note {
  text-align: right !important;
  font-size: 0.9rem;
  align-items: center;
  font-weight: bold;
  color: #525263;
}

.challenges-note:hover {
  cursor: pointer;
}

.challenges-arrow {
  font-size: 1.1em;
}

.challenges-bottom-small {
  color: #d92765;
  font-weight: 600;
  font-size: 1.1rem;
}

.challenges-bottom-large {
    font-weight: bold;
    font-size: 30px;
}

.challenges-bottom-underline {
  height: 6px;
  background: #E59EDD;
  width: 50%;
  /* max-width: 500px; */
  margin: 0px auto 0 auto;
  border-radius: 3px;
}

.challenges-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.challenges-center-content > * {
  text-align: left;
  width: 100%;
  max-width: 420px;
}

.challenges-2 {
  padding: 30px 10px;
}

.challenges-2-arrow {
  position: relative;
}

div.text-arrow {
  position: absolute;
  top: 0px;
  left: 0px;
  display: grid;
  grid-template-columns: 12.5% 27.3% 1fr;
  width: 100%;
  height: 100%;
}

div.text-arrow > .text-arrow-1,
div.text-arrow > .text-arrow-2,
div.text-arrow > .text-arrow-3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

div.text-arrow > .text-arrow-1 {
  font-size: clamp(0.4rem, -0.014rem + 1.892vw, 1.5rem);;
  font-weight: 600;
  color: #000;
}

div.text-arrow > .text-arrow-2 {
  font-size: clamp(0.5rem, -0.065rem + 2.581vw, 2rem);
  color: #fff;
  font-weight: 600;
}

div.text-arrow > .text-arrow-3 {
  font-size: clamp(0.8rem, -0.028rem + 3.785vw, 3rem);
  font-weight: 600;
  color: #C6022E;
}

.challenges-2-box {
  display: grid;
  grid-template-columns: 40% 1fr;
  position: relative;
  gap: 3%;
  padding: 0% 3% 0px 6%;
}

.left-box {
  margin-top: -6%;
  position: relative;
}

.left-box-img-1 {
  width: 32%;
  top: 50%;
  left: 15%;
  position: absolute;
  transform: translateY(-50%);
}

.left-box-img-2 {
  position: absolute;
  top: 50%;
  right: 22%;
  width: 15%;
  transform: translateY(-80%);
}

.left-box-img-3 {
  position: absolute;
  top: 50%;
  width: 25%;
  right: 10%;
  transform: translateY(-15%);
}

.right-box {
  margin-top: -2%;
  position: relative;
}

.right-box-img-1 {
  position: absolute;
  top: 17%;
  left: 20%;
  width: 17%;
}

.right-box-img-2 {
  position: absolute;
  right: 21%;
  width: 23%;
  top: 12%;
}

.left-box-text-1 {
  position: absolute;
  width: 60%;
  text-align: center;
  bottom: 13%;
  font-size: clamp(0.3rem, -0.001rem + 1.376vw, 1.1rem);
}

.left-box-text-2 {
  width: 40%;
  position: absolute;
  right: 0%;
  text-align: left;
  font-size: clamp(0.3rem, -0.001rem + 1.376vw, 1.1rem);
  bottom: 13%;
  padding-left: 6%;
}

.right-box-text-1 {
  position: absolute;
  bottom: 17%;
  text-align: center;
  width: 100%;
  color: white;
  font-size: clamp(0.45rem, -0.02rem + 2.151vw, 1.7rem);
}

.challenges-2-title {
  width: 100%;
  text-align: center;
  color: #C6022E;
  font-size: clamp(0.8rem, -0.028rem + 3.785vw, 3rem);
  font-weight: 600;
}

.challenges-2-title > small {
  font-size: clamp(0.5rem, 0.048rem + 2.065vw, 1.7rem);
}

.challenges-2-title > a {
  color: #C6022E;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .challenges-center-content {
    align-items: flex-start;
  }

  .challenges-center-content > * {
    max-width: 100%;
  }

  .challenges-subtitle, .challenges-bottom-large  {
    font-size: 22px;
  }
}

.solution .solution-process {
  display: grid;
  grid-template-columns: 21% 16% 32% 31%;
  padding: 50px 4%;
  align-items: center;
}

.solution .solution-process .regions ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.solution .solution-process .regions ul li {
  width: 100%;
  position: relative;
  background-color: #D9D9D9;
  margin-bottom: 9%;
}

.solution .solution-process .regions ul li:last-child {
  margin-bottom: 0px;
}

.solution .solution-process .regions ul li img.region-icon {
  width: 39%;
  position: absolute;
  top: 50%;
  transform: translateY(-56%);
  left: -20%;
}

.solution .solution-process .regions ul li img.icon-5 {
  width: 25%;
  left: -10%;
}

.solution .solution-process .regions ul li p {
  text-align: center;
  font-size: clamp(0.5rem, 0.011rem + 2.237vw, 1.8rem);
  padding: 1% 0px;
}

.solution .solution-process .regions ul li img.region-map {
  width: 35%;
  position: absolute;
  right: -15%;
  top: 50%;
  transform: translateY(-60%);
}

.solution .solution-process .regions ul li img.map-2,
.solution .solution-process .regions ul li img.map-5 {
  width: 25%;
  right: -13%;
}

.solution .solution-process .regions ul li img.map-3,
.solution .solution-process .regions ul li img.map-4 {
  width: 20%;
  right: -10%;
}

.solution .convert {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 7% 0px 20%;
}

.solution .convert img.convert-icon-1 {
  width: 35%;
}

.solution .convert p {
  font-size: clamp(0.2rem, 0.012rem + 0.86vw, 0.7rem);
  padding-top: 5%;
  font-weight: bold;
}

.solution .sharing {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.solution .sharing img.sharing-bg {
  width: 80%;
}

.solution .sharing .share-center {
  position: absolute;
  text-align: center;
  font-weight: bold;
  font-size: clamp(0.25rem, -0.032rem + 1.29vw, 1rem);
}

.solution .sharing .sharing-items {
  position: absolute;
  width: 100%;
  height: 100%;
}

.solution .sharing .sharing-items .sharing-item {
  display: flex;
  flex-direction: column;
  width: 30%;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.solution .sharing .sharing-items .sharing-item img {
  width: 70%;
  margin-bottom: 6%;
}
.solution .sharing .sharing-items .sharing-item p {
  transform: skew(-20deg);
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.solution .sharing .sharing-items .sharing-item p span {
  display: inline-block;
  transform: skew(20deg);
  padding: 3% 5%;
  color: #fff;
  font-size: clamp(0.2rem, 0.031rem + 0.774vw, 0.65rem);
}
.solution .sharing .sharing-items .item-1 {
  top: 25%;
  left: -5%;
}
.solution .sharing .sharing-items .item-1 p {
  background-color: #30B7D8;
}
.solution .sharing .sharing-items .item-2 {
  top: -8%;
  left: 19%;
}
.solution .sharing .sharing-items .item-2 img {
  width: 60%;
}
.solution .sharing .sharing-items .item-2 p {
  width: 70%;
  background-color: #DC4B5C;
}

.solution .sharing .sharing-items .item-3 {
  top: -11.5%;
  left: 52%;
}
.solution .sharing .sharing-items .item-3 img {
  width: 20%;
}
.solution .sharing .sharing-items .item-3 p {
  width: 80%;
  background-color: #E4659A;
}

.solution .sharing .sharing-items .item-4 {
  top: 28%;
  right: 0%;
}
.solution .sharing .sharing-items .item-4 p {
  background-color: #EF8240;
}

.solution .sharing .sharing-items .item-5 {
  bottom: 10%;
  right: 5%;
}
.solution .sharing .sharing-items .item-5 img {
  width: 30%;
}
.solution .sharing .sharing-items .item-5 p {
  background-color: #33A196;
}

.solution .sharing .sharing-items .item-6 {
  bottom: -5%;
  left: 35%;
}
.solution .sharing .sharing-items .item-6 img {
  width: 40%;
}
.solution .sharing .sharing-items .item-6 p {
  background-color: #A56AA9;
}

.solution .sharing .sharing-items .item-7 {
  bottom: 11%;
  left: 2%;
}
.solution .sharing .sharing-items .item-7 img {
  width: 50%;
}
.solution .sharing .sharing-items .item-7 p {
  background-color: #547CB9;
}

.solution .shiping {
  height: 100%;
  padding-left: 10%;
}

.solution .shiping .shiping-items {
  height: 100%;
  position: relative;
}

.solution .shiping .shiping-items .shiping-item-1 {
  position: absolute;
  top: 25%;
  left: 4%;
  width: 30%;
}

.solution .shiping .shiping-items .shiping-item-2 {
  position: absolute;
  top: 22%;
  left: 19%;
  width: 23%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.solution .shiping .shiping-items .shiping-item-2 img {
  width: 100%;
}

.solution .shiping .shiping-items .shiping-item-2 small {
  position: absolute;
  width: 42%;
  font-size: clamp(0.15rem, 0.018rem + 0.602vw, 0.5rem);
  font-size: 8px;
  text-align: center;
}

.solution .shiping .shiping-items .shiping-item-3 {
  left: 0%;
  position: absolute;
  top: 40%;
  width: 68%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.solution .shiping .shiping-items .shiping-item-3 img {
  width: 100%;
}

.solution .shiping .shiping-items .shiping-item-3 .text-1 {
  position: absolute;
  padding-left: 40%;
  font-size: clamp(0.2rem, -0.101rem + 1.376vw, 1rem);
  color: #fff;
  font-weight: bold;
}

.solution .shiping .shiping-items .shiping-item-3 .text-2 {
  position: absolute;
  bottom: -25%;
  color: #C6022E;
  font-weight: bold;
  font-size: clamp(0.2rem, -0.101rem + 1.376vw, 1rem);
}

.solution .shiping .shiping-items .shiping-item-4 {
  position: absolute;
  bottom: 28%;
  right: -15%;
  width: 43%;
}

.solution .shiping .shiping-items .shiping-item-5 {
  position: absolute;
  bottom: 60%;
  right: -15%;
  width: 20%;
}

.solution .shiping .shiping-items .shiping-item-6 {
  position: absolute;
  bottom: -3%;
  right: 0%;
}

.solution .shiping .shiping-items .shiping-item-6 img {
  width: 100%;
}

.solution .shiping .shiping-items .shiping-item-6 p {
  text-align: center;
  font-size: clamp(0.4rem, -0.014rem + 1.892vw, 1.5rem);
  font-weight: bold;
}

.dipbox-solution {
  position: relative;
}

.dipbox-solution .solution-box {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  padding: 3%;
}

.dipbox-solution .solution-box .box-title,
.dipbox-solution .solution-box .box-bottom {
  font-size: clamp(0.7rem, 0.023rem + 3.097vw, 2.5rem);
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin: 0%;
}

.dipbox-solution .solution-box .box-bottom {
  margin-top: 1%;
}

.dipbox-solution .solution-box .box-container {
  position: relative;
  height: 80%;
  margin-top: clamp(0.7rem, -0.166rem + 3.957vw, 3rem);
}

.dipbox-solution .solution-box .box-content {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  gap: 2%;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 1;
}

.dipbox-solution .solution-box .box {
  width: 100%;
  height: 70.5%;
  background-color: #fff;
  position: absolute;
  bottom: 2%;
  border: 2px solid #000;
  border-radius: clamp(0.333rem, 0.082rem + 1.147vw, 1rem);
}

.dipbox-solution .solution-box .box-content > div .icon-box {
  display: grid;
  grid-template-columns: 15% 1fr 12%;
  gap: 0%;
  padding-left: 3%;
  justify-self: center;
  align-items: center;
  width: 100%;
  background-color: #fff;
  border-radius: clamp(0.267rem, 0.116rem + 0.688vw, 0.667rem);
  height: clamp(1.667rem, 0.337rem + 6.079vw, 5.2rem);
}

.dipbox-solution .solution-box .box-content > div.item-3 .icon-box {
  grid-template-columns: 20% 1fr 12%;
}

.dipbox-solution .solution-box .box-content > div .icon-box > img {
  max-width: 100%;
  max-height: 65px;
}

.dipbox-solution .solution-box .box-content > div .icon-box > p {
  text-align: center;
  color: #C6022E;
  font-size: clamp(0.3rem, 0.037rem + 1.204vw, 1rem);
  line-height: clamp(0.5rem, 0.124rem + 1.72vw, 1.5rem);
  padding: 5% 0%;
}

.dipbox-solution .solution-box .box-content > div.item-2 .icon-box > p,
.dipbox-solution .solution-box .box-content > div.item-3 .icon-box > p {
  font-size: clamp(0.4rem, 0.061rem + 1.548vw, 1.3rem);
  line-height: clamp(0.5rem, 0.124rem + 1.72vw, 1.5rem);
}

.dipbox-solution .solution-box .box-content > div .icon-box > p span {
  font-size: clamp(0.5rem, 0.124rem + 1.72vw, 1.5rem);
}

.dipbox-solution .solution-box .box-content > div .icon-box .icon-box-action {
  position: relative;
  height: 100%;
  width: 100%;
}

.dipbox-solution .solution-box .box-content > div .icon-box .icon-box-action > p {
  padding: 12% 0%;
  background: #D92765;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: clamp(0.267rem, 0.116rem + 0.688vw, 0.667rem);
  position: absolute;
  right: 0%;
  top: 0%;
  font-size: clamp(0.4rem, 0.174rem + 1.032vw, 1rem);
}

.dipbox-solution .solution-box .box-content > div .icon-box .icon-box-action > i {
  position: absolute;
  bottom: 15%;
  font-size: clamp(0.4rem, 0.174rem + 1.032vw, 1rem);
  left: 50%;
  transform: translateX(-50%);
}

.dipbox-solution .solution-box .box-content > div > div.arrow {
  margin-top: 5%;
  text-align: center;
}

.dipbox-solution .solution-box .box-content > div.item-1 div.arrow > img,
.dipbox-solution .solution-box .box-content > div.item-3 div.arrow > img {
  height: clamp(2.333rem, -0.552rem + 13.19vw, 10rem);
}

.dipbox-solution .solution-box .box-content > div.item-2 div.arrow {
  position: relative;
}

.dipbox-solution .solution-box .box-content > div.item-2 div.arrow > img {
  height: clamp(4.667rem, -1.104rem + 26.38vw, 20rem);
}

.dipbox-solution .solution-box .box-content > div.item-2 div.arrow > div {
  width: 80%;
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dipbox-solution .solution-box .box-content > div.item-2 div.arrow > div > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 95%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.6rem, 0.073rem + 2.409vw, 2rem);
  font-weight: bold;
  z-index: -1;
}

.dipbox-solution .solution-box .box-content > div div.img-box {
  text-align: center;
  margin-top: 5%;
}

.dipbox-solution .solution-box .box-content > div div.img-box > img {
  width: 50%;
}

.dipbox-solution .solution-box .box-content > div.item-3 div.img-box > img {
  width: 80%;
}

.dipbox-solution .solution-box .box-content > div div.img-box > p.img-box-title {
  font-size: clamp(0.6rem, 0.073rem + 2.409vw, 2rem);
  font-weight: bold;
}

.dipbox-solution .solution-box .box-content > div div.img-box > p.img-box-content {
  font-size: clamp(0.4rem, 0.174rem + 1.032vw, 1rem);
  font-weight: bold;
  line-height: clamp(0.5rem, 0.199rem + 1.376vw, 1.3rem);
}

/* --- Headline Section --- */
.headline-dots {
  line-height: 0;
}

.headline-share {
  line-height: 1.3em;
}
@media (max-width: 576px) {
  .headline-share {
    line-height: 1.4;
  }
}

/* --- Main Visual Section --- */
.main_visual {
  margin-top: 50px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 16px 0;
}

.main_visual .item {
  padding: 0 10px;
}

.main_visual .item img {
  width: 100%;
}

/* --- Scene Section --- */
.scene-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scene-bar {
  color: #D92765;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
}

.scene-text {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  line-height: 1;
}

/* --- FAQ Section --- */
.faq-btn {
  border: none;
  border-radius: 25px;
  color: #FFFFFF;
  background: #D92765;
  padding: 10px 20px;
  display: block;
  margin: 32px auto 0 auto;
  min-width: 280px;
  max-width: 100%;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s, color 0.2s;
}

.faq-btn img {
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
}

.faq-btn:hover {
  background: #b21d4e;
  color: #fff;
}

/* --- Solution Action Section --- */
.solution-action-row {
  margin-left: 0;
  margin-right: 0;
}

.solution-action-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 200px;
  height: 180px;
  border-radius: 38px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px #0002;
}

.solution-action-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 28px #0003;
}

.solution-action-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.solution-action-content {
  position: relative;
  z-index: 2;
  color: #fff;
  margin-left: 38px;
}

.solution-action-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.solution-action-desc {
  font-size: 1rem;
  opacity: 0.95;
}

.solution-action-arrow {
  position: absolute;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;

  img {
    width: 60px;
  }
}

@media (max-width: 991.98px) {
  .solution-action-card {
    height: 140px;
    border-radius: 22px;
  }

  .solution-action-content {
    margin-left: 18px;
  }

  .solution-action-arrow {
    right: 18px;
  }

  .solution-action-arrow img {
    width: 50px;
  }
}

@media (max-width: 576px) {
  .solution-action-card {
    height: 120px;
    border-radius: 14px;
  }

  .solution-action-content {
    margin-left: 12px;
  }

  .solution-action-title {
    font-size: 1.1rem;
  }

  .solution-action-arrow {
    right: 12px;
  }

  .solution-action-arrow img {
    width: 40px;
  }
}

/* --- Procedure Section --- */
.procedure {
  background: #f8f8f8;
}

.tooltip-inner {
  padding: 0px;
}

.procedure-tooltip {
  padding: 20px;
  width: 230px;
  background: #000000;
  border-radius: 10px;
  text-align: left;
}

.procedure-tooltip ul {
  padding-left: 15px;
}

.procedure-block-1 {
  position: relative;
}

.procedure-block-1 p {
  position: absolute;
  top: 23%;
  left: 31%;
  width: 2%;
  height: 2%;
  background-color: inherit;
}

.billing-row {
  min-height: 320px;
}

.procedure-img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.procedure-label {
  color: #D92765;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

.procedure-title {
  font-size: 38px;
  font-weight: bold;
  color: #444;
}

.procedure-desc {
  font-size: 18px;
  color: #222;
  line-height: 1.9;
}

@media (max-width: 991.98px) {
  .procedure-title {
    font-size: 28px;
  }

  .procedure-label {
    font-size: 16px;
  }

  .procedure-desc {
    font-size: 15px;
  }

  .procedure-img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .procedure-title {
    font-size: 20px;
  }

  .procedure-label {
    font-size: 13px;
  }

  .procedure-desc {
    font-size: 13px;
  }

  .procedure-img {
    max-width: 100%;
  }
}

/* --- Service List Section --- */
.service-list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.service-list > .col-6.col-md-3 {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  flex: 0 0 25%;
  max-width: 25%;
  box-sizing: border-box;
}

@media (max-width: 991.98px) {
  .service-list > .col-6.col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .service-list > .col-6.col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.service-card {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #0001;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  cursor: pointer;
  padding: 18px 10px 18px 10px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.service-card:hover {
  box-shadow: 0 6px 24px #0002;
  transform: translateY(-2px) scale(1.025);
}

.service-img-wrap {
  position: relative;
  width: 100%;
  max-width: 120px;
  min-height: 120px;
  margin: 0 auto;
}

.service-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.25s;
}

.service-img.default {
  opacity: 1;
  z-index: 1;
}

.service-img.hover {
  opacity: 0;
  z-index: 2;
}

.service-card:hover .service-img.default {
  opacity: 0;
}

.service-card:hover .service-img.hover {
  opacity: 1;
}

.service-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
  margin-top: 8px;
}

.service-link {
  font-size: 0.97rem;
  color: #D92765;
  letter-spacing: 0.5px;
  margin-top: auto;
  transition: color 0.2s;
}

.service-card:hover .service-link {
  color: #b21d4e;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .service-card {
    min-height: 210px;
    padding: 12px 4px 14px 4px;
  }

  .service-img-wrap {
    max-width: 80px;
    min-height: 80px;
  }
}

@media (max-width: 576px) {
  .service-card {
    min-height: 140px;
    padding: 8px 2px 10px 2px;
    border-radius: 10px;
  }

  .service-img-wrap {
    max-width: 52px;
    min-height: 52px;
  }

  .service-title {
    font-size: 0.88rem;
  }

  .service-link {
    font-size: 0.8rem;
  }
}

.service-card-group .row {
  margin: 0;
}

.service-card-hoverbox {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.08;
  min-height: 140px;
  background: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px #0001;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.service-title-front, .service-title-back {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.08rem;
  font-weight: bold;
  color: #222;
  margin: 0;
  padding: 12px 14px 0 14px;
  text-align: left;
  z-index: 2;
  width: 100%;
  pointer-events: none;
  transition: color 0.2s;
}

.service-title-back {
  color: #333333;
  z-index: 4;
  pointer-events: none;
}

.service-card-hoverbox:hover .service-title-back {
  color: #fff;
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: opacity 0.2s;
}

.service-icon-wrap img {
  max-width: 160px;
  max-height: 160px;
}

.service-card-hoverbox:hover .service-icon-wrap {
  opacity: 0;
}

.service-link-front {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 0.98rem;
  color: #222;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 0 0 12px 14px;
  background: none;
  border: none;
  z-index: 2;
  text-align: left;
  text-decoration: underline;
  transition: color 0.2s;
}

.service-card-hoverbox:hover .service-link-front {
  color: #fff;
  text-decoration: underline;
}

.service-card-back {
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  color: #fff;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.25s;
}

.service-card-back-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  z-index: 1;
}

.service-card-hoverbox:hover .service-card-back {
  opacity: 1;
}

@media (max-width: 991.98px) {
  .service-title-front,
  .service-title-back {
    font-size: 0.97rem;
    padding: 8px 10px 0 10px;
  }

  .service-icon-wrap {
    width: 38px;
    height: 38px;
  }

  .service-icon-wrap img {
    max-width: 100px;
    max-height: 100px;
  }

  .service-link-front {
    font-size: 0.85rem;
    padding: 0 0 7px 10px;
  }
}

@media (max-width: 576px) {
  .service-title-front,
  .service-title-back {
    font-size: 0.78rem;
    padding: 4px 6px 0 6px;
  }

  .service-link-front {
    font-size: 0.75rem;
    padding: 0 0 4px 6px;
  }

  .service-icon-wrap {
    width: 28px;
    height: 28px;
  }

  .service-icon-wrap img {
    max-height: 100px;
    max-width: 100px;
  }
}

.service-card-group .row > [class^="col-"], .service-card-group .row > [class*=" col-"] {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 18px;
}

@media (max-width: 991.98px) {
  .service-card-group .row > [class^="col-"], .service-card-group .row > [class*=" col-"] {
    margin-bottom: 12px;
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media (max-width: 576px) {
  .service-card-group .row > [class^="col-"], .service-card-group .row > [class*=" col-"] {
    margin-bottom: 8px;
    padding-left: 2px;
    padding-right: 2px;
  }
}

/* ===== PRICE TABLE SECTION ===== */
.price-table-section {
  background: #f8f8f8;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px #0001;
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 340px;
  position: relative;
}

.price-card-header {
  font-size: 1.18rem;
  font-weight: bold;
  border-radius: 8px;
  padding: 7px 0;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.price-card-header.premium {
  background: #0E2841;
  color: #CC9900;
}

.price-card-header.advanced {
  background: #F2CFEE;
  color: #FF3399;
}

.price-card-header.standard {
  background: #D9F2D0;
  color: #3A7B2B;
}

.price-card-header.economy {
  background: #CAEEFB;
  color: #0F9ED5;
}

.price-card-price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.2;
}

.price-card-price.premium {
  color: #CC9900;
}

.price-card-price.advanced {
  color: #FF3399;
}

.price-card-price.standard {
  color: #3A7B2B;
}

.price-card-price.economy {
  color: #0F9ED5;
}

.price-card-unit {
  font-size: 1.1rem;
  margin-left: 2px;
}

.price-card-month {
  font-size: 0.9rem;
  margin-left: 4px;
  color: #888;
}

.price-card-desc {
  font-size: 1.01rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.price-card-list {
  padding-left: 16px;
  margin-bottom: 0;
}

.price-card-list li {
  font-size: 0.98rem;
  margin-bottom: 7px;
  color: #222;
}

.price-card-list .highlight.premium {
  color: #CC9900;
  font-weight: bold;
}

.price-card-list .highlight.advanced {
  color: #FF3399;
  font-weight: bold;
}

.price-card-list .highlight.standard {
  color: #3A7B2B;
  font-weight: bold;
}

.price-card-list .highlight.economy {
  color: #0F9ED5;
  font-weight: bold;
}

.price-table-btn {
  display: inline-flex;
  align-items: center;
  background: #D92765;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 32px;
  padding: 12px 38px;
  box-shadow: 0 2px 10px #0002;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  margin-top: 18px;
}

.price-table-btn img {
  margin-right: 10px;
}

.price-table-btn:hover {
  background: #b21d4e;
  color: #fff;
  text-decoration: none;
}

.pricing-section {
  background: rgb(242, 242, 242);
}

.pricing-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.pricing-items .pricing-item {
  padding: 10px 20px;
  background: #fff;
  border-radius: 20px;
  max-width: 300px;
}

.pricing-items .pricing-item .item-header p {
  text-align: center;
  font-size: 1rem;
  padding: 5px;
  border-radius: 9px;
  font-weight: bold;
}

.pricing-items .pricing-item .item-price p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.pricing-items .pricing-item .item-price p small {
  color: #000;
  font-size: 0.7rem;
  font-weight: normal;
}

.pricing-items .pricing-item .item-content .item-content-title {
  text-align: center;
  font-weight: bold;
}

.pricing-items .pricing-item .item-content ul {
  padding-left: 15px;
}

.pricing-items .pricing-item .item-content ul li {
  font-weight: bold;
}

.pricing-color-item-1 {
  color: rgb(193, 153, 52);
}

.pricing-bgcolor-item-1 {
  background-color: rgb(14, 27, 43);
}

.pricing-color-item-2 {
  color: rgb(232, 71, 149);
}

.pricing-bgcolor-item-2 {
  background-color: rgb(236, 208, 236);
}

.pricing-color-item-3 {
  color: rgb(79,173,91);
}

.pricing-bgcolor-item-3 {
  background-color: rgb(222,241,211);
}

.pricing-color-item-4 {
  color: rgb(72, 156, 208);
}

.pricing-bgcolor-item-4 {
  background-color: rgb(209, 237, 250);
}

@media screen and (min-width: 501px) and (max-width: 1130px) {
  .pricing-items {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-item:nth-child(odd) {
    justify-self: end;
  }
}

@media screen and (max-width: 500px) {
  .pricing-items {
    grid-template-columns: 1fr;
  }

  .pricing-item {
    justify-self: center;
  }
}

@media (max-width: 991.98px) {
  .price-card {
    min-height: 280px;
    padding: 18px 10px 16px 10px;
  }

  .price-card-header {
    font-size: 1.05rem;
  }

  .price-card-price {
    font-size: 1.4rem;
  }

  .price-table-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}

@media (max-width: 576px) {
  .price-card {
    min-height: 0;
    padding: 12px 5px 10px 5px;
  }

  .price-card-header {
    font-size: 0.97rem;
  }

  .price-card-price {
    font-size: 1.1rem;
  }

  .price-table-btn {
    font-size: 0.98rem;
    padding: 8px 8px;
  }
}

.media-item {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 1px 6px #0001;
  transition: box-shadow 0.18s;
}

.media-item > img{
  width: 90%;
  object-fit:contain;
  max-height: 60px;
}

.media-item:hover {
  box-shadow: 0 4px 16px #0002;
}

@media (max-width: 991.98px) {
  .media-item {
    min-height: 70px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .media-item {
    min-height: 48px;
    height: 54px;
  }
}

/* ===== NEWS BLOCK CUSTOM ===== */
.news-block-section {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.news-block-left {
  min-width: 240px;
  max-width: 340px;
}

.news-block-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.news-block-dot {
  color: #e53e78;
  font-size: 1.3rem;
  margin-right: 0.5rem;
}

.news-block-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.05em;
}

.news-block-more {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 1.08rem;
  color: #e53e78;
  font-weight: 500;
  text-decoration: none;
  gap: 0.7em;
}

.news-block-more-btn {
  background: #e53e78;
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  margin-left: 0.2em;
  transition: background 0.16s;
}

.news-block-more-btn:hover {
  background: #b81f56;
}

.news-block-list {
  flex: 1;
}

.news-block-item {
  background: #f3f3f3;
  display: flex;
  align-items: center;
  padding: 1.1em 1.5em;
  border-radius: 2px;
  margin-bottom: 0.5em;
  transition: background 0.14s;
}

.news-block-item:hover {
  background: #e9e9e9;
}

.news-block-date {
  color: #bbb;
  font-size: 1.08rem;
  min-width: 100px;
}

.news-block-title-link {
  color: #222;
  flex: 1;
  text-decoration: none;
  font-size: 1.13rem;
  margin-left: 1.2em;
  margin-right: 1.2em;
}

.news-block-arrow {
  color: #e53e78;
  font-size: 1.2em;
  margin-left: auto;
}

.top-page-highlight-keyword {
  font-size: 46px;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-page-solution-title-item {
  display: flex;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .news-block-section {
    flex-direction: column;
    gap: 18px;
  }

  .news-block-left {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 576px) {
  .news-block-section {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .news-block-title {
    font-size: 1.7rem;
  }

  .news-block-item {
    padding: 0.7em 0.7em;
  }

  .news-block-date {
    min-width: 70px;
    font-size: 0.97rem;
  }

  .news-block-title-link {
    font-size: 1rem;
    margin-left: 0.7em;
    margin-right: 0.7em;
  }
}

/* ==== Risk Modal Custom Style ==== */
.risk-modal-header {
  background: none;
  border-bottom: none;
}

.risk-modal-header .btn-close {
  border-radius: 50%;
  background-color: #BFBFBF;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.risk-modal-body {
  padding: 0.8rem 1.2rem 1.2rem 1.2rem;
}

.risk-modal-section {
  background: #F2F2F2;
  border-radius: 13px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 18px 18px 14px 18px;
  margin-bottom: 18px;
}

.section-none-bg {
  padding: 0 18px 14px 18px;
}

.section-none-bg p {
  font-weight: bold;
}

.section-none-bg p span {
  color: #D92765;
}

.risk-modal-section:last-child {
  margin-bottom: 0;
}

.risk-modal-caption {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.2rem;
}

.risk-modal-title {
  font-size: 18px;
  font-weight: bold;
  color: #D92765;
}

.risk-modal-desc {
  font-size: 0.95rem;
  color: #525263;
  margin-bottom: 0.15rem;
}

.risk-modal-number {
  font-size: 2.1rem;
  font-weight: bold;
  color: #D92765;
  margin-bottom: 0.2rem;
}

.top-page-banner-text-weight {
  font-weight: 700;
}

@media (max-width: 480px) {
  .risk-modal-body {
    padding: 0.5rem 0.2rem 0.8rem 0.2rem;
  }
}

.use-case-label-vertical {
  font-family: inherit;
  font-weight: bold;
  color: #e5e5e5;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  font-size: 80px;
  user-select: none;
  padding: 0;
  margin: 0 auto;
}

.use-case-img {
  max-width: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  margin-left: auto;
  margin-right: auto;
}

.row.row-cols-md-3 > .col {
  display: flex;
  align-items: stretch;
}

.use-case-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px 32px 10px;
  color: #595959;
  .use-case-item-title {
    font-size: 18px;
  }
  ul {
    list-style: none;
    padding-left: 0;
  }
  li {
    display: flex;
    align-items: flex-start;
    margin-left: 55px;
  }
  ul li::before {
    content: "・";
  }
}

.challenges-margin-both-sides {
  margin: 0 32px
}

/* Responsive for USE CASES section */
@media (max-width: 991.98px) {
  .use-case-label-vertical {
    font-size: 48px;
    margin-bottom: 16px;
    writing-mode: vertical-rl;
    letter-spacing: 0.08em;
  }

  .row.ms-5.me-5 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .use-case-label-vertical {
    display: none;
  }

  .row.row-cols-md-3 > .col {
    align-items: center;
  }

  .use-case-item {
    padding-bottom: 16px;
  }
  .challenges-bottom-underline {
    width: 80%;
  }
  .top-page-highlight-keyword {
    font-size: 36px;
  }
  .top-page-solution-title {
    font-size: 20px;
  }
  .solution .shiping .shiping-items .shiping-item-2 small {
    font-size: 6px;
  }

}

@media (max-width: 576px) {
  .row.row-cols-md-3 > .col {
    padding-left: 0;
    padding-right: 0;
  }

  .use-case-item {
    padding: 0 2px 12px 2px;
  }

  .top-page-price-title {
    font-size: 18px !important;
  }
  .top-page-solution-title {
    font-size: 16px;
  }
  .top-page-highlight-keyword {
    font-size: 28px;
    padding-bottom: 0;
  }
  .top-page-solution-title-item-padding {
    padding-bottom: 4px;
  }

}

@media (max-width: 880px) {
  .use-case-img {
    max-width: 180px;
  }
}

.price-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.price-item {
  min-width: 220px;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}

.price-item img {
  width: 100%;
  margin-bottom: 1rem;
}

.top-page-contract-detail-header-item-mark {
  height: 32px;
  width: 32px;
  background: #FF0066;
  border-radius: 50%;
  margin: 0 0 0 16px;
  position: absolute;
  z-index: 100;
  right: -10px;
  top: -10px;
}

.top-page-contract-detail-box {
  position: relative;
}

.note-section {
  display: flex;
  justify-content: center;
}

.note-section .note {
  max-width: 200px;
}

.top-page-price-item-box {
  width: 250px;
}

.top-page-price-item-list {
  margin-left: 24px;
}
.top-page-solution-title {
    display: flex;
    justify-content: center;
    align-items: end;
}

@media screen and (max-width: 500px) {
  .note-section .note {
    max-width: 100px;
  }

  .top-page-solution-title {
    font-size: 14px;
  }
  .top-page-highlight-keyword {
    font-size: 20px;
  }

  .top-page-solution-title-front {
    font-size: 1.6rem !important;
  }

  .top-page-solution-title-item-padding {
    padding-bottom: 2px;
  }
   .solution .shiping .shiping-items .shiping-item-2 small {
    font-size: 4px;
  }

}


@media screen and (max-width: 400px) {

  .top-page-price-title {
    font-size: 16px !important;
  }

 
 
}

@media screen and (max-width: 450px) {

  .top-page-price-title {
    font-size: 16px !important;
  }
  .data__tabs-content__desc {
    font-size: 7px !important;
  }
  
}