/* ===== SUPO Official Website Styles ===== */
:root {
  --primary: #00A859;
  --primary-dark: #008F4C;
  --primary-light: #00C96B;
  --primary-bg: #E8F8EF;
  --text-dark: #333333;
  --text-body: #666666;
  --text-light: #999999;
  --white: #ffffff;
  --border: #EEEEEE;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 168, 89, 0.15);
  --header-height: 72px;
  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.font24{
	font-size: 24px !important;
}
.font18{
	font-size: 18px !important;
}
.font28{
	font-size: 28px !important;
}
.font14{
	font-size: 14px !important;
}
.font36{
	font-size: 36px !important;
}
/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding-top: env(safe-area-inset-top, 0px);
  background: #FFFFFF;
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
}

.header.header-pending .nav-link,
.header.header-pending .nav-link::after,
.header.header-pending .logo-img {
  transition: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.logo-img-footer {
  height: 56px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  position: relative;
  font-size: 15px;
  color: var(--text-dark);
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width var(--transition), left var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.partner-link {
  font-size: 14px;
  color: var(--text-body);
  transition: color var(--transition);
}

.partner-link:hover { color: var(--primary); }

.hotline {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  white-space: nowrap;
}

.hotline:hover { color: var(--primary-dark); }

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.nav-hotline {
  display: none;
}

/* ===== Hero - Home ===== */
.hero-home {
  padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  background: var(--primary);
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  line-height: 0;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-home-img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.hero-carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-carousel-btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.hero-carousel-prev { left: 24px; }
.hero-carousel-next { right: 24px; }

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-carousel-dot {
  width: 48px;
  height: 3px;
  padding: 0;
  border: none;
  /* border-radius: 50%; */
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}

.hero-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-carousel-dot.is-active {
  width: 48px;
  /* border-radius: 5px; */
  background: var(--white);
}

.hero-carousel.is-single .hero-carousel-btn,
.hero-carousel.is-single .hero-carousel-dots {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.hero-cta-link {
  position: absolute;
  left: 8%;
  bottom: 18%;
  width: 220px;
  height: 52px;
  border-radius: 50px;
  cursor: pointer;
  transition: box-shadow var(--transition);
}

.hero-cta-link:hover {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.hero-cta-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

/* ===== Hero - Sub Pages ===== */
.hero-sub {
  position: relative;
  height: 620px;
  margin-top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  overflow: hidden;
}

.hero-sub-bg {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-position: center;
  transform: scale(1.05);
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-sub::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
}

/* ===== Section Common ===== */
.section {
  padding: 80px 0;
}

.section-gray {
  background: #FAFAFA;
}

.section-about {
  background: #F4FFFA;
}

.section-compact-top {
  padding-top: 0;
}

.section-header {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
  padding: 24px 16px 32px;
}

.section-header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 252px;
  height: 45px;
  aspect-ratio: 756 / 135;
  background: url("../images/titlebgs.png") center / contain no-repeat;
  /* opacity: 0.12; */
  pointer-events: none;
  z-index: 0;
}

.section-header .section-title,
.section-header > p:not(.section-title) {
  position: relative;
  z-index: 1;
}

.section-header .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #00B660;
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-header > p:not(.section-title) {
  font-size: 28px;
  color: var(--text-dark);
  line-height: 1.6;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
}

.section-label {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  padding-bottom: 16px;
  flex-shrink: 0;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.section-label.revealed::after {
  transform: scaleX(1);
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

.two-col::after {
  content: "";
  position: absolute;
  left: 200px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s ease;
}

.two-col.revealed::after,
.two-col-wrapper:has(.revealed) .two-col::after {
  transform: scaleY(1);
}

.two-col-wrapper {
  position: relative;
}

/* ===== About Card (Home) ===== */
.about-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: box-shadow var(--transition);
}

.about-card:hover {
  box-shadow: var(--shadow-hover);
}

.about-card-img {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.about-card-img img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
   
  transition: transform 0.6s ease;
}

.about-card:hover .about-card-img img {
  transform: scale(1.05);
}

.about-card-text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card-text p {
  font-size: 15px;
  color: var(--text-body);
  /* margin-bottom: 16px; */
  text-align: justify;
}

.about-card-text p:last-child { margin-bottom: 0; }

.about-card--home {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px clamp(24px, 8vw, 120px);
      border: 1px solid #A1EAC8;
}

.about-card--home .about-card-img {
  width: 100%;
  max-width: 486px;
  min-height: auto;
  aspect-ratio: 486 / 279;
}

.about-card--home .about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card--home .about-card-text {
  padding: 0;
}

.about-card--home .about-card-text p {
  color: var(--text-dark);
  text-indent: 2em;
  line-height: 2;
}

/* ===== Service Cards Grid ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid #A1EAC8;
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.section-business .container {
  max-width: 1248px;
}

.section-business .service-grid {
  grid-template-columns: repeat(2, 588px);
  justify-content: center;
  gap: 24px;
}

.section-business .service-card {
  position: relative;
  width: 588px;
  height: 200px;
  padding: 0 36px;
  gap: 20px;
  background: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 20px;
  box-sizing: border-box;
}

.section-business .service-card:nth-child(1),
.section-business .service-card:nth-child(2) {
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(360deg, rgba(0, 182, 96, 0.5), rgba(0, 182, 96, 0.2)) border-box;
}

.section-business .service-card:nth-child(3),
.section-business .service-card:nth-child(4) {
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(360deg, rgba(0, 182, 96, 0.2), rgba(0, 182, 96, 0.5)) border-box;
}

.section-business .service-card__divider {
  flex-shrink: 0;
  width: 2px;
  height: 72px;
  background: #00B660;
  align-self: center;
}

.section-business .service-card > * {
  position: relative;
}

.section-business .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 182, 96, 0.12);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 182, 96, 0.12);
}

.service-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.service-card:hover .service-card__icon img {
  transform: scale(1.06);
}

.service-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.service-card .card-title {
  font-family: PingFang SC, PingFang SC;
  font-weight: 600;
  font-size: 26px;
  color: #00B660;
  margin-bottom: 8px;
  line-height: 1.4;
}
.service-card > p{
	font-family: PingFang SC, PingFang SC;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.service-card__body p:not(.card-title),
.service-card > div p:not(.card-title) {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
  text-align: left;
}

.two-col-wrapper.container {
  max-width: 1288px;
}

/* ===== Business Page Layout ===== */
.page-business .section-business-page {
  padding: 60px 0 80px;
}

.page-business .section-label {
  font-size: 28px;
  font-weight: 700;
  color: #00B660;
  padding-top: 4px;
  white-space: nowrap;
}

.page-business .section-label::after {
  width: 100px;
  height: 3px;
  background: #00B660;
}

/* ===== Business Cards (Vertical) ===== */
.business-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.business-card {
  display: grid;
  grid-template-columns: 120px 2px 1fr 148px;
  align-items: center;
  column-gap: 20px;
  width: 100%;
  height: 200px;
  padding: 0 20px 0 100px;
  /* padding-left: 110px; */
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(360deg, rgba(0, 182, 96, 0.5), rgba(0, 182, 96, 0.2)) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: visible;
  transition: transform var(--transition), box-shadow var(--transition);
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 182, 96, 0.12);
}

.business-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
}

.business-card .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.business-card:hover .icon {
  transform: scale(1.06);
}

.business-card__divider {
  width: 2px;
  height: 72px;
  background: #00B660;
  justify-self: center;
}

.business-card__body {
  min-width: 0;
  padding-right: 8px;
}

.business-card__mascot {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  overflow: visible;
}

.business-card .mascot {
  width: auto;
  height: 175px;
  max-width: 148px;
  object-fit: contain;
  object-position: bottom center;
  margin-bottom: 0;
  transition: transform var(--transition);
}

.business-card:hover .mascot {
  transform: scale(1.04) translateY(-4px);
}

.business-card .card-title {
  font-family: PingFang SC, PingFang SC;
  font-weight: 600;
  font-size: 26px;
  color: #00B660;
  text-align: left;
  margin-bottom: 8px;
  line-height: 1.4;
}

.business-card__body p:not(.card-title) {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
  text-align: left;
}

/* ===== Model Cards ===== */
.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.model-card {
	background: #00B660;
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
  border-radius: 16px;
  /* padding: 40px 32px; */
  text-align: center;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0;
  
  /* background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 60%); */
  opacity: 0;
  transition: opacity var(--transition);
}

.model-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 168, 89, 0.35);
}

.model-card:hover::before { opacity: 1; }

.model-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: transform var(--transition);
}

