/* ============================
   NEOSHOP 官網樣式
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

:root {
  --purple-dark:  #6B4DB8;
  --purple-mid:   #8B6FD4;
  --purple-light: #B39DDB;
  --purple-pale:  #EDE7F6;
  --green-line:   #00B900;
  --text-dark:    #2D2D2D;
  --text-mid:     #666;
  --text-light:   #999;
  --bg-features:  #F5F0FF;
  --card-shadow:  0 4px 16px rgba(107, 77, 184, 0.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   HERO 區塊
   ============================== */
.hero {
  background: linear-gradient(105deg, #6E8FD8 0%, #8B72CC 50%, #7B5EC4 100%);
  padding: 80px 24px 100px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* 菱形幾何裝飾 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 90px;
}

.partner-wrap {
  display: inline-block;
  position: relative;
  text-align: right;
}

.partner-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 24px;
  padding: 36px 80px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-bottom: 36px;
}

.partner-number {
  font-size: 5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.partner-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.partner-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-top: 8px;
  text-align: right;
  white-space: nowrap;
}

/* ==============================
   雙版本介紹區塊
   ============================== */
.version-section {
  padding: 64px 24px 48px;
  background: white;
}

/* 上半部：標題文字 + 影片並排 */
.version-top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 32px;
}

.version-left {
  flex: 1;
  padding: 55px 0px 0px 0px;
  text-align: center;
}

.version-tags {
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tag-badge {
  display: inline-block;
  border: 1.5px solid #AAAAAA;
  border-radius: 999px;
  padding: 3px 14px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.tag-badge-no-border {
  border-color: transparent;
}

.version-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.version-title .highlight {
  color: var(--purple-dark);
}

.version-subtitle {
  color: var(--text-mid);
  margin-bottom: 28px;
}

/* 版本按鈕：各佔一半寬度，獨立一行 */
.version-buttons {
  display: flex;
  gap: 0;
  margin-bottom: 80px;
}

.version-btn {
  flex: 1;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 16px;
  overflow: hidden;
}

.version-btn:hover {
  /* hover disabled per feedback */
}

.version-btn img {
  width: 70%;
  display: block;
  margin: 0 auto;
}

.version-right {
  flex: 1.5;
}

.video-placeholder {
  background: #1E1E2E;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  position: relative;
}

.video-placeholder.main-video {
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
  font-size: 1.1rem;
  overflow: hidden;
}

.video-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*.video-placeholder::before {*/
/*  content: '▶';*/
/*  font-size: 2.4rem;*/
/*  color: rgba(255, 255, 255, 0.9);*/
/*  margin-bottom: 8px;*/
/*}*/

.video-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.video-card .video-placeholder.main-video {
  border-radius: 0;
  margin-bottom: 0;
}

.version-guide-title {
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-mid);
  background: #F2F2F2;
  padding: 14px 16px;
}

/* 全寬 CTA 按鈕 */
.cta-evaluate-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.cta-evaluate {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  background: var(--purple-dark) ;
  color: #FFF ;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.cta-evaluate:hover {
  background: var(--purple-dark);
  color: white;
  border-color: var(--purple-dark);
}

/* ==============================
   強大功能介紹
   ============================== */
.features-section {
  background: var(--bg-features);
  padding: 64px 24px;
}

.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 40px;
  color: var(--text-dark);
}

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

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 30px 22px 26px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(107, 77, 184, 0.16);
}

.feature-card img {
  width: 50%;
  object-fit: contain;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--purple-dark);
  line-height: 1.75;
}

/* ==============================
   LINE@ 橫幅
   ============================== */
.line-banner-link {
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
  padding: 20px 0;
  text-align: center;
  background: white;
}

.line-banner-link:hover {
  opacity: 0.9;
}

.line-banner-img {
  display: block;
  max-width: 700px;
  width: 80%;
  margin: 0 auto;
}

/* ==============================
   影音講解
   ============================== */
.tutorials-section {
  padding: 64px 24px;
  background: white;
}

.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  margin-top: -28px;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-thumb {
  background: #1E1B3A;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s;
}

.video-thumb:hover {
  opacity: 0.85;
}

.video-thumb::before {
  content: '▶';
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.video-thumb span {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* ==============================
   插圖 + 號召文字
   ============================== */
.cta-section {
  padding: 60px 24px;
  background: white;
  text-align: center;
}

.cta-illustration {
  max-width: 570px;
  width: 100%;
  margin-bottom: 24px;
}

.cta-text {
  font-size: 1.25rem;
  color: var(--text-dark);
  line-height: 1.9;
}

/* ==============================
   定價區塊
   ============================== */
.pricing-section {
  padding: 60px 24px;
  background: white;
  text-align: center;
}

.pricing-link {
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 20px;
  overflow: hidden;
}

.pricing-link:hover {
  /*transform: translateY(-4px);*/
  /*box-shadow: 0 12px 36px rgba(107, 77, 184, 0.20);*/
}

.pricing-img {
  max-width: 960px;
  width: 100%;
  display: block;
}

/* ==============================
   Footer
   ============================== */
.footer {
  background: linear-gradient(90deg, #5B7FD4 0%, #6B4DB8 100%);
  color: rgba(255, 255, 255, 0.90);
  text-align: center;
  padding: 20px;
  font-size: 0.88rem;
}

/* ==============================
   RWD 響應式（手機）
   ============================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .partner-number {
    font-size: 3rem;
  }

  .version-top {
    flex-direction: column;
    gap: 24px;
  }

  .version-left,
  .version-right {
    width: 100%;
  }

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

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

  .line-float-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .version-buttons {
    flex-direction: column;
  }

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



/* LINE Float Button */
.line-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--green-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.line-float-btn:hover {
    transform: scale(1.1);
    background: #00A000;
}
