@charset "UTF-8";

.btn_a a {
  background-color: #03406B;
}
/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  padding-top: 50px;
  background: #F8F8F8;
  overflow: visible;
  height: 500px;
}

.hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(19, 152, 227, 0.08);
}

.hero__bg-circle--large {
  width: 730px;
  height: 730px;
  top: 178px;
  right: calc(50% - 730px + 80px);
}

.hero__bg-circle--bottom {
  width: 6000px;
  height: 6000px;
  top: 736px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 1;
}

.hero__container {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero__content {
  flex-shrink: 0;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  text-align: left;
  margin-bottom: 0px !important;
}

.hero__title-sub {
  font-size: clamp(18px, 1.46vw + 11px, 32px);
  font-weight: 700;
  color: #323232;
  line-height: 1.4;
  letter-spacing: 1.6px;
}

.hero__title-sub .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.hero__title-main {
  font-size: clamp(26px, 2.08vw + 16px, 46px);
  font-weight: 700;
  color: #1398e3;
  line-height: 1.4;
  letter-spacing: 1.6px;
  margin-bottom: 20px;
}

.hero__title-main .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #1398e3;
}

.hero__desc {
  font-size: clamp(13px, 0.3vw + 12px, 16px);
  font-weight: 600;
  color: #323232 !important;
  line-height: 1.6;
  margin-bottom: 20px !important;
  text-align: left;
}

.hero__desc small {
  font-size: 12px;
}

.hero__desc .sp-only {
  display: block;
}

/* Stats shields */
.hero__stats {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  padding-top: 10px;
}

.hero__stats img {
  height: clamp(40px, 2.08vw + 30px, 60px);
  width: auto;
}

/* Hero CTA buttons */
.hero__cta {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 236px;
  height: 66px;
  border-radius: 33px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  transition: opacity 0.3s, transform 0.3s;
}

.hero__btn:hover {
  transform: translateY(-2px);
}

.hero__btn--primary {
  background: #03406b;
  color: #fff;
}

.hero__btn--secondary {
  background: #fff;
  color: #03406b;
  border: 2px solid #03406b;
}

/* Hero image */
.hero__image {
  position: absolute;
  left: 68%;
  top: 85%;
  transform: translate(-50%, -50%);
  width: 740px;
  z-index: 1;
}

.hero__image img {
  width: 100%;
  height: auto;
}

/* ========================================
   Logo Loop Section
   ======================================== */
.logo-loop {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 50px 0 20px !important;
  background-image:   url("../img/logo_bg_lower.png"),url("../img/logo_bg_upper.png");
  background-repeat: no-repeat,no-repeat;
  background-origin: border-box,border-box;
  background-position: bottom center,-50px 10px;
  background-size: contain,186px;
}

.logo-loop_container {
  padding: 0px 20px;
} 

.logo-loop__inner {
  background: #fff;
  border-radius: 10px;
  padding: 10px 0 0px;
  overflow: hidden;
}

.logo-loop__title {
  text-align: center;
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 500;
  color: #323232;
  letter-spacing: 1.6px;
}

.logo-loop__title .num {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #1398e3;
}

.logo-loop__track {
  overflow: hidden;
  width: 100%;
}

.logo-loop__list {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}

.logo-loop__item {
  flex-shrink: 0;
  height: 32px;
  opacity: 0.6;
}

.logo-loop__item img {
  height: 100%;
  width: auto;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   Case Study Section
   ======================================== */
.casestudy {
  background: #1398e3 !important;
  padding: 30px 0 60px;
  position: relative;
  z-index: 2;
}

.casestudy h2,
.casestudy h2 span {
  color: #fff;
}

.casestudy .section-title {
  color: #fff;
  margin-bottom: 0;
}

.casestudy__subtitle {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.6px;
  margin-bottom: 16px;
}


/* ========================================
   What Section
   ======================================== */
.what {
  background: #f8f8f8;
  padding: 36px 0;
}

.what .section-title {
  color: #323232;
  margin-bottom: 15px;
}

.what__desc {
  text-align: center;
  font-size: 18px;
  color: #323232;
  line-height: 1.75;
  letter-spacing: 1.6px;
  margin-bottom: 15px;
}

.what__desc strong {
  font-weight: 700;
}

.what__image {
  max-width: 944px;
  margin: 0 auto 17px;
}

.what__image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.what__btn {
  text-align: center;
  padding-top: 17px;
}

/* ========================================
   Function Section
   ======================================== */
.function {
  background: #1398e3;
  padding: 60px 0;
}

.function .section-title {
  color: #fff;
  margin-bottom: 15px;
  border-bottom: none;
}

.function__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
  padding-top: 17px;
}

