/* 自架字體 - Noto Sans TC */
@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/noto-sans-tc-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/noto-sans-tc-700.woff2') format('woff2');
}

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

:root {
  --primary-red: #fd373b;
  --dark-gray: #1a1a1a;
  --medium-gray: #333333;
  --light-gray: #666666;
  --border-gray: #e5e5e5;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;

  /* ===== 字級規範 (Type Scale) =====
   * 電腦版 (>768px)  最小 16px
   * 平板版 (≤768px)  最小 14px
   * 手機版 (≤480px)  最小 13px
   * 小螢幕 (≤360px)  最小 13px
   * 例外：比對文件模擬區 (.doc-*) 不受限
   * ================================= */
  --fs-hero:       48px;
  --fs-h1:         36px;
  --fs-h2:         28px;
  --fs-h3:         20px;
  --fs-subtitle:   18px;
  --fs-body:       16px;
  --fs-small:      16px;   /* 電腦版最小 */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

#header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
}

.logo-text-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}

.logo-icon {
  font-size: 24px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-red);
}

.nav-cta-btn {
  background: var(--primary-red) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta-btn:hover {
  background: #b91c1c !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hero-section {
  padding: 140px 0 80px;
  margin-top: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}


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

.hero-tagline {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 42px;
  font-weight: 900;
  color: white;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-logo {
  height: 104px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
  vertical-align: middle;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Noto Sans TC', sans-serif;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  border: 2px solid white;
}

.btn-primary:hover {
  background: #e02f33;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 55, 59, 0.3);
  border-color: white;
}

.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-checkgpt {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 40px;
}

.btn-checkgpt-title {
  font-size: 16px;
  font-weight: 700;
}

.btn-checkgpt-sub {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.75;
}

.btn-checkgpt:hover .btn-checkgpt-sub {
  opacity: 1;
}

section {
  padding: 50px 0;
}

/* Scroll Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fd373b, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-title .icon {
  font-size: 36px;
  -webkit-text-fill-color: initial;
  background: none;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Compare Section */
.compare-section {
  background: var(--bg-light);
  padding: 60px 0 80px;
  overflow: hidden;
}

.compare-wrapper {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.compare-before,
.compare-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.compare-before {
  z-index: 1;
}

.compare-after {
  z-index: 2;
  clip-path: inset(0 100% 0 0);
}

.compare-doc {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.doc-header {
  background: #e8e8e8;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.doc-header-blue {
  background: #2563eb;
}

.doc-header-blue .doc-title-bar {
  color: #ffffff;
}

.doc-dots {
  display: flex;
  gap: 6px;
}

.doc-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.doc-dots span:nth-child(1) { background: #ff5f57; }
.doc-dots span:nth-child(2) { background: #ffbd2e; }
.doc-dots span:nth-child(3) { background: #28c840; }

.doc-title-bar {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.doc-body {
  flex: 1;
  background: #ffffff;
  padding: 30px 40px;
  overflow: hidden;
}

.doc-body-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-primary);
}

.doc-text-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.doc-text {
  margin-bottom: 12px;
  font-size: 13px;
  color: #333;
}

.mark-red {
  background: rgba(253, 55, 59, 0.2);
  color: #c0392b;
  border-bottom: 2px solid #fd373b;
}

.mark-orange {
  background: rgba(249, 115, 22, 0.15);
  color: #d35400;
  border-bottom: 2px solid #f97316;
}

.mark-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border-bottom: 2px solid #3b82f6;
}

.doc-color-legend {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-secondary);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot-red { background: #fd373b; }
.legend-dot-orange { background: #f97316; }
.legend-dot-blue { background: #3b82f6; }
.legend-dot-black { background: #333; }

.doc-info-row {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.doc-info-label {
  font-weight: 600;
  color: var(--text-primary);
}

.doc-report-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gray);
}

.doc-report-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.doc-score-circle {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(253, 55, 59, 0.3));
}

.doc-score-circle svg {
  width: 100%;
  height: 100%;
}

.doc-score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 900;
  color: #fd373b;
}

.doc-score-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.doc-score-label {
  font-size: 14px;
  font-weight: 700;
  color: #fd373b;
  background: rgba(253, 55, 59, 0.1);
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 3px;
  pointer-events: none;
}

.compare-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.compare-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 55, 59, 0.15) 0%, rgba(249, 115, 22, 0.08) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.compare-labels {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.compare-label {
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .compare-wrapper {
    aspect-ratio: 4 / 5;
    margin: 30px 20px 0;
  }

  .doc-body {
    padding: 16px;
  }

  .doc-text {
    font-size: 11px;
    line-height: 1.7;
  }

  .doc-text-title {
    font-size: 13px;
  }

  .doc-color-legend {
    gap: 8px;
  }

  .legend-item {
    font-size: 10px;
  }

  .doc-score-circle {
    width: 60px;
    height: 60px;
  }

  .doc-score-text {
    font-size: 14px;
  }

  .compare-labels {
    top: 40px;
  }

  .compare-label {
    font-size: 14px;
    padding: 4px 12px;
  }
}

/* Stats Section */
.stats-section {
  background: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  font-size: 40px;
  color: var(--primary-red);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.4;
  white-space: nowrap;
}

.feature-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.target-audience-section {
  background: linear-gradient(135deg, #fd373b 0%, #ff6b35 100%);
  position: relative;
  overflow: hidden;
}

/* 深色區塊浮動漸層光球 */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.floating-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(253, 55, 59, 0.12) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.floating-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  bottom: -15%;
  left: -8%;
  animation: orbFloat2 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(1.1); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(0.9); }
  50% { transform: translate(-30px, -30px) scale(1.1); }
}

.floating-orb-light-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  top: -25%;
  right: -10%;
  animation: orbFloat1 14s ease-in-out infinite;
}

.floating-orb-light-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  bottom: -20%;
  left: -8%;
  animation: orbFloat2 17s ease-in-out infinite;
}

.target-audience-section .section-title {
  -webkit-text-fill-color: white;
  background: none;
}

.target-audience-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.audience-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.audience-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid var(--primary-red);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.audience-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.audience-list {
  list-style: none;
  text-align: left;
  margin-top: 10px;
}

.audience-list li {
  padding: 4px 0;
  font-size: 16px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 18px;
}

.audience-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
.video-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 55, 59, 0.08) 0%, rgba(249, 115, 22, 0.04) 50%, transparent 70%);
  top: -150px;
  left: -150px;
  z-index: 0;
}

