/*--------------------------------------------------------------
# guide Page 
--------------------------------------------------------------*/
.guide-top {
  background-image: url(../img/guide/guide-top.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-bottom: 0px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #000000;
  background-color: #ffffff;
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #3b4ef8;
  display: inline-block;
  position: relative;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
}

.hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
}

.hero h1 span {
  color: #3b4ef8;
}

.hero p {
  color: color-mix(in srgb, #ffffff, transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: #1b1a1a;
  background: #3b4ef8;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: #ffffff;
  background: color-mix(in srgb, #3b4ef8, transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #ffffff;
  font-weight: 500;
}

.hero .btn-watch-video i {
  color: #3b4ef8;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #3b4ef8;
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, #3b4ef8, transparent 15%);
}

.hero .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero .animated {
    max-width: 45%;
  }
}

@media (max-width: 991px) {
  .hero .animated {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  .hero .animated {
    max-width: 80%;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3b4ef8;
}

.about .read-more {
  background: #3b4ef8;
  color: #1b1a1a;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, #3b4ef8, transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, #000000, transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item p {
  font-size: 18px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  line-height: 24px;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3b4ef8;
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card {
  background-color: #ffffff;
  color: #1b1a1a;
  border: 1px solid color-mix(in srgb, #505050, transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.why-us .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #3b4ef8;
}

.why-us .card h4 {
  color: color-mix(in srgb, #2d405f, transparent 20%);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card p {
  color: color-mix(in srgb, #000000, transparent 40%);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: #ffffff;
  text-align: center;
  border: 1px solid color-mix(in srgb, #9a01649d, transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #3b4ef8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: #1b1a1a;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: #3b4ef8;
}

.services .service-item:hover h3 {
  color: #3b4ef8;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #3b4ef8;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, #ffffff, transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, #ffffff, transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, #ffffff, transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #3b4ef8;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, #ffffff, transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, #3b4ef8, transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #ffffff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #ffffff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  opacity: 1;
  border: 1px solid #3b4ef8;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3b4ef8;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: #ffffff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.team .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, #ffffff, transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

.team .team-member .social a {
  background: color-mix(in srgb, #ffffff, transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team .team-member .social a i {
  color: color-mix(in srgb, #ffffff, transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.team .team-member .social a:hover {
  background: #3b4ef8;
}

.team .team-member .social a:hover i {
  color: #ffffff;
}

.team .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: #ffffff;
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: #3b4ef8;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, #ffffff, transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, #ffffff, transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, #ffffff, transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, #ffffff, transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, #ffffff, transparent 40%);
  background-color: #ffffff;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, #ffffff, transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Nunito", sans-serif;
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: #3b4ef8;
  border-color: #3b4ef8;
  color: #ffffff;
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: #3b4ef8;
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: #ffffff;
}

.pricing .featured .buy-btn {
  background: #3b4ef8;
  color: #ffffff;
  border-color: #ffffff;
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, #ffffff, transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.guide-faq .faq-container {
  margin-top: 15px;
}

.guide-faq .faq-container .faq-item {
  background-color: color-mix(in srgb, #ffffff, transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.guide-faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.guide-faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.guide-faq .faq-container .faq-item h3 span {
  color: #3b4ef8;
  padding-right: 5px;
}

.guide-faq .faq-container .faq-item h3:hover {
  color: #3b4ef8;
}

.guide-faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.guide-faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.guide-faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: #3b4ef8;
}

.guide-faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.guide-faq .faq-container .faq-item .faq-toggle:hover {
  color: #3b4ef8;
}

.guide-faq .faq-container .faq-active {
  background-color: #3b4ef8;
  transition: 0.3s;
}

.guide-faq .faq-container .faq-active h3,
.guide-faq .faq-container .faq-active h3:hover,
.guide-faq .faq-container .faq-active .faq-toggle,
.guide-faq .faq-container .faq-active .faq-icon,
.guide-faq .faq-container .faq-active .faq-content {
  color: #ffffff;
}

.guide-faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.guide-faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: #3b4ef8;
  background: color-mix(in srgb, #3b4ef8, transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #3b4ef8;
  color: #ffffff;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #ffffff;
  background-color: #ffffff;
  border-color: color-mix(in srgb, #ffffff, transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #3b4ef8;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, #ffffff, transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: #ffffff;
  background: #3b4ef8;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, #3b4ef8, transparent 25%);
}

/*--------------------------------------------------------------
# guide-article-card Section
--------------------------------------------------------------*/

.guide-article-card {
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 26px rgba(20, 35, 60, .06);
  transition: .25s ease
}

.guide-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20, 35, 60, .10)
}

.guide-article-card .guide-thumb {
  aspect-ratio: 12/8;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.guide-article-card .guide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-article-card .guide-placeholder {
  font-size: 58px;
  color: #ff0a78
}

.guide-article-card .guide-body {
  padding: 24px
}

.guide-article-card .guide-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #ff0a78;
  background: #fff0f7;
  border-radius: 999px;
  padding: 6px 11px;
  margin-bottom: 12px
}

.guide-article-card h3 {
  font-size: 21px;
  line-height: 1.55;
  margin-bottom: 10px
}

.guide-article-card p {
  font-size: 16px;
  line-height: 24px;
  color: #667085;
  margin-bottom: 16px
}

.guide-card-section .section-title {
  padding-bottom: 28px
}

.guide-card-section+.guide-card-section {
  padding-top: 20px
}

/*--------------------------------------------------------------
# booking-operation-guide
--------------------------------------------------------------*/

.booking-operation-guide-top {
  background-image: url(../img/guide/booking-operation-guide-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
}

.payment-intro {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.payment-summary {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, .05);
}

.payment-summary .summary-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff8ff;
  color: #0ea5e9;
  font-size: 32px;
}

.payment-summary h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.payment-summary p {
  color: #64748b;
  line-height: 1.9;
  margin: 0;
}

.payment-flow {
  background: #f8fafc;
}

.flow-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  position: relative;
}

.flow-no {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0ea5e9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.flow-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.flow-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.benefit-card {
  height: 100%;
  border-radius: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.benefit-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f9ff;
  color: #0ea5e9;
  font-size: 23px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1f2937;
}

.benefit-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.compare-wrap {
  background: #fff;
}

.compare-table {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid #e5e7eb;
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-cell {
  padding: 18px 20px;
  color: #475569;
  line-height: 1.7;
}

.compare-row.header .compare-cell {
  background: #f8fafc;
  font-weight: 700;
  color: #1f2937;
}

.compare-cell strong {
  color: #1f2937;
}

.security-section {
  background: #f8fafc;
}

.security-box {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.security-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px;
}

.security-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.security-item p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
  font-size: 14px;
}

.attention-box {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 28px;
  background: #fffaf0;
  border: 1px solid #fde68a;
}

.attention-box h3 {
  color: #92400e;
  font-size: 20px;
  font-weight: 700;
}

.attention-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.attention-box li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: #6b7280;
  line-height: 1.75;
}

.attention-box i {
  color: #f59e0b;
  margin-top: 4px;
}

.article-cta {
  background: #0ea5e9;
  color: #fff;
  border-radius: 20px;
  padding: 34px;
  max-width: 950px;
  margin: 0 auto;
}

.article-cta h2 {
  color: #fff;
  margin-bottom: 10px;
}

.article-cta p {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 20px;
}

.article-cta .btn {
  background: #fff;
  color: #0ea5e9;
  border-radius: 50px;
  font-weight: 700;
  padding: 12px 24px;
}

@media(max-width:767px) {
  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row.header {
    display: none;
  }

  .compare-cell {
    border-bottom: 1px solid #eef2f7;
  }

  .compare-cell:last-child {
    border-bottom: 0;
  }

  .security-box {
    grid-template-columns: 1fr;
  }
}

.cancel-intro {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.intro-panel {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 26px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, .05);
}

.intro-icon {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: #fff1f2;
  color: #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.intro-panel h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
}

.intro-panel p {
  margin: 0;
  color: #64748b;
  line-height: 1.9;
}

.cause-section {
  background: #f8fafc;
}

.cause-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 25px;
  position: relative;
}

.cause-card>span {
  position: absolute;
  right: 18px;
  top: 15px;
  font-size: 28px;
  font-weight: 800;
  color: #eef2f7;
}

.cause-card>i {
  font-size: 27px;
  color: #e11d48;
  display: block;
  margin-bottom: 18px;
}

.cause-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.cause-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
}

.prevention-flow {
  background: #fff;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: #dbeafe;
}

.timeline-item {
  display: flex;
  gap: 25px;
  position: relative;
  margin-bottom: 25px;
}

.timeline-marker {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0ea5e9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 1;
}

.timeline-body {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 24px;
  background: #fff;
}

.timeline-body .phase {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  border-radius: 50px;
  padding: 4px 10px;
  margin-bottom: 8px;
}

.timeline-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.timeline-body p {
  margin: 0;
  color: #64748b;
  line-height: 1.8;
}

.measure-section {
  background: #f8fafc;
}

.measure-card {
  height: 100%;
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
}

.measure-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #eff8ff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.measure-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.measure-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.8;
  font-size: 14px;
}

.policy-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, .04);
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.policy-list>div {
  display: flex;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.policy-list i {
  color: #0ea5e9;
}

.balance-section {
  background: #f8fafc;
}

.balance-panel {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 34px;
}

.balance-icon {
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: #eff8ff;
  color: #0ea5e9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}

.small-title {
  color: #0ea5e9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.balance-panel h2 {
  font-size: 27px;
  font-weight: 700;
  margin: 6px 0 12px;
  color: #1f2937;
}

.balance-panel p {
  margin: 0;
  color: #64748b;
  line-height: 1.9;
}

@media(max-width:767px) {
  .intro-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-list {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    gap: 14px;
  }

  .timeline-body {
    padding: 18px;
  }
}

.ota-intro {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.channel-map {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  gap: 18px;
}

.channel-box {
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

.channel-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 15px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
}

.ota-box .channel-icon {
  background: #f1f5f9;
  color: #475569;
}

.own-box .channel-icon {
  background: #e0f2fe;
  color: #0284c7;
}

.channel-box>span {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: .08em;
}

.channel-box h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1f2937;
  margin: 5px 0 8px;
}

.channel-box p {
  color: #64748b;
  margin: 0;
  font-size: 14px;
}

.channel-arrow {
  text-align: center;
  color: #0ea5e9;
  font-size: 28px;
}

.channel-arrow small {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-top: 3px;
}

.why-section {
  background: #f8fafc;
}

.why-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px;
  position: relative;
}

.why-num {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 34px;
  font-weight: 800;
  color: #f1f5f9;
}

.why-card>i {
  font-size: 29px;
  color: #0ea5e9;
  display: block;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1f2937;
}

.why-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.journey-section {
  background: #fff;
}

.journey {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.journey-step {
  flex: 1;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 16px;
  background: #fff;
}

.journey-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: #eff8ff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.journey-step>span {
  font-size: 11px;
  font-weight: 800;
  color: #0ea5e9;
}

.journey-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin: 5px 0 8px;
}

.journey-step p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.journey-line {
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}

.route-section {
  background: #f8fafc;
}

.route-panel {
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
}

.route-panel h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 18px;
}

.route-list>div {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.route-list>div:last-child {
  border-bottom: 0;
}

.route-list i {
  color: #0ea5e9;
  font-size: 20px;
}

.phone-mock {
  max-width: 285px;
  margin: 0 auto;
  border: 8px solid #1e293b;
  border-radius: 36px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .15);
}

.phone-top {
  width: 80px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 10px;
  margin: 2px auto 15px;
}

.phone-screen {
  min-height: 330px;
  border-radius: 22px;
  background: #f8fafc;
  padding: 24px 18px;
}

.phone-screen small {
  color: #94a3b8;
}

.mock-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 14px 0;
}

.mock-line {
  height: 7px;
  background: #e2e8f0;
  border-radius: 10px;
  margin: 9px 0;
}

.mock-line.short {
  width: 65%;
}

.mock-info {
  margin: 28px 0 18px;
  background: #fff;
  border-radius: 10px;
  padding: 13px;
  font-size: 12px;
  color: #64748b;
  border: 1px solid #e5e7eb;
}

.mock-button {
  background: #0ea5e9;
  color: #fff;
  border-radius: 50px;
  padding: 13px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.repeat-section {
  background: #fff;
}

.repeat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.repeat-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 23px;
  background: #fff;
}

.repeat-card i {
  font-size: 27px;
  color: #0ea5e9;
}

.repeat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 14px 0 8px;
}

.repeat-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
}

