/* ── Hero ── */
.lc-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  align-items: flex-start !important;
}
.lc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lc-hero__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  opacity: 0.45;
}
.lc-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,8,16,0.97) 0%,
    rgba(5,8,16,0.88) 35%,
    rgba(5,8,16,0.55) 60%,
    rgba(5,8,16,0.15) 100%
  );
}
.lc-hero__content {
  position: relative;
  z-index: 1;
  text-align: left !important;
  padding: 7rem 4rem 10rem 6rem !important;
  max-width: 720px !important;
  animation: pi-fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1);
}
.lc-hero__content .pi-hero__badge {
  margin: 0 0 1.5rem !important;
}
.lc-hero__content .pi-hero__cta {
  justify-content: flex-start !important;
}
.lc-hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}
.lc-hero__stat {
  text-align: center;
  flex: 1;
}
.lc-hero__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #af1739;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.lc-hero__stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
  line-height: 1.4;
}
.lc-hero__stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .lc-hero__content { padding: 5rem 2rem 8rem !important; }
  .lc-hero__stats { flex-wrap: wrap; gap: 0.75rem; padding: 1rem; }
  .lc-hero__stat { min-width: 40%; }
  .lc-hero__stat-divider { display: none; }
}

/* ── Story Block (圖文並排敘事) ── */
.lc-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.lc-story--reverse {
  grid-template-columns: 1.2fr 1fr;
}
.lc-story--reverse .lc-story__visual {
  order: 2;
}
.lc-story--reverse .lc-story__text {
  order: 1;
}
.lc-story__visual {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #111;
}
.lc-story__visual img {
  width: 100%;
  height: auto;
  display: block;
  padding: 1rem;
  border-radius: 8px;
}
.lc-story__visual--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 0;
  background: rgba(255,255,255,0.06);
}
.lc-story__visual--pair > div {
  background: #111;
  text-align: center;
}
.lc-story__visual--pair img {
  padding: 0.75rem 0.75rem 0.25rem;
}
.lc-story__caption {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 0.25rem 0 0.75rem;
}
.lc-story__text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin: 0.75rem 0 0;
}
.lc-product__badge--solution {
  background: rgba(175,23,57,0.15);
  border-color: rgba(175,23,57,0.3);
  color: #af1739;
}
@media (max-width: 900px) {
  .lc-story,
  .lc-story--reverse {
    grid-template-columns: 1fr;
  }
  .lc-story--reverse .lc-story__visual,
  .lc-story--reverse .lc-story__text {
    order: unset;
  }
}

/* ── Product Section (產品照片 + 優勢) ── */
.lc-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.lc-product--reverse {
  direction: rtl;
}
.lc-product--reverse > * {
  direction: ltr;
}
.lc-product__visual {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.lc-product__visual img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
  padding: 1.5rem;
}
.lc-product__info {
  padding-top: 0.5rem;
}
.lc-product__badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(175,23,57,0.15);
  border: 1px solid rgba(175,23,57,0.3);
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #af1739;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.lc-product__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.lc-product__problem {
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid rgba(255,255,255,0.2);
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
}
.lc-product__problem-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.lc-product__problem p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
.lc-product__solution {
  padding: 1rem 1.25rem;
  background: rgba(175,23,57,0.06);
  border-left: 3px solid #af1739;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
}
.lc-product__solution-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #af1739;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.lc-product__solution p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}
.lc-product__advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.lc-adv {
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.2s;
}
.lc-adv:hover {
  border-color: rgba(175,23,57,0.3);
}
@media (max-width: 900px) {
  .lc-product {
    grid-template-columns: 1fr;
  }
  .lc-product--reverse {
    direction: ltr;
  }
}
@media (max-width: 520px) {
  .lc-product__advantages {
    grid-template-columns: 1fr;
  }
}

/* ── Docs Grid ── */
.lc-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.lc-doc-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.025);
  text-decoration: none;
  transition: background 0.2s;
}
.lc-doc-card:hover {
  background: rgba(175,23,57,0.06);
}
.lc-doc-card__content { flex: 1; }
.lc-doc-card__content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.3rem;
}
.lc-doc-card__content p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.lc-doc-card__arrow {
  color: rgba(175,23,57,0.6);
  font-size: 1.2rem;
  flex-shrink: 0;
  font-weight: 300;
}
@media (max-width: 768px) {
  .lc-docs-grid { grid-template-columns: 1fr; }
}