.video-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, rgba(253, 55, 59, 0.03) 50%, transparent 70%);
  bottom: -200px;
  right: -200px;
  z-index: 0;
}

@keyframes backgroundMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(50px, 50px) rotate(360deg);
  }
}

@keyframes floatCircle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(-30px, 20px) scale(1.1);
    opacity: 0.2;
  }
  50% {
    transform: translate(20px, -30px) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translate(-20px, -20px) scale(1.05);
    opacity: 0.25;
  }
}

.video-section .container {
  position: relative;
  z-index: 1;
}

.animated-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(253, 55, 59, 0.02);
  border: 1px solid rgba(253, 55, 59, 0.05);
  opacity: 0.6;
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  right: 10%;
  animation: float1 35s ease-in-out infinite;
}

.circle-2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 8%;
  animation: float2 40s ease-in-out infinite;
}

.circle-3 {
  display: none; /* Reduced number of circles */
}

.circle-4 {
  display: none; /* Reduced number of circles */
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(15px, -10px) scale(1.05);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-20px, -15px) rotate(90deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.05;
  }
  50% {
    transform: translate(50px, -30px) scale(1.2);
    opacity: 0.1;
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-30px, 20px);
  }
  50% {
    transform: translate(20px, 40px);
  }
  75% {
    transform: translate(40px, -20px);
  }
}

.video-preview {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-preview:hover {
  transform: scale(1.02);
}

.video-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  transition: all 0.3s ease;
}

.video-preview:hover .play-button {
  background: var(--primary-red);
  color: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  width: 40px;
  height: 40px;
  margin-left: 5px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.video-modal-content {
  background: transparent;
  padding: 0;
  max-width: 1400px;
  width: 90%;
  max-height: 90vh;
}

.video-modal-content .modal-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  z-index: 1001;
}

.video-modal .video-wrapper {
  margin: 0;
  max-width: 100%;
}