.balance-table {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
}

.balance-head,
.balance-row {
  display: grid;
  grid-template-columns: .8fr 1.1fr 1.1fr;
}

.balance-head>div {
  background: #eef6fb;
  padding: 17px;
  font-weight: 700;
  color: #1f2937;
}

.balance-row>div {
  padding: 17px;
  border-top: 1px solid #e5e7eb;
  color: #475569;
}

.important-section {
  background: #fff;
}

.important-box {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 25px;
  align-items: center;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 20px;
  padding: 30px;
}

.important-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #fff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.important-box span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #0284c7;
}

.important-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 5px 0 10px;
}

.important-box p {
  margin: 0;
  color: #64748b;
  line-height: 1.85;
}

@media(max-width:991px) {
  .journey {
    flex-wrap: wrap;
    gap: 12px;
  }

  .journey-step {
    flex: 1 1 42%;
  }

  .journey-line {
    display: none;
  }

  .repeat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:767px) {
  .channel-map {
    grid-template-columns: 1fr;
  }

  .channel-arrow {
    transform: rotate(90deg);
  }

  .channel-arrow small {
    transform: rotate(-90deg);
    display: none;
  }

  .journey-step {
    flex-basis: 100%;
  }

  .repeat-grid {
    grid-template-columns: 1fr;
  }

  .balance-head {
    display: none;
  }

  .balance-row {
    grid-template-columns: 1fr;
  }

  .balance-row>div {
    border-top: 1px solid #f1f5f9;
  }

  .important-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.efficiency-intro {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.hub-map {
  position: relative;
  max-width: 760px;
  height: 380px;
  margin: 0 auto;
}

.hub-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #0ea5e9;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(14, 165, 233, .25);
  z-index: 2;
}

.hub-center i {
  font-size: 38px;
  margin-bottom: 8px;
}

.hub-center strong {
  font-size: 20px;
}

.hub-center span {
  font-size: 12px;
  opacity: .85;
}

.hub-item {
  position: absolute;
  width: 150px;
  height: 90px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, .05);
}