.func-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 0 10px 30px;
}

.func-card__header {
  background: #2d5aa8;
  padding: 8px 20px;
  border-radius: 0 0 10px 10px;
  margin: 0 20px;
}

.func-card__header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.6px;
  line-height: 35px;
}

.func-card__image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.func-card__image img {
  max-height: 180px;
  width: auto;
}

.func-card__desc {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  letter-spacing: 1.6px;
  padding: 0 20px;
  text-align: left;
}

/* ========================================
   Responsive: Tablet (1024px and below)
   ======================================== */
@media (max-width: 1024px) {
  /* Header */
  .header__nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav-item {
    height: auto;
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .header__btn-contact,
  .header__btn-trial {
    width: 100%;
    margin-top: 10px;
    border-radius: 28px;
    height: 46px;
  }

  .header__btn-trial {
    margin-top: 0;
  }

  .header__menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    height: 550px;
  }

  .hero__container {
    padding: 0 40px;
  }

  .hero__content {
    max-width: 420px;
  }

  .hero__image {
    left: 78%;
    top: 65%;
    width: 640px;
  }

}

/* ========================================
   Responsive: Mobile (768px and below)
   ======================================== */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  /* Hero */
  .hero {
    height: auto;
  }

  .hero__container {
    flex-direction: column;
    align-items: center;
    padding: 25px 20px 260px;
    height: auto;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__image {
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
  }

  .hero__title-sub {
    font-size: 26px;
  }

  .hero__title-main {
    font-size: 38px;
  }

  .hero__desc {
    font-size: 15px;
  }

  .hero__stats {
    gap: 10px;
  }

  .hero__stats img {
    height: 56px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__btn {
    width: 100%;
    max-width: 300px;
    height: 56px;
    font-size: 15px;
  }

  .hero__image {
    width: 500px;
  }

  /* Logo Loop */
  .logo-loop__title {
    font-size: 14px;
  }

  .logo-loop__title .num {
    font-size: 20px;
  }

  /* What Section */
  .what {
    padding: 30px 0;
  }

  .what__desc {
    font-size: 15px;
    padding: 0 20px;
  }

  .what__image {
    padding: 0 20px;
  }

  /* Function */
  .function {
    padding: 40px 0;
  }

  .function__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .func-card__desc {
    font-size: 14px;
  }

}

/* ========================================
   Responsive: Small Mobile (480px and below)
   ======================================== */
@media (max-width: 480px) {
  .wrap {
  padding: 0 20px;
}
  .hero {
  padding-top: 0px;
}
  .hero__stats {
    flex-wrap: wrap;
  }

  .hero h1 {
  text-align: center;
}

  .hero__image {
    width: 400px;
  }

  .hero__title-sub {
    font-size: 0.5em;
  }

  .hero__title-main {
    font-size: 0.9em;
  }

  .hero p {
    font-size: 1em;
  }

  .hero__desc .sp-only {
    display: none;
  }
  
  .hero__stats {
    justify-content: center;
  }

  .logo-loop {
  padding: 50px 0 10px !important;
  background-image:   url("../img/logo_bg_lower_sp.png"),url("../img/logo_bg_upper.png");
  background-repeat: no-repeat,no-repeat;
  background-origin: border-box,border-box;
  background-position: bottom center, left -30px bottom 20px;
  background-size: contain,120px;
  }

  .logo-loop_container{
    padding: 0px 10px;
  }

  .section-title {
    font-size: 20px;
  }

  .btn-primary {
    min-width: 200px;
    font-size: 14px;
  }
}