.video-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.highlight-item {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.highlight-icon {
  font-size: 28px;
  color: var(--primary-red);
  flex-shrink: 0;
}

.highlight-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

/* Screenshots Section */
.screenshots-section {
  background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

/* 科技感線條裝飾 */
.tech-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.tech-line {
  position: absolute;
  background: linear-gradient(90deg, transparent 0%, rgba(253, 55, 59, 0.4) 30%, rgba(255, 107, 53, 0.3) 70%, transparent 100%);
  height: 2px;
  box-shadow: 0 0 8px rgba(253, 55, 59, 0.2);
}

.tech-line:nth-child(1) {
  top: 15%;
  left: -10%;
  width: 60%;
  animation: techLineSlide1 8s ease-in-out infinite;
}

.tech-line:nth-child(2) {
  top: 40%;
  right: -10%;
  width: 50%;
  left: auto;
  animation: techLineSlide2 10s ease-in-out infinite;
}

.tech-line:nth-child(3) {
  top: 65%;
  left: -5%;
  width: 70%;
  animation: techLineSlide1 12s ease-in-out infinite reverse;
}

.tech-line:nth-child(4) {
  top: 85%;
  right: -5%;
  width: 45%;
  left: auto;
  animation: techLineSlide2 9s ease-in-out infinite;
}

/* 斜線 */
.tech-line-diagonal {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(253, 55, 59, 0.35), transparent);
  box-shadow: 0 0 6px rgba(253, 55, 59, 0.15);
}

.tech-line-diagonal:nth-child(5) {
  top: 20%;
  right: 10%;
  transform: rotate(-35deg);
  animation: techDiagonalPulse 6s ease-in-out infinite;
}

.tech-line-diagonal:nth-child(6) {
  bottom: 25%;
  left: 8%;
  transform: rotate(25deg);
  width: 160px;
  animation: techDiagonalPulse 8s ease-in-out infinite 2s;
}

/* 光點 */
.tech-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(253, 55, 59, 0.7);
  box-shadow: 0 0 12px rgba(253, 55, 59, 0.5), 0 0 24px rgba(253, 55, 59, 0.2);
}

.tech-dot:nth-child(7) {
  top: 15%;
  left: 25%;
  animation: techDotPulse 3s ease-in-out infinite;
}

.tech-dot:nth-child(8) {
  top: 40%;
  right: 20%;
  animation: techDotPulse 4s ease-in-out infinite 1s;
}

.tech-dot:nth-child(9) {
  bottom: 20%;
  left: 45%;
  animation: techDotPulse 3.5s ease-in-out infinite 0.5s;
}

.tech-dot:nth-child(10) {
  top: 70%;
  right: 35%;
  animation: techDotPulse 5s ease-in-out infinite 2s;
}

@keyframes techLineSlide1 {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(100px); opacity: 1; }
}

@keyframes techLineSlide2 {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(-80px); opacity: 1; }
}

@keyframes techDiagonalPulse {
  0%, 100% { opacity: 0.4; width: 160px; }
  50% { opacity: 1; width: 280px; }
}

@keyframes techDotPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(2); }
}

.screenshots-section .section-title {
  -webkit-text-fill-color: white;
  background: none;
}