.model-card:hover .icon { transform: scale(1.15); }

.model-card .card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.model-card .divider {
  width: 60px;
  height: 2px;
  background:#FFFFFF;
  margin: 0 auto 16px;
}

.model-card p:not(.card-title) {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.7;
}

/* ===== Model Page Layout ===== */
.page-model .section-model-page {
  padding: 60px 0 80px;
}

.page-model .section-label {
  font-size: 28px;
  font-weight: 700;
  color: #00B660;
  padding-top: 4px;
  white-space: nowrap;
}

.page-model .section-label::after {
  width: 100px;
  height: 3px;
  background: #00B660;
}

.page-model .model-grid {
  grid-template-columns: repeat(2, 460px);
  gap: 20px;
  justify-content: start;
}

.page-model .model-card {
  width: 460px;
  height: 360px;
  background: #00B660;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  box-sizing: border-box;
}

.page-model .model-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
}

.page-model .model-card .card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.page-model .model-card .divider {
  width: 48px;
  height: 2px;
  background: #FFFFFF;
  margin: 0 auto 16px;
}

.page-model .model-card p:not(.card-title) {
  font-size: 16px;
  opacity: 1;
  line-height: 1.8;
  color: #FFFFFF;
}

/* ===== Model Cards Horizontal (Home) ===== */
.model-row {
/*  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.model-row .model-card {
  flex: 1;
  min-width: 0;
  max-width: 282px;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.model-row .model-card .card-title {
  font-size: 17px;
}

.model-row .model-card p:not(.card-title) {
  font-size: 13px;
}

/* ===== Vision Section ===== */
.vision-section {
  /* position: relative; */
  /* padding: 100px 0; */
  height: 405px;
  /* background: linear-gradient(135deg, #17BA6C 0%, #17BA6C 0%); */
  /* overflow: hidden; */
  background-image: url('../images/vision-bg-lighthouse.webp');
  background-size: 100% 100%;
}

.vision-section::before {
 /* content: "";
  position: absolute; */
  /* inset: -20% 0; */
/*  background-image: url('../images/vision-bg-lighthouse.webp');
  background-size: 100% 100%; */
  /* background-position: center; */
  /* opacity: 0.35; */
  /* transform: translateY(var(--parallax-y, 0px)) scale(1.1); */
  /* will-change: transform; */
}

.vision-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.vision-content--home {
  padding-top: 90px;
}

.vision-content .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.vision-tagline {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
  opacity: 0.95;
}

.vision-desc {
  font-size: 15px;
  line-height: 2;
  opacity: 0.85;
  text-align: justify;
  padding-top: 40px;
}

/* ===== Vision Page Content ===== */
.vision-page-content .content-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 32px;
}

