/* 線上英文落地頁專屬樣式 */

/* Breadcrumb Bar */
.breadcrumb-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 0 40px;
  color: #fff;
}

.breadcrumb-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.breadcrumb-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.page-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.page-breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.page-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

/* Table of Contents */
.table-of-contents-section {
  background: #f8f9fa;
  padding: 40px 0;
}

.toc-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #667eea;
}

.toc-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.toc-box h3 i {
  color: #667eea;
  margin-right: 10px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e8ecff;
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-list a {
  color: #444;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
  display: block;
}

.toc-list a:hover {
  color: #667eea;
  padding-left: 10px;
}

/* Content Section */
.content-section {
  padding: 60px 0;
}

.content-block {
  margin-bottom: 60px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #667eea;
}

.content-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.content-block strong {
  color: #667eea;
  font-weight: 600;
}

/* Comparison Table */
.comparison-table {
  margin: 30px 0;
}

.comparison-table h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.comparison-table .table {
  border: 1px solid #dee2e6;
  background: #fff;
}

.comparison-table .table thead th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 15px;
}

.comparison-table .table td {
  padding: 15px;
  vertical-align: middle;
}

.comparison-table .table td.advantage {
  color: #28a745;
  font-weight: 500;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
  border-left: 4px solid #667eea;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
}

.info-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 15px;
}

.info-box ul {
  margin: 0;
  padding-left: 20px;
}

.info-box li {
  margin-bottom: 10px;
  color: #444;
}

/* Advantages Grid */
.advantages-grid .advantage-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
  border-top: 4px solid #667eea;
}

.advantages-grid .advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.advantage-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.advantage-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  padding-right: 50px;
}

.advantage-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Criteria List */
.criteria-list {
  margin-top: 30px;
}

.criteria-item {
  display: flex;
  margin-bottom: 40px;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.criteria-item:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.criteria-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-right: 20px;
}

.criteria-content {
  flex: 1;
}

.criteria-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.criteria-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 15px;
}

.tip-box {
  background: #fff3cd;
  border-left: 3px solid #ffc107;
  padding: 12px 15px;
  margin-top: 15px;
  border-radius: 4px;
}

.tip-box strong {
  color: #856404;
}

.price-range {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.price-range strong {
  color: #2c3e50;
  display: block;
  margin-bottom: 10px;
}

.price-range ul {
  margin: 0;
  padding-left: 20px;
}

/* Platform Comparison */
.platform-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.platform-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s;
}

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

.platform-card.featured {
  border: 3px solid #667eea;
}

.platform-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.platform-name {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.platform-rating {
  margin-bottom: 25px;
}

.platform-rating i {
  color: #ffc107;
  font-size: 18px;
}

.platform-rating span {
  margin-left: 10px;
  color: #666;
  font-weight: 600;
}

.platform-features h4,
.platform-pricing h4,
.platform-pros-cons h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.platform-features ul,
.platform-pros-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-features li,
.platform-pros-cons li {
  padding: 8px 0;
  color: #444;
  font-size: 15px;
}

.platform-pricing {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #667eea;
  margin: 10px 0;
}

.currency {
  font-size: 20px;
  vertical-align: super;
}

.amount {
  font-size: 42px;
}

.price-note {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.platform-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.platform-cta {
  text-align: center;
  margin-top: 25px;
}

/* Comparison Summary */
.comparison-summary {
  margin: 50px 0;
  padding: 40px;
  background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
  border-radius: 12px;
}

.comparison-summary h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

.summary-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.summary-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.winner {
  font-size: 28px;
  font-weight: 700;
  color: #667eea;
  margin: 15px 0;
}

.reason {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Success Stories */
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.story-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.story-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 15px;
}

.story-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.story-info p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.story-achievement {
  margin-bottom: 15px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.badge-success {
  background: #28a745;
  color: #fff;
}

.badge-primary {
  background: #667eea;
  color: #fff;
}

.story-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* Statistics */
.statistics-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 50px;
  border-radius: 12px;
  margin-top: 50px;
  color: #fff;
}

.statistics-section h3 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* FAQ */
.faq-grid {
  margin-top: 30px;
}

.faq-category {
  margin-bottom: 50px;
}

.faq-category h3 {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8ecff;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.faq-item h4 i {
  color: #667eea;
  margin-right: 10px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

.internal-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.internal-link:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
  padding: 60px;
  border-radius: 12px;
  margin-top: 50px;
}

.cta-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-box h3 {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.cta-benefits li {
  padding: 8px 0;
  font-size: 16px;
  color: #444;
}

.cta-note {
  font-size: 16px;
  color: #666;
  margin-top: 20px;
}

.pulse-button {
  animation: pulse 2s infinite;
  font-size: 20px;
  padding: 15px 40px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.feature-box {
  padding: 30px 20px;
  text-align: center;
}

.feature-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin: 15px 0;
}

.feature-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .breadcrumb-title {
    font-size: 28px;
  }

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

  .platform-comparison-grid {
    grid-template-columns: 1fr;
  }

  .platform-pros-cons {
    grid-template-columns: 1fr;
  }

  .success-stories-grid {
    grid-template-columns: 1fr;
  }

  .statistics-section {
    padding: 30px 20px;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-box {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-title {
    font-size: 24px;
  }

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

  .criteria-item {
    flex-direction: column;
  }

  .criteria-icon {
    margin-bottom: 15px;
  }

  .comparison-table .table {
    font-size: 14px;
  }

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

  .pulse-button {
    font-size: 18px;
    padding: 12px 30px;
  }
}