.screenshots-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.screenshot-card {
  background: var(--white);
  border-radius: 16px;
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.screenshot-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

.screenshot-img-wrapper {
  overflow: hidden;
  border-bottom: 1px solid var(--border-gray);
}

.screenshot-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-img-wrapper img {
  transform: scale(1.02);
}

.screenshot-info {
  padding: 24px;
}

.screenshot-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.screenshot-info p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Events Section */
.events-section {
  background: linear-gradient(135deg, #fd373b 0%, #ff6b35 50%, #fd373b 100%);
}

.events-section .section-title {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

.events-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event-card {
  background: #ffffff;
  border-radius: 12px;
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.event-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.event-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0f0f0;
}

.event-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.event-carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

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

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-red);
  transform: scale(1.2);
}

.event-info {
  padding: 20px 24px;
}

.event-date {
  display: inline-block;
  background: var(--primary-red);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-info h3 {
  font-size: var(--fs-subtitle);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
}

.event-info p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 8px;
}

.media-section {
  background: var(--bg-light);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.media-card {
  background: var(--white);
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.media-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.media-source {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  margin: 20px 30px 15px 30px;
  width: fit-content;
}

.media-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 30px 15px 30px;
  line-height: 1.4;
}

.media-excerpt {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 30px 60px 30px;
}

.media-link {
  color: var(--primary-red);
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.media-link:hover {
  color: #e02f33;
}

.institutes-section {
  background: var(--white);
  padding: 30px 0;
  overflow: hidden;
}

.institutes-carousel {
  margin-top: 30px;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.institutes-track {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: scroll-left 40s linear infinite;
}

.institute-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.6) contrast(0.4);
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.institute-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

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

.institutes-track:hover {
  animation-play-state: paused;
}

.testimonials-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 55, 59, 0.05) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #fd373b 0%, #f97316 100%);
  color: white;
}

.testimonial-featured .testimonial-text {
  color: white;
  font-size: 18px;
  line-height: 1.9;
}

.testimonial-featured .testimonial-quote-icon {
  color: rgba(255, 255, 255, 0.3);
  font-size: 36px;
}

.testimonial-featured .testimonial-author {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-featured .testimonial-stars {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-quote-icon {
  color: rgba(253, 55, 59, 0.15);
  font-size: 28px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-featured .testimonial-footer {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 600;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 1px;
}

.about-section {
  background: var(--bg-light);
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 60px;
}

.company-logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}

.about-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.about-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.award-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.award-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.award-trophy {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 25px;
  object-fit: contain;
}

.award-year {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.award-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.award-subtitle {
  font-size: 16px;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 15px;
}

.award-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #ffffff;
  padding: 40px 0 20px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow), var(--primary-red));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-red);
}

.footer-column p {
  font-size: 16px;
  color: #b0b0b0;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  transition: transform 0.2s ease;
}

.footer-item:hover {
  transform: translateX(4px);
}

.footer-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.8;
}

.youtube-icon {
  flex-shrink: 0;
  color: #b0b0b0;
}

.footer-column a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 16px;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  display: inline-block;
  padding: 2px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 4px;
}

.footer-bottom a {
  color: #888888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--primary-red);
}

/* 返回頂部按鈕 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

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

.modal-content {
  background-color: var(--white);
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 900px;
  position: relative;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.modal-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  font-weight: 300;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-red);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    border-bottom: 1px solid var(--border-gray);
    padding: 20px 0;
    transition: left 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-section {
    padding: 120px 0 80px;
    margin-top: 70px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 36px;
  }

  .features-grid,
  .audience-grid,
  .media-grid,
  .testimonials-grid,
  .awards-grid,
  .screenshots-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .video-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-icon {
    font-size: 22px;
  }

  .highlight-item h3 {
    font-size: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-item {
    justify-content: center;
  }

  .footer-item:hover {
    transform: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Tech Section */

/* Purchase Section */
.purchase-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 40px auto;
}

.pricing-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-red);
}

.pricing-card.enterprise {
  border: 2px solid var(--primary-red);
}

.pricing-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(253, 55, 59, 0.1), rgba(255, 107, 53, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-red);
  margin-bottom: 16px;
}

.pricing-card.enterprise .pricing-icon {
  background: linear-gradient(135deg, rgba(253, 55, 59, 0.15), rgba(255, 107, 53, 0.15));
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.pricing-price {
  margin-bottom: 25px;
}

.pricing-price .currency {
  font-size: 20px;
  color: var(--primary-red);
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-red);
}

.pricing-price .unit {
  font-size: 18px;
  color: var(--text-secondary);
}

.custom-pricing {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-red);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 16px;
  position: relative;
  padding-left: 28px;
  text-align: left;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.btn-outline {
  background: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.btn-outline:hover {
  background: var(--primary-red);
  color: white;
}

.contact-info {
  margin-top: 50px;
  padding: 50px 40px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.contact-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item svg,
.contact-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-red);
  flex-shrink: 0;
  object-fit: contain;
}

.contact-label {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 4px 0;
}

.contact-item a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-red);
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    flex-wrap: wrap;
    gap: 30px;
  }

  .contact-info {
    padding: 40px 20px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-red);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0;
  padding-top: 8px;
}