.hub-item i {
  color: #0ea5e9;
  font-size: 25px;
}

.hub-item span {
  color: #475569;
  font-weight: 700;
  font-size: 14px;
}

.item-1 {
  left: 4%;
  top: 22%;
}

.item-2 {
  right: 4%;
  top: 22%;
}

.item-3 {
  left: 10%;
  bottom: 8%;
}

.item-4 {
  right: 10%;
  bottom: 8%;
}

.fragment-section {
  background: #f8fafc;
}

.fragment-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 17px;
  padding: 24px;
}

.fragment-card i {
  color: #0ea5e9;
  font-size: 28px;
}

.fragment-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 14px 0 8px;
}

.fragment-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.workflow-section {
  background: #fff;
}

.workflow {
  display: flex;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.workflow-step {
  flex: 1;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 17px;
  padding: 24px 14px;
  background: #fff;
}

.workflow-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 16px;
  background: #eff8ff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.workflow-step>span {
  font-size: 11px;
  font-weight: 800;
  color: #0ea5e9;
}

.workflow-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin: 4px 0 7px;
}

.workflow-step p {
  font-size: 13px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.workflow-arrow {
  width: 45px;
  text-align: center;
  color: #94a3b8;
  font-size: 20px;
}

.management-section {
  background: #f8fafc;
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.management-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 27px;
}

.management-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.management-icon {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  background: #eff8ff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.management-head>span {
  font-size: 32px;
  font-weight: 800;
  color: #f1f5f9;
}

.management-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.management-card p {
  color: #64748b;
  line-height: 1.8;
}

.management-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.management-card li {
  font-size: 13px;
  color: #475569;
}

.management-card li i {
  color: #0ea5e9;
  margin-right: 4px;
}

.mail-section {
  background: #fff;
}

.mail-board {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.3fr;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

.mail-side {
  background: #0ea5e9;
  color: #fff;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mail-icon {
  width: 62px;
  height: 62px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.mail-side h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.mail-side p {
  color: rgba(255, 255, 255, .88);
  line-height: 1.8;
  margin: 0;
}

.mail-content {
  padding: 25px 30px;
  background: #fff;
}

.mail-content>div {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.mail-content>div:last-child {
  border-bottom: 0;
}

.mail-content i {
  color: #0ea5e9;
  font-size: 22px;
}

.mail-content strong,
.mail-content small {
  display: block;
}

.mail-content strong {
  color: #1f2937;
}

.mail-content small {
  color: #64748b;
  margin-top: 2px;
}

.role-section {
  background: #f8fafc;
}

.role-compare {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
}

.role-box {
  background: #fff;
  border: 1px solid #bae6fd;
  border-radius: 18px;
  padding: 28px;
}

.role-box.excel {
  border-color: #d1d5db;
}

.role-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  border-radius: 50px;
  padding: 5px 11px;
  margin-bottom: 10px;
}

.excel .role-label {
  color: #475569;
  background: #f1f5f9;
}

.role-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.role-box ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.role-box li {
  display: flex;
  gap: 8px;
  margin: 9px 0;
  color: #475569;
}

.role-box i {
  color: #0ea5e9;
}

.role-plus {
  text-align: center;
  color: #94a3b8;
  font-size: 28px;
}

.check-section {
  background: #fff;
}

.check-board {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px;
}

.check-board>div {
  display: flex;
  gap: 10px;
  color: #475569;
  padding: 9px 0;
}

.check-board i {
  color: #0ea5e9;
  font-size: 19px;
}

@media(max-width:991px) {
  .workflow {
    flex-wrap: wrap;
    gap: 12px;
  }

  .workflow-step {
    flex: 1 1 40%;
  }

  .workflow-arrow {
    display: none;
  }
}

@media(max-width:767px) {
  .hub-map {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hub-center,
  .hub-item {
    position: static;
    transform: none;
    width: auto;
    height: 110px;
    border-radius: 16px;
  }

  .hub-center {
    grid-column: 1/-1;
    height: 140px;
  }

  .management-grid {
    grid-template-columns: 1fr;
  }

  .mail-board {
    grid-template-columns: 1fr;
  }

  .role-compare {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .role-plus {
    transform: rotate(0deg);
  }

  .check-board {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    flex-basis: 100%;
  }
}

.operation-intro {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.operation-cycle {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.cycle-item {
  flex: 1;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px 14px;
  background: #fff;
}

.cycle-item.active {
  border-color: #7dd3fc;
  box-shadow: 0 10px 30px rgba(14, 165, 233, .10);
}

.cycle-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 16px;
  background: #eff8ff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.cycle-item>span {
  font-size: 11px;
  font-weight: 800;
  color: #0ea5e9;
}

.cycle-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 4px 0 6px;
}

.cycle-item p {
  color: #64748b;
  font-size: 13px;
  margin: 0;
}

.cycle-arrow {
  width: 42px;
  text-align: center;
  color: #94a3b8;
}

.form-section {
  background: #f8fafc;
}

.form-mock {
  max-width: 380px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
}

.form-head {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eef2f7;
}

.form-head i {
  color: #0ea5e9;
  margin-right: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin: 12px 0 6px;
}

.form-label em {
  font-style: normal;
  font-size: 9px;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 4px;
  padding: 2px 5px;
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  border: 1px solid #dbe3ea;
  border-radius: 8px;
  background: #f8fafc;
}

.form-input {
  height: 38px;
}

.form-textarea {
  height: 58px;
}

.form-select {
  padding: 10px;
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
}

.form-button {
  margin-top: 20px;
  background: #0ea5e9;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  padding: 11px;
  font-size: 12px;
  font-weight: 700;
}

.form-points {
  display: grid;
  gap: 13px;
}

.form-point {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 18px;
}

.form-point>span {
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.form-point h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 5px;
}

.form-point p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.before-form {
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
}

.info-card {
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 10px;
  background: #fff;
}

.info-card i {
  font-size: 26px;
  color: #0ea5e9;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 10px 0 6px;
}

.info-card p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.data-section {
  background: #f8fafc;
}

.data-dashboard {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.dashboard-left {
  padding: 32px;
  background: #fff;
}

.dashboard-label {
  font-size: 11px;
  font-weight: 800;
  color: #0284c7;
  background: #e0f2fe;
  border-radius: 50px;
  padding: 5px 10px;
}

.dashboard-left h3 {
  font-size: 23px;
  font-weight: 700;
  color: #1f2937;
  margin: 13px 0 8px;
}

.dashboard-left p {
  color: #64748b;
  line-height: 1.8;
}

.mini-bars {
  margin-top: 24px;
}

.mini-bars>div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.mini-bars span {
  width: 20px;
  font-size: 12px;
  color: #64748b;
}

.mini-bars b {
  display: block;
  height: 9px;
  border-radius: 10px;
  background: #38bdf8;
}

.dashboard-right {
  padding: 24px;
  background: #f8fafc;
  display: grid;
  gap: 12px;
}

.metric {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  padding: 15px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.metric i {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #eff8ff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  color: #1f2937;
  font-size: 14px;
}

.metric span {
  color: #64748b;
  font-size: 11px;
  margin-top: 2px;
}

.improve-section {
  background: #fff;
}

.improve-flow {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.improve-card {
  flex: 1;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 17px;
  padding: 23px 12px;
  position: relative;
}

.improve-no {
  position: absolute;
  right: 12px;
  top: 7px;
  font-size: 25px;
  font-weight: 800;
  color: #f1f5f9;
}

.improve-card>i {
  font-size: 27px;
  color: #0ea5e9;
}

.improve-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin: 10px 0 5px;
}

.improve-card p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.improve-link {
  width: 45px;
  text-align: center;
  color: #94a3b8;
}

.operation-section {
  background: #f8fafc;
}

.operation-board {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

.operation-row {
  display: grid;
  grid-template-columns: 90px 1fr 50px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eef2f7;
}

.operation-row:last-child {
  border-bottom: 0;
}

.op-time {
  display: inline-flex;
  width: 58px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 12px;
  font-weight: 700;
}

.op-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px;
}

.op-body p {
  color: #64748b;
  font-size: 13px;
  margin: 0;
}

.operation-row>i {
  color: #0ea5e9;
  font-size: 24px;
  text-align: center;
}

.final-point {
  background: #fff;
}

.final-panel {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 25px;
  align-items: center;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 20px;
  padding: 31px;
}

.final-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.final-panel span {
  font-size: 11px;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: .1em;
}

.final-panel h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 5px 0 9px;
}

.final-panel p {
  color: #64748b;
  line-height: 1.85;
  margin: 0;
}

@media(max-width:991px) {

  .operation-cycle,
  .improve-flow {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cycle-item,
  .improve-card {
    flex: 1 1 40%;
  }

  .cycle-arrow,
  .improve-link {
    display: none;
  }

  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media(max-width:767px) {

  .cycle-item,
  .improve-card {
    flex-basis: 100%;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .data-dashboard {
    grid-template-columns: 1fr;
  }

  .operation-row {
    grid-template-columns: 70px 1fr;
    gap: 8px;
  }

  .operation-row>i {
    display: none;
  }

  .final-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
# booking-system-comparison.html
--------------------------------------------------------------*/

.booking-system-comparison-top {
  background-image: url(../img/guide/booking-system-comparison-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
}

.guide-detail {
  background: #fff;
}

.guide-detail .article-sidebar {
  position: sticky;
  top: 110px;
}

.guide-detail .service-box {
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.guide-detail .service-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1f2937;
}

.guide-detail .services-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #475569;
  border-bottom: 1px solid #e5e7eb;
}

.guide-detail .services-list a:last-child {
  border-bottom: 0;
}

.guide-detail .services-list a.active {
  color: #0ea5e9;
  font-weight: 700;
}

.guide-detail .services-list i {
  color: #0ea5e9;
}

.guide-detail .article-main h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 48px 0 18px;
  color: #1f2937;
}

.guide-detail .article-main h3 {
  font-size: 23px;
  font-weight: 700;
  margin: 34px 0 14px;
  color: #243041;
}

.guide-detail .article-main p {
  line-height: 1.95;
  color: #475569;
}

.guide-detail .article-main ul {
  margin: 18px 0 24px;
  padding-left: 0;
  list-style: none;
}

.guide-detail .article-main li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.8;
  color: #475569;
}

.guide-detail .article-main li i {
  color: #0ea5e9;
  margin-top: 5px;
}

.guide-detail .lead-box {
  background: #f0f9ff;
  border-left: 4px solid #0ea5e9;
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 34px;
}

.guide-detail .compare-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
}

.guide-detail .compare-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.guide-detail .point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.guide-detail .point-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}

.guide-detail .point-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.guide-detail .point-card p {
  margin: 0;
  font-size: 14px;
}

.guide-detail .article-cta {
  margin-top: 48px;
  background: #0ea5e9;
  color: #fff;
  border-radius: 18px;
  padding: 30px;
}

.guide-detail .article-cta h3 {
  color: #fff;
  margin: 0 0 10px;
}

.guide-detail .article-cta p {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 18px;
}

.guide-detail .article-cta .btn {
  background: #fff;
  color: #0ea5e9;
  border-radius: 50px;
  font-weight: 700;
  padding: 11px 22px;
}

.guide-detail .article-nav {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid #e5e7eb;
}

@media(max-width:991px) {
  .guide-detail .article-sidebar {
    position: static;
  }
}

@media(max-width:767px) {
  .guide-detail .point-grid {
    grid-template-columns: 1fr;
  }

  .guide-detail .article-main h2 {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# booking-system-credit
--------------------------------------------------------------*/

.booking-system-credit-top {
  background-image: url(../img/guide/booking-system-credit-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
}

/*--------------------------------------------------------------
# booking-system-inbound
--------------------------------------------------------------*/

.booking-system-inbound-top {
  background-image: url(../img/guide/booking-system-inbound-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
}

/*--------------------------------------------------------------
# booking-system-introduce
--------------------------------------------------------------*/

.booking-system-introduce-top {
  background-image: url(../img/guide/booking-system-introduce-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
}

/*--------------------------------------------------------------
# cancel-prevention
--------------------------------------------------------------*/

.cancel-prevention-top {
  background-image: url(../img/guide/cancel-prevention-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
}

/*--------------------------------------------------------------
# b
--------------------------------------------------------------*/
.credit-3dsecure-top {
  background-image: url(../img/guide/credit-3dsecure-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
}

/*--------------------------------------------------------------
# b
--------------------------------------------------------------*/

.going-excel-free-top {
  background-image: url(../img/guide/going-excel-free-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
}

.problem-section {
  background: #f8fafc;
}

.problem-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px;
  transition: .25s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.problem-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #eff8ff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.problem-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1f2937;
}

.problem-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.before-after {
  background: #fff;
}

.compare-panel {
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  border: 1px solid #e5e7eb;
}

.compare-panel.before {
  background: #fff7f7;
}

.compare-panel.after {
  background: #f0f9ff;
}

.compare-panel h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.compare-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-panel li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #475569;
  line-height: 1.75;
}

.compare-panel.before i {
  color: #ef4444;
}

.compare-panel.after i {
  color: #0ea5e9;
}

.guide-story .features-item {
  padding: 34px 0;
  border-bottom: 1px solid #eef2f7;
}

.guide-story .features-item:last-child {
  border-bottom: 0;
}

.guide-story .visual-icon {
  width: 118px;
  height: 118px;
  border-radius: 28px;
  background: #eff8ff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.guide-story h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 14px;
}

.guide-story p {
  color: #64748b;
  line-height: 1.9;
}

.migration-section {
  background: #f8fafc;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e5e7eb;
  position: relative;
}

.step-no {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #0ea5e9;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.step-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.check-section .check-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

.check-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-section li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.check-section li:last-child {
  border-bottom: 0;
}

.check-section i {
  color: #0ea5e9;
}

@media(max-width:767px) {
  .guide-story .visual-icon {
    width: 90px;
    height: 90px;
    font-size: 38px;
    margin-bottom: 18px;
  }
}

/*--------------------------------------------------------------
# reduce-ota-reliance
--------------------------------------------------------------*/

.reduce-ota-reliance-top {
  background-image: url(../img/guide/reduce-ota-reliance-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
}

/*--------------------------------------------------------------
# reservation-management-efficiency
--------------------------------------------------------------*/

.reservation-management-efficiency-top {
  background-image: url(../img/guide/reservation-management-efficiency-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
}

/*--------------------------------------------------------------
# b
--------------------------------------------------------------*/