.vision-page-content p:not(.content-title) {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 20px;
  text-align: justify;
  line-height: 2;
}

/* ===== Partners ===== */
.partners-banner {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.partners-banner:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.partners-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== Image Interactions ===== */
.img-interactive {
  overflow: hidden;
}

.img-interactive img {
  transition: transform 0.6s ease;
}

.img-interactive:hover img {
  transform: scale(1.05);
}

.about-card-img.img-interactive:hover img {
  transform: scale(1.08);
}

.qr-box.img-interactive:hover img {
  transform: scale(1.06);
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-loaded {
  animation: imgFadeIn 0.5s ease forwards;
}

@keyframes imgFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  /* display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px; */
  display: flex;
   gap: 40px;
   justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.footer-logo .logo-img-footer {
  height: 56px;
}

.footer-contact {
  font-style: normal;
}

.footer-contact p {
  font-size: 14px;
  line-height: 2;
  opacity: 0.9;
}

.footer-contact a,
.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact a:hover,
.footer-bottom a:hover {
  opacity: 1;
}

.footer-qr {
  text-align: center;
}

.qr-box {
  width: 108px;
  height: 108px;
  background: var(--white);
  border-radius: 20px;
  /* margin: 0 auto 8px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 8px; */
  overflow: hidden;
}

.qr-box img {
  border-radius: 4px;
}

.footer-qr p {
  font-size: 12px;
  opacity: 0.8;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.15);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
}

/* ===== About Page Text ===== */
.about-text p {
font-family: PingFang SC, PingFang SC;
font-weight: 400;
font-size: 18px;
color: #333333;
/*    text-indent: 2em;
    line-height: 2; */
  /* line-height: 2; */
}
.about-text>p {
font-family: PingFang SC, PingFang SC;
font-weight: 400;
font-size: 18px;
color: #333333;
    text-indent: 2em;
    line-height: 2;
  /* line-height: 2; */
}


.page-about .about-text > p:last-of-type {
  margin-bottom: 32px;
}

/* ===== About Page Service Cards ===== */
.service-grid--about {
  grid-template-columns: repeat(2, 470px);
  gap: 20px;
  margin-top: 8px;
}

.page-about .service-grid--about .service-card {
  position: relative;
  width: 470px;
  height: 160px;
  padding: 0 30px;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(0, 182, 96, 0.06);
}

.page-about .service-grid--about .service-card:nth-child(1),
.page-about .service-grid--about .service-card:nth-child(2) {
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(360deg, rgba(0, 182, 96, 0.5), rgba(0, 182, 96, 0.2)) border-box;
}

.page-about .service-grid--about .service-card:nth-child(3),
.page-about .service-grid--about .service-card:nth-child(4) {
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(360deg, rgba(0, 182, 96, 0.2), rgba(0, 182, 96, 0.5)) border-box;
}

.page-about .service-grid--about .service-card__divider {
  flex-shrink: 0;
  width: 2px;
  height: 90px;
  background: #00B660;
  align-self: center;
}

.page-about .service-grid--about .service-card__icon {
  width: 96px;
  height: 96px;
}

.page-about .service-grid--about .service-card .card-title {
  font-size: 26px;
  margin-bottom: 6px;
}

.page-about .service-grid--about .service-card__body p:not(.card-title) {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.page-about .service-grid--about .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 182, 96, 0.12);
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  text-align: center !important; 
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

.service-grid .service-card.reveal:nth-child(1) { transition-delay: 0.1s; }
.service-grid .service-card.reveal:nth-child(2) { transition-delay: 0.2s; }
.service-grid .service-card.reveal:nth-child(3) { transition-delay: 0.3s; }
.service-grid .service-card.reveal:nth-child(4) { transition-delay: 0.4s; }

.model-row .model-card.reveal-scale:nth-child(1) { transition-delay: 0.1s; }
.model-row .model-card.reveal-scale:nth-child(2) { transition-delay: 0.2s; }
.model-row .model-card.reveal-scale:nth-child(3) { transition-delay: 0.3s; }
.model-row .model-card.reveal-scale:nth-child(4) { transition-delay: 0.4s; }

.vision-content--home .reveal:nth-child(1) { transition-delay: 0s; }
.vision-content--home .reveal:nth-child(2) { transition-delay: 0.1s; }
.vision-content--home .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ===== Keyframes ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes kenBurns {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
}

.hero-cta.animated { animation: pulse-glow 2.5s ease infinite; }

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(0, 168, 89, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .section-business .service-grid {
    grid-template-columns: 1fr;
    max-width: 588px;
    margin: 0 auto;
  }

  .section-business .service-card {
    width: 100%;
    height: auto;
    min-height: 180px;
    padding: 24px 28px;
  }

  .service-grid--about {
    grid-template-columns: 1fr;
    max-width: 470px;
    margin: 0 auto;
  }

  .page-about .service-grid--about .service-card {
    width: 100%;
  }

  .hero-sub {
    height: 420px;
  }

  .hero-sub-bg {
    background-size: cover;
    background-position: center center;
  }

  .model-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .model-row .model-card {
    max-width: none;
    width: 100%;
    height: auto;
    min-height: 260px;
    padding: 32px 20px;
  }

  .page-model .model-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 940px;
  }

  .page-model .model-card {
    width: 100%;
    height: auto;
    min-height: 320px;
  }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col::after { display: none; }

  .business-list {
    width: 100%;
  }

  .business-card {
    grid-template-columns: 72px 2px 1fr;
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 24px 20px;
    column-gap: 16px;
    border-radius: 16px;
	
    background:
      linear-gradient(#FFFFFF, #FFFFFF) padding-box,
      linear-gradient(360deg, rgba(0, 182, 96, 0.5), rgba(0, 182, 96, 0.2)) border-box;
  }

  .business-card__icon {
    width: 72px;
    height: 72px;
  }

  .business-card__divider {
    height: 56px;
  }

  .business-card__mascot,
  .business-card .mascot { display: none; }

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

  .page-about .service-grid--about .service-card {
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 20px;
    border-radius: 16px;
  }

  .hero-cta-link { left: 5%; bottom: 15%; width: 180px; height: 44px; }
  .hero-carousel { height: 480px; }
  .hero-home-img { height: 480px; }
  .hero-carousel-prev { left: 16px; }
  .hero-carousel-next { right: 16px; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container,
  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    z-index: 999;
    max-height: calc(100vh - var(--header-height) - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  .nav-hotline {
    display: block;
    margin-top: 8px;
    padding: 14px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    border-bottom: none;
  }

  .nav-hotline:active {
    color: var(--primary-dark);
  }

  .menu-toggle { display: flex; }
  .partner-link { display: none; }
  .header-right { display: none; }

  .logo-img {
    height: 38px;
  }

  .hero-carousel {
    height: auto;
    aspect-ratio: 16 / 7;
    min-height: 200px;
    max-height: 420px;
  }

  .hero-home-img {
    height: 100%;
    min-height: 200px;
  }

  .hero-cta-link { left: 5%; bottom: 14%; width: 36%; max-width: 160px; height: 40px; min-height: 32px; }
  .hero-carousel-btn { width: 36px; height: 36px; }
  .hero-carousel-prev { left: 8px; }
  .hero-carousel-next { right: 8px; }
  .hero-carousel-dots { bottom: 12px; gap: 6px; }
  .hero-carousel-dot { width: 28px; height: 3px; }
  .hero-carousel-dot.is-active { width: 28px; }

  .hero-sub {
    height: 240px;
  }

  .hero-sub-bg {
    animation: none;
    transform: none;
  }

  .section-label {
    white-space: normal;
    text-align: center;
    font-size: 24px;
    padding-bottom: 12px;
  }

  .section-label::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }

  .section-label.revealed::after {
    transform: translateX(-50%) scaleX(1);
  }

  .page-business .section-label,
  .page-model .section-label {
    white-space: normal;
  }

  .two-col {
    gap: 24px;
  }

  .about-text p,
  .vision-page-content p:not(.content-title) {
    font-size: 16px;
    line-height: 1.9;
    text-indent: 0;
	 
	
  }


  .vision-page-content .content-title {
    font-size: 22px;
    margin-bottom: 24px;
    line-height: 1.4;
  }

  .about-card,
  .about-card--home { grid-template-columns: 1fr; }
  .about-card--home { gap: 24px; padding: 28px 20px; }
  .about-card--home .about-card-img { max-width: 100%; }
  .about-card--home .about-card-text p { text-indent: 0; font-size: 14px; line-height: 1.9; }

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

  .section-business .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: none;
  }

  .section-business .service-card {
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 24px 20px;
    border-radius: 16px;
    gap: 16px;
  }

  .section-business .service-card:nth-child(1),
  .section-business .service-card:nth-child(2) {
    background:
      linear-gradient(#FFFFFF, #FFFFFF) padding-box,
      linear-gradient(360deg, rgba(0, 182, 96, 0.5), rgba(0, 182, 96, 0.2)) border-box;
  }

  .section-business .service-card:nth-child(3),
  .section-business .service-card:nth-child(4) {
    background:
      linear-gradient(#FFFFFF, #FFFFFF) padding-box,
      linear-gradient(360deg, rgba(0, 182, 96, 0.2), rgba(0, 182, 96, 0.5)) border-box;
  }

  .section-business .service-card__divider {
    height: 56px;
  }

  .section-business .service-card .card-title {
    font-size: 18px;
  }

  .service-card {
    padding: 24px 20px;
    gap: 16px;
  }
  .service-card__icon {
    width: 64px;
    height: 64px;
  }
  .service-card__body .card-title,
  .service-card .card-title { font-size: 18px; }
  .service-card__body p { font-size: 13px; }

  .page-about .service-grid--about .service-card .card-title {
    font-size: 17px;
  }

  .business-card .card-title {
    font-size: 18px;
  }

  .business-card__body p:not(.card-title) {
    font-size: 13px;
  }

  .model-grid { grid-template-columns: 1fr; }
  .page-model .model-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .page-model .model-card {
    min-height: 280px;
  }

  .page-model .model-card .card-title {
    font-size: 20px;
  }

  .page-model .model-card p:not(.card-title) {
    font-size: 14px;
  }

  .model-row {
    grid-template-columns: 1fr;
    gap: 16px;
    flex-direction: column;
  }
  .model-row .model-card {
    min-height: auto;
    max-width: none;
    width: 100%;
    padding: 28px 20px;
  }

  .vision-section {
    height: auto;
    min-height: 0;
    padding: 48px 0;
    background-size: cover;
    background-position: center;
  }

  .vision-content--home {
    padding-top: 0;
  }

  .vision-content .section-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .vision-tagline {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .vision-desc {
    padding-top: 16px;
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
    text-indent: 0;
  }

  .partners-banner {
    padding: 16px;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
    padding-bottom: 32px;
  }

  .footer-contact .font18 {
    font-size: 16px !important;
  }

  .footer-contact .font24 {
    font-size: 22px !important;
  }

  .footer-contact .font14 {
    font-size: 13px !important;
  }

  .footer-bottom {
    padding: 14px 0;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }

  .footer-bottom p {
    font-size: 11px;
    line-height: 1.8;
    word-break: break-word;
  }

  .section { padding: 48px 0; }
  .page-business .section-business-page,
  .page-model .section-model-page {
    padding: 40px 0 48px;
  }

  .section-header { padding: 16px 8px 24px; margin-bottom: 32px; position: relative; }
  .section-header::before {
    width: min(280px, 88vw);
    height: 40px;
  }
  .section-header .section-title { font-size: 26px; }
  .section-header > p:not(.section-title) { font-size: 18px; line-height: 1.5; }

  .back-to-top {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(30px);
  }

  .reveal-left.revealed,
  .reveal-right.revealed {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
	.nav-link::after {
	  content: "";
	  position: absolute;
	  bottom: -4px;
	  left: 50%;
	  width: 0;
	  height: 3px;
	  background: var(--primary);
	  transition: width var(--transition), left var(--transition);
	}
  .hero-carousel {
    aspect-ratio: 16 / 8;
    min-height: 180px;
    max-height: 320px;
  }

  .hero-cta-link { width: 38%; max-width: 140px; height: 36px; bottom: 12%; }
  .hero-carousel-btn { width: 32px; height: 32px; }
  .hero-carousel-dot { width: 20px; }
  .hero-carousel-dot.is-active { width: 20px; }

  .hero-sub { height: 200px; }

  .service-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .service-card__icon {
    width: 56px;
    height: 56px;
  }

  .section-business .service-card {
    padding: 20px 16px;
  }

  .business-card {
    grid-template-columns: 56px 2px 1fr;
    padding: 20px 16px;
    column-gap: 12px;
    min-height: 140px;
	
  }

  .business-card__icon {
    width: 56px;
    height: 56px;
  }

  .business-card__divider {
    height: 48px;
  }

  .vision-content .section-title { font-size: 24px; }
  .vision-tagline { font-size: 18px; }
  .vision-desc { font-size: 13px; }

  .vision-page-content .content-title { font-size: 20px; }

  .model-row .model-card .card-title { font-size: 16px; }
  .model-row .model-card p:not(.card-title) { font-size: 12px; }

  .section-header .section-title { font-size: 22px; }
  .section-header > p:not(.section-title) { font-size: 16px; }

  .section-label { font-size: 22px; }

  .footer-contact .font24 {
    font-size: 20px !important;
  }

  .qr-box {
    width: 96px;
    height: 96px;
  }

  .footer-bottom p {
    font-size: 10px;
  }
}
  .vision-page-content>p{
	  text-indent: 2em;
	      line-height: 2;
		  font-size: 16px !important;
		  margin-bottom: 0 !important;
  }