.faq-answer {
  padding-left: 60px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-item {
    padding: 25px 20px;
  }

  .faq-question {
    gap: 15px;
  }

  .faq-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer {
    padding-left: 50px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

.pricing-btn {
  width: 100%;
  text-align: center;
}


/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.process-section .section-title {
    font-size: 36px;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* 連接線 */
.process-steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(16.67% + 12px);
    right: calc(16.67% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b35);
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    flex: 1;
    background: transparent;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
}

.step-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    padding: 24px;
    background: var(--white);
    border: 2px solid rgba(253, 55, 59, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    border-color: var(--primary-red);
    background: #fff5f5;
    box-shadow: 0 8px 30px rgba(253, 55, 59, 0.12);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-red);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 968px) {
    .process-section {
        padding: 60px 0;
    }

    .process-section .section-title {
        font-size: 32px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .process-steps::before {
        top: 0;
        bottom: 0;
        left: 48px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .process-step {
        max-width: 360px;
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
        padding: 0;
    }

    .process-step:hover {
        transform: translateX(6px);
    }

    .step-icon {
        width: 72px;
        height: 72px;
        min-width: 72px;
        margin: 0;
        border-radius: 18px;
        padding: 18px;
    }

    .step-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .step-description {
        font-size: 14px;
    }
}

/* ===== 增強響應式設計 ===== */

/* 大平板 (1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

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

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

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

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

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

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

  .pricing-cards {
    gap: 20px;
  }

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

/* 小平板 (768px) - 補充樣式 */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 60px 0;
  }

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

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .features-grid,
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-card {
    max-width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    max-width: 100%;
  }

  .institutes-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .institute-logo {
    height: 50px;
  }

  .institutes-track {
    gap: 30px;
  }

  .footer {
    padding: 32px 0 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-column {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-column:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-bottom {
    padding-top: 16px;
  }

  .footer-bottom p {
    font-size: 14px;
  }
}

/* 手機版 (480px) — 最小字級 13px */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  section {
    padding: 48px 0;
  }

  .logo-text {
    font-size: 14px;
  }

  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .btn {
    padding: 14px 30px;
    font-size: 15px;
  }

  .modal-content {
    margin: 20% auto;
    padding: 30px 20px;
  }

  .feature-card,
  .audience-card {
    padding: 24px 16px;
  }

  .media-image {
    height: 180px;
  }

  .media-title {
    font-size: 16px;
  }

  .media-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .award-card {
    padding: 24px 16px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-title {
    font-size: 18px;
  }

  .pricing-price .amount {
    font-size: 36px;
  }

  .faq-item {
    padding: 20px 16px;
  }

  .faq-question {
    flex-direction: column;
    gap: 12px;
  }

  .faq-answer {
    padding-left: 0;
  }

  .faq-question h3 {
    font-size: 16px;
    padding-top: 0;
  }

  .footer {
    padding: 24px 0 12px;
  }

  .footer-column h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 13px;
  }

  .footer-item {
    gap: 6px;
    padding: 3px 0;
  }

  .footer-icon {
    width: 16px;
    height: 16px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }

  .back-to-top svg {
    width: 16px;
    height: 16px;
  }

  /* 卡片標題統一縮小 */
  .feature-title,
  .audience-card h3 {
    font-size: 18px;
  }

  .screenshot-info h3,
  .event-info h3 {
    font-size: 16px;
  }

  .feature-description,
  .audience-list li,
  .screenshot-info p,
  .event-info p,
  .media-link,
  .award-description,
  .faq-answer p {
    font-size: 14px;
  }

  .event-date,
  .media-source,
  .compare-label,
  .testimonial-author,
  .testimonial-stars {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .stat-icon {
    font-size: 28px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 13px;
  }
}

/* 超小螢幕 (360px) — 最小字級 13px */
@media (max-width: 360px) {
  .hero-title {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-description {
    font-size: 13px;
  }

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

  .section-subtitle {
    font-size: 13px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .feature-title,
  .audience-card h3 {
    font-size: 16px;
  }

  .feature-description,
  .audience-list li,
  .screenshot-info p,
  .event-info p,
  .testimonial-text,
  .faq-answer p {
    font-size: 13px;
  }

  .pricing-price .amount {
    font-size: 32px;
  }

  .stat-number {
    font-size: 28px;
  }
}

/* 橫向手機 */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .back-to-top {
    bottom: 10px;
    right: 10px;
  }
}

/* 高解析度螢幕優化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .footer-icon,
  .contact-icon {
    image-rendering: -webkit-optimize-contrast;
  }
}
