/* Auto-generated by build-css.cjs — DO NOT EDIT */
/* === sections-services.css === */
/**
 * @file    : css/sections-services.css
 * @purpose : Services Section 樣式
 * @depends : ['css/variables.css']
 * @lines   : ~85
 */

/* ========================================
   Services Section - 大呼吸感佈局
   ======================================== */
.services {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-accent);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-content {
  padding: var(--spacing-xl);
}

.service-icon {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: var(--text-light);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.service-title {
  font-size: var(--font-size-xl);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

/* Note: .service-tagline may conflict with service-fullscreen 
   - section-specific one uses different sizing */
.services .service-tagline {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-md);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.service-features li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 700;
}

/* ========================================
   AI 智囊團 - 特色卡片樣式
   ======================================== */
.service-card-featured {
  position: relative;
  /* 保持與其他卡片相同的淺色背景 */
  border: 2px solid var(--color-primary);
  box-shadow:
    0 0 20px rgba(255, 165, 0, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card-featured::before {
  content: "DEEP THINKING";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: var(--text-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.service-card-featured:hover {
  border-color: var(--color-accent);
  box-shadow:
    0 0 30px rgba(255, 165, 0, 0.25),
    0 12px 48px rgba(0, 0, 0, 0.4);
}

.service-card-featured .service-icon {
  background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .services {
    padding: var(--spacing-2xl) 0;
  }

  .service-image {
    height: 180px;
  }

  .service-content {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .service-image {
    height: 150px;
  }

  .service-title {
    font-size: var(--font-size-lg);
  }
}

/* === sections-solutions.css === */
/**
 * @file    : css/sections-solutions.css
 * @purpose : Solutions 區塊樣式
 * @depends : ['css/variables.css']
 */

/* Solutions Section - 大呼吸感佈局 */
.solutions {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-section);
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.solution-item {
  display: flex;
  gap: var(--spacing-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  transition: var(--transition-base);
}

.solution-item:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

/* Solution Image */
.solution-image {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.solution-item:hover .solution-image img {
  transform: scale(1.05);
}

.solution-number {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
  min-width: 80px;
}

.solution-content {
  flex: 1;
}

.solution-title {
  font-size: var(--font-size-xl);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.solution-tagline {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

.solution-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.solution-col h4 {
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}

.solution-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.solution-col li {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.solution-col li::before {
  content: "→ ";
  color: var(--color-accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .solution-image {
    width: 220px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .solution-item {
    flex-direction: column;
  }

  .solution-image {
    width: 100%;
    height: 200px;
  }

  .solution-number {
    min-width: auto;
  }

  .solution-details {
    grid-template-columns: 1fr;
  }

  .solutions {
    padding: var(--spacing-2xl) 0;
  }
}

@media (max-width: 480px) {
  .solution-item {
    padding: var(--spacing-md);
  }

  .solution-image {
    height: 160px;
  }

  .solution-title {
    font-size: var(--font-size-lg);
  }
}

/* === sections-tech-contact.css === */
/**
 * @file    : css/sections-tech-contact.css
 * @purpose : Technology 與 Contact 區塊樣式
 * @depends : ['css/variables.css']
 */

/* Technology Section - 大呼吸感佈局 */
.technology {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-light);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.tech-category {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  transition: var(--transition-base);
}

.tech-category:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

/* Tech Image */
.tech-image {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--spacing-md);
}

.tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tech-category:hover .tech-image img {
  transform: scale(1.05);
}

.tech-icon {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: var(--text-light);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.tech-title {
  font-size: var(--font-size-lg);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.tech-list li {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

/* Contact Section - 大呼吸感佈局 */
.contact {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-section);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

.contact-content {
  padding-right: var(--spacing-xl);
}

.contact-title {
  font-size: var(--font-size-3xl);
  color: var(--text-primary);
  margin: var(--spacing-md) 0 var(--spacing-lg);
}

.contact-description {
  color: var(--text-muted);
  margin-bottom: var(--spacing-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.contact-icon {
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(210, 105, 30, 0.1);
  color: var(--color-primary);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-md);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
}

/* Contact — LINE CTA */
.contact-line-cta {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.contact-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #06c755, #05b64c);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
}

.contact-line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.4);
  color: #fff;
}

.contact-line-btn svg {
  flex-shrink: 0;
}

.contact-line-hint {
  margin-top: var(--spacing-md);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    gap: var(--spacing-2xl);
  }

  .contact-title {
    font-size: var(--font-size-2xl);
  }
}

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-content {
    padding-right: 0;
  }

  .contact-title {
    font-size: var(--font-size-xl);
  }

  .tech-category {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .technology {
    padding: var(--spacing-2xl) 0;
  }

  .contact {
    padding: var(--spacing-2xl) 0;
  }

  .contact-form-wrapper {
    padding: var(--spacing-lg);
  }
}

/* === chatbot/chatbot-toggle.css === */
/**
 * @file    : css/chatbot/chatbot-toggle.css
 * @purpose : 聊天按鈕、提示氣泡、通知徽章樣式
 */

/* ========================================
   Chat Widget Container
   ======================================== */
.chat-widget-container {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========================================
   Chat Toggle Button
   ======================================== */
.chat-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8853a 0%, #d2691e 50%, #a0522d 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(210, 105, 30, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(210, 105, 30, 0.45);
}

.chat-toggle.active {
  transform: rotate(0deg) scale(0.95);
  background: linear-gradient(145deg, #a0522d 0%, #8b4513 100%);
}

.chat-toggle-icon {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* ========================================
   Notification Badge
   ======================================== */
.chat-notification {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ef4444;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePulse 2s infinite;
  border: 2px solid #fffaf5;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
}

/* ========================================
   Chat Hint Bubble
   ======================================== */
.chat-hint {
  position: relative;
  background: linear-gradient(135deg, #d2691e 0%, #a0522d 100%);
  color: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow:
    0 4px 12px rgba(210, 105, 30, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: hintBounce 3s ease-in-out infinite;
  cursor: pointer;
}

.chat-hint:hover {
  background: linear-gradient(135deg, #e8853a 0%, #d2691e 100%);
}

.chat-hint-arrow {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #d2691e;
}

.chat-hint:hover .chat-hint-arrow {
  border-left-color: #e8853a;
}

.chat-hint-text {
  display: inline-block;
  transition: opacity 0.3s ease;
}

@keyframes hintBounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}

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

/* 響應式 */
@media (max-width: 768px) {
  .chat-hint {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
  }
}

/* === chatbot/chatbot-window.css === */
/**
 * @file    : css/chatbot/chatbot-window.css
 * @purpose : 聊天視窗主體、標題列、輸入區樣式
 * @depends : ['css/variables.css']
 */

/* ========================================
   Chat Window
   ======================================== */
.chat-window {
  position: fixed;
  bottom: 104px;
  right: 24px;
  z-index: 999;
  width: 380px;
  max-width: calc(100vw - 2rem);
  height: 520px;
  max-height: calc(100vh - 150px);
  background: #fffaf5;
  border: 1px solid rgba(210, 105, 30, 0.15);
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(62, 39, 35, 0.12),
    0 8px 24px rgba(210, 105, 30, 0.08);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ========================================
   Chat Header
   ======================================== */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, #d2691e 0%, #a0522d 100%);
  position: relative;
}

.chat-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-header-text h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}

.chat-header-text span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
}

/* Online indicator dot */
.chat-header-text span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 5px;
  vertical-align: middle;
  box-shadow: 0 0 4px rgba(74, 222, 128, 0.5);
}

.chat-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.chat-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   Chat Input Area
   ======================================== */
.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid rgba(210, 105, 30, 0.08);
  background: #fff;
}

.chat-form {
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  background: #fdf8f3;
  border: 1px solid rgba(210, 105, 30, 0.15);
  border-radius: 12px;
  color: #3e2723;
  font-size: 0.875rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.chat-input:focus {
  outline: none;
  border-color: #d2691e;
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.chat-input::placeholder {
  color: #a89080;
}

.chat-send {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d2691e 0%, #a0522d 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(210, 105, 30, 0.25);
}

.chat-send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.35);
}

.chat-send:active {
  transform: scale(0.95);
}

/* === chatbot/chatbot-messages.css === */
/**
 * @file    : css/chatbot/chatbot-messages.css
 * @purpose : 訊息氣泡、頭像、載入動畫、進場動畫、響應式樣式
 * @depends : ['css/variables.css']
 */

/* ========================================
   Chat Messages Container
   ======================================== */
.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #fdf8f3 0%, #fffaf5 100%);
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(210, 105, 30, 0.2);
  border-radius: 4px;
}

/* ========================================
   Message Bubbles
   ======================================== */
.chat-message {
  display: flex;
  max-width: 85%;
  gap: 8px;
  align-items: flex-end;
  animation: msgFadeIn 0.3s ease-out;
}

.chat-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-message.bot {
  align-self: flex-start;
}

/* Bot avatar next to messages */
.msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d2691e 0%, #a0522d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 2px 6px rgba(210, 105, 30, 0.25);
}

.message-content {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  word-break: break-word;
}

.chat-message.user .message-content {
  background: linear-gradient(135deg, #d2691e 0%, #a0522d 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(210, 105, 30, 0.2);
}

.chat-message.bot .message-content {
  background: #fff;
  color: #3e2723;
  border: 1px solid rgba(210, 105, 30, 0.12);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(62, 39, 35, 0.06);
}

/* ========================================
   Loading Animation
   ======================================== */
.chat-message.loading .message-content {
  padding: 14px 18px;
}

.loading-dots {
  display: flex;
  gap: 5px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d2691e;
  animation: loadingBounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

/* ========================================
   Animations
   ======================================== */
@keyframes msgFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loadingBounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 480px) {
  .chat-window {
    right: 12px;
    left: 12px;
    bottom: 80px;
    width: auto;
    height: 60vh;
  }

  .chat-toggle {
    width: 55px;
    height: 55px;
  }

  .chat-widget-container {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .msg-avatar {
    width: 24px;
    height: 24px;
  }

  .msg-avatar svg {
    width: 16px;
    height: 16px;
  }
}

/* === digital-workforce-layout.css === */
/**
 * @file    : css/digital-workforce-layout.css
 * @purpose : 數位員工區塊 - 佈局與網格
 * @depends : ['css/variables.css']
 * @lines   : ~90
 */

/* ============================================================
   數位員工主區塊
   ============================================================ */
.digital-workforce {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(
    180deg,
    var(--bg-light) 0%,
    var(--bg-section) 50%,
    var(--bg-light) 100%
  );
}

/* 區塊標題 */
.workforce-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-3xl);
  padding: 0 var(--spacing-md);
}

.workforce-header .section-badge {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: var(--text-light);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
}

.workforce-title {
  font-size: clamp(2rem, 5vw, var(--font-size-3xl));
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.workforce-title .highlight {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workforce-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   服務方案網格
   ============================================================ */
.workforce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* ============================================================
   響應式設計
   ============================================================ */
@media (max-width: 1200px) {
  .workforce-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .digital-workforce {
    padding: var(--spacing-2xl) 0;
  }

  .workforce-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: 0 var(--spacing-md);
  }

  .workforce-header {
    margin-bottom: var(--spacing-2xl);
  }

  .workforce-title {
    font-size: var(--font-size-2xl);
  }

  .workforce-subtitle {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .digital-workforce {
    padding: var(--spacing-xl) 0;
  }

  .workforce-grid {
    gap: var(--spacing-md);
    padding: 0 var(--spacing-sm);
  }

  .workforce-header {
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-sm);
  }

  .workforce-title {
    font-size: var(--font-size-xl);
  }

  .workforce-subtitle {
    font-size: var(--font-size-sm);
  }

  .workforce-header .section-badge {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.65rem;
  }
}

/* === digital-workforce-cards.css === */
/**
 * @file    : css/digital-workforce-cards.css
 * @purpose : 數位員工區塊 - 卡片元件樣式
 * @depends : ['css/variables.css', 'css/digital-workforce-layout.css']
 * @lines   : ~115
 */

/* ============================================================
   服務方案卡片
   ============================================================ */
.workforce-card {
  background: var(--bg-lighter);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.workforce-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.workforce-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

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

/* 卡片編號 */
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: var(--text-light);
  font-size: var(--font-size-sm);
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

/* 卡片標題 */
.card-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.card-title .icon {
  font-size: 1.2em;
}

/* 適用對象標籤 */
.card-target {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(210, 105, 30, 0.1);
  color: var(--color-primary-dark);
  font-size: var(--font-size-xs);
  font-weight: 500;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

/* 問題描述 */
.card-problem {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-subtle);
}

.card-problem strong {
  color: var(--color-primary-dark);
}

/* 體驗描述 */
.card-experience {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-left: var(--spacing-lg);
}

.card-experience::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}

/* 技術底氣 */
.card-tech {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: linear-gradient(
    135deg,
    rgba(210, 105, 30, 0.05) 0%,
    rgba(205, 133, 63, 0.05) 100%
  );
  border-radius: var(--radius-md);
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.card-tech .tech-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* ============================================================
   響應式設計
   ============================================================ */
@media (max-width: 768px) {
  .workforce-card {
    padding: var(--spacing-lg);
  }

  .card-title {
    font-size: var(--font-size-lg);
  }
}

@media (max-width: 480px) {
  .workforce-card {
    padding: var(--spacing-md);
  }

  .card-number {
    width: 30px;
    height: 30px;
    font-size: var(--font-size-xs);
    margin-bottom: var(--spacing-sm);
  }

  .card-title {
    font-size: var(--font-size-base);
    gap: var(--spacing-xs);
  }

  .card-target {
    padding: 4px var(--spacing-sm);
    font-size: 0.7rem;
  }

  .card-problem {
    font-size: var(--font-size-xs);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
  }

  .card-experience {
    font-size: var(--font-size-sm);
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
  }

  .card-experience::before {
    font-size: 1.8rem;
    top: -4px;
  }

  .card-tech {
    padding: var(--spacing-sm);
    font-size: 0.7rem;
  }
}

/* === service-fullscreen-layout.css === */
/**
 * @file    : css/service-fullscreen-layout.css
 * @purpose : 全屏服務區塊 - 佈局與結構
 * @depends : ['css/variables.css']
 * @lines   : ~150
 */

/* ============================================================
   全屏服務區塊 - 基礎結構
   ============================================================ */
.service-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-light);
}

/* 背景圖片容器 */
.service-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.service-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px);
  transition: opacity var(--transition-slow);
}

.service-fullscreen:hover .service-bg-image {
  opacity: 0.2;
}

/* 漸層遮罩 */
.service-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(253, 249, 243, 0.95) 0%,
    rgba(245, 239, 230, 0.85) 50%,
    rgba(253, 249, 243, 0.9) 100%
  );
}

/* ============================================================
   內容區塊 - 兩欄式佈局
   ============================================================ */
.service-fullscreen-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--spacing-3xl);
  align-items: center;
}

/* 左側：文字內容 */
.service-text-column {
  max-width: 600px;
}

/* 右側：視覺圖片 */
.service-image-column {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-feature-image {
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-2xl);
  box-shadow:
    0 25px 50px rgba(62, 39, 35, 0.15),
    0 10px 20px rgba(210, 105, 30, 0.1);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.service-feature-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 35px 60px rgba(62, 39, 35, 0.2),
    0 15px 30px rgba(210, 105, 30, 0.15);
}

/* 裝飾圓點 */
.service-image-column::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
  z-index: -1;
}

.service-image-column::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
}

/* ============================================================
   反轉佈局（圖左文右）
   ============================================================ */
.service-reversed .service-fullscreen-content {
  direction: rtl;
}

.service-reversed .service-text-column,
.service-reversed .service-image-column {
  direction: ltr;
}

.service-reversed .service-target {
  border-left: none;
  border-right: 4px solid var(--color-primary);
}

/* ============================================================
   響應式設計
   ============================================================ */
@media (max-width: 1024px) {
  .service-fullscreen-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    padding: var(--spacing-2xl);
  }

  .service-text-column {
    max-width: 100%;
    order: 2;
  }

  .service-image-column {
    order: 1;
  }

  .service-feature-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .service-fullscreen {
    min-height: auto;
    padding: var(--spacing-2xl) 0;
  }

  .service-fullscreen-content {
    padding: var(--spacing-lg);
  }

  .service-feature-image {
    max-width: 100%;
  }

  .service-image-column::before,
  .service-image-column::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .service-fullscreen {
    padding: var(--spacing-xl) 0;
  }

  .service-fullscreen-content {
    padding: var(--spacing-md);
    gap: var(--spacing-lg);
  }
}

/* === service-fullscreen-content.css === */
/**
 * @file    : css/service-fullscreen-content.css
 * @purpose : 全屏服務區塊 - 內容元件樣式
 * @depends : ['css/variables.css', 'css/service-fullscreen-layout.css']
 */

/* 服務編號標籤 */
.service-number-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  color: var(--text-light);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
}

/* 主標題與副標題 */
.service-main-title {
  font-size: clamp(2.5rem, 6vw, var(--font-size-4xl));
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

.service-main-title .emoji {
  display: inline-block;
  margin-right: var(--spacing-sm);
}

.service-tagline {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-xl);
}

/* 適用對象區塊 */
.service-target {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: rgba(210, 105, 30, 0.08);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  border-left: 4px solid var(--color-primary);
}

.service-target-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-target-text {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-target-text strong {
  color: var(--color-primary-dark);
  display: block;
  margin-bottom: var(--spacing-xs);
}

/* 痛點解決 */
.service-problem {
  font-size: var(--font-size-base);
  color: var(--text-muted);
  margin-bottom: var(--spacing-xl);
  padding-left: var(--spacing-lg);
  border-left: 2px solid var(--border-accent);
}

/* 體驗描述區塊 */
.service-experience {
  position: relative;
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: var(--bg-lighter);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.service-experience::before {
  content: '"';
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-lg);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.service-experience p {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* 技術底氣標籤 */
.service-tech-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(210, 105, 30, 0.1) 0%,
    rgba(205, 133, 63, 0.1) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-accent);
}

.service-tech-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--text-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-tech-text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========================================
   效益與定價區塊
   ======================================== */
.service-value-block {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: rgba(39, 174, 96, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid #27ae60;
}

.service-benefit,
.service-price {
  margin: 0;
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.8;
}

.service-benefit {
  margin-bottom: var(--spacing-sm);
}

.service-benefit strong,
.service-price strong {
  color: var(--text-primary);
}

/* 服務 CTA 按鈕組 */
.service-cta-group {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.service-cta-group .btn.btn-secondary.service-cta-btn {
  width: auto;
  min-width: 120px;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: var(--font-size-base);
  padding: var(--spacing-md) var(--spacing-xl);
}

.service-cta-group .btn.btn-secondary.service-cta-btn::before,
.service-cta-group .btn.btn-secondary.service-cta-btn::after {
  display: none;
}

.service-cta-group .btn.btn-secondary.service-cta-btn:hover {
  background: var(--color-primary);
  color: var(--text-light);
}

/* 調整主 CTA 在按鈕組中的樣式 */
.service-cta-group .btn.btn-primary.service-cta-btn {
  width: auto;
  min-width: 180px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .service-cta-group {
    flex-direction: column;
  }

  .service-cta-group .btn.btn-primary.service-cta-btn,
  .service-cta-group .btn.btn-secondary.service-cta-btn {
    width: 100%;
  }
}

/* ========================================
   服務 CTA 按鈕 - 方案 C：雙色漸層 + 圖標
   APCA Lc 80+ 高對比 | 強行動呼籲設計
   使用高特異性選擇器覆蓋 .btn.btn-primary
   ======================================== */
.btn.btn-primary.service-cta-btn {
  /* 佈局：70% 寬度 (文字欄的 2/3) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  width: 70%;
  max-width: 380px;
  min-height: 56px;
  /* 確保觸摸目標 >= 44px */
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-lg) var(--spacing-2xl);

  /* 🎨 方案 C：金→橘→深棕 三段漸層 */
  background: linear-gradient(
    135deg,
    #ffb347 0%,
    /* 金橘 - 頂部高光 */ #e67e22 30%,
    /* 標準橘 */ #c45a00 60%,
    /* 深橘 */ #8b3a00 100% /* 深棕 - 底部陰影 */
  );
  color: #ffffff;
  font-size: var(--font-size-lg);
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-xl);
  text-decoration: none;
  border: none;

  /* 🌟 多層發光效果 */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    /* 頂部高光線 */ inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    /* 底部陰影線 */ 0 4px 15px rgba(255, 140, 0, 0.35),
    /* 外發光 */ 0 0 40px rgba(255, 165, 0, 0.15);
  /* 柔和光暈 */

  /* 動畫基底 */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* 火箭圖標 (按鈕左側) - 使用 SVG 背景 */
.btn.btn-primary.service-cta-btn::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: var(--spacing-xs);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 00-2.91-.09z'/%3E%3Cpath d='M12 15l-3-3a22 22 0 012-3.95A12.88 12.88 0 0122 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 01-4 2z'/%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0'/%3E%3Cpath d='M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 00-2.91-.09z'/%3E%3Cpath d='M12 15l-3-3a22 22 0 012-3.95A12.88 12.88 0 0122 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 01-4 2z'/%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0'/%3E%3Cpath d='M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5'/%3E%3C/svg%3E")
    center / contain no-repeat;
  animation: rocketFloat 2s ease-in-out infinite;
}

@keyframes rocketFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-3px) rotate(5deg);
  }
}

/* ➡️ 箭頭 (按鈕右側) */
.btn.btn-primary.service-cta-btn::after {
  content: "→";
  display: inline-block;
  margin-left: var(--spacing-sm);
  font-size: 1.2em;
  font-weight: 900;
  animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(6px);
    opacity: 0.8;
  }
}

/* ✨ Shimmer 光澤掃過 (隱藏層) */
.btn.btn-primary.service-cta-btn .shimmer-layer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 100%;
  }
}

/* 🎯 Hover 狀態：放大 + 強發光 + 顏色亮化 */
.btn.btn-primary.service-cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(
    135deg,
    #ffd280 0%,
    /* 更亮的金 */ #ff9f43 30%,
    /* 亮橘 */ #e67e22 60%,
    /* 標準橘 */ #b85a08 100% /* 深橘 */
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1),
    0 8px 25px rgba(255, 140, 0, 0.5),
    0 0 50px rgba(255, 180, 50, 0.25);
  letter-spacing: 0.1em;
}

.btn.btn-primary.service-cta-btn:hover::before {
  animation: rocketLaunch 0.5s ease-out forwards;
}

@keyframes rocketLaunch {
  0% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-8px) rotate(15deg);
  }

  100% {
    transform: translateY(-3px) rotate(10deg);
  }
}

.btn.btn-primary.service-cta-btn:hover::after {
  animation: arrowBounce 0.4s ease-out;
}

@keyframes arrowBounce {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(12px);
  }

  100% {
    transform: translateX(8px);
  }
}

/* 🎹 Focus 無障礙狀態 */
.btn.btn-primary.service-cta-btn:focus {
  outline: 3px solid #ffd700;
  outline-offset: 4px;
}

/* 👆 Active 點擊狀態 */
.btn.btn-primary.service-cta-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 2px 10px rgba(255, 140, 0, 0.3);
}

/* 響應式調整 */
@media (max-width: 768px) {
  .service-main-title {
    font-size: var(--font-size-2xl);
  }

  .service-tagline {
    font-size: var(--font-size-lg);
  }

  .service-experience {
    font-size: var(--font-size-base);
    padding: var(--spacing-lg);
  }

  /* 手機版：全寬按鈕，更易點擊 */
  .btn.btn-primary.service-cta-btn {
    width: 100%;
    max-width: none;
    font-size: var(--font-size-base);
    padding: var(--spacing-md) var(--spacing-xl);
  }
}

@media (max-width: 480px) {
  .service-main-title {
    font-size: var(--font-size-xl);
  }

  .service-tagline {
    font-size: var(--font-size-base);
  }

  .service-number-badge {
    font-size: 10px;
    padding: var(--spacing-xs) var(--spacing-md);
  }

  .service-target {
    padding: var(--spacing-md);
  }

  .service-experience {
    padding: var(--spacing-md);
    font-size: var(--font-size-sm);
  }

  .service-experience::before {
    font-size: 2.5rem;
  }

  .service-value-block {
    padding: var(--spacing-md);
  }

  .service-tech-badge {
    flex-direction: column;
    text-align: center;
  }
}

/* === service-quick-nav.css === */
/**
 * @file    : css/service-quick-nav.css
 * @purpose : 六大服務快速導覽卡片樣式 - 暖色系設計
 * @depends : ['css/variables.css']
 */

/* ========================================
   Container
   ======================================== */
.service-quick-nav {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, #FDF8F3 0%, #F9F3EB 100%);
    position: relative;
}

/* 背景網格效果 */
.service-quick-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 170, 130, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 170, 130, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* ========================================
   Grid Layout
   ======================================== */
.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* ========================================
   Card Style
   ======================================== */
.quick-nav-card {
    background: rgba(255, 250, 245, 0.9);
    border: 1px solid rgba(200, 170, 130, 0.4);
    border-radius: 16px;
    padding: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    backdrop-filter: blur(10px);
}

.quick-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.25);
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.95);
}

/* Icon */
.quick-nav-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(230, 126, 34, 0.2));
}

/* Title */
.quick-nav-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* Description */
.quick-nav-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Tag */
.quick-nav-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.quick-nav-card:hover .quick-nav-tag {
    transform: scale(1.05);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .quick-nav-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .quick-nav-card {
        padding: 20px;
    }

    .quick-nav-icon {
        font-size: 2.5rem;
    }

    .quick-nav-card h3 {
        font-size: 1.1rem;
    }

    .quick-nav-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-quick-nav {
        padding: var(--spacing-xl) 0;
    }

    .quick-nav-card {
        padding: 16px;
    }
}
/* === solutions-video-showcase.css === */
/**
 * @file    : css/solutions-video-showcase.css
 * @purpose : 四大 AI 解決方案影片展示區塊樣式
 * @depends : ['css/variables.css']
 * @created : 2026-01-06
 */

/* ============================================
   影片展示容器 - 全寬沉浸式設計
   ============================================ */
.solutions-video-showcase {
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(30, 20, 15, 0.95) 0%,
            rgba(45, 30, 20, 0.9) 100%);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--border-subtle),
        inset 0 1px 0 rgba(255, 200, 150, 0.1);
}

/* 影片外框發光效果 */
.solutions-video-showcase::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-2xl) + 2px);
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-accent) 50%,
            var(--color-primary) 100%);
    opacity: 0.3;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }
}

/* ============================================
   影片播放器容器
   ============================================ */
.solutions-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(180deg,
            rgba(20, 15, 10, 1) 0%,
            rgba(30, 25, 20, 1) 100%);
}

/* 影片元素 */
.solutions-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.solutions-video.loaded {
    opacity: 1;
}

/* ============================================
   影片載入中骨架屏
   ============================================ */
.solutions-video-skeleton {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    background: linear-gradient(135deg,
            rgba(30, 20, 15, 1) 0%,
            rgba(45, 35, 25, 1) 100%);
    z-index: 1;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.solutions-video-skeleton.hidden {
    opacity: 0;
    visibility: hidden;
}

/* 載入動畫 */
.skeleton-loader {
    display: flex;
    gap: 8px;
}

.skeleton-loader span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: skeletonPulse 1.4s ease-in-out infinite;
}

.skeleton-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.skeleton-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes skeletonPulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.skeleton-text {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   影片控制列
   ============================================ */
.solutions-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(0deg,
            rgba(15, 10, 5, 0.95) 0%,
            rgba(15, 10, 5, 0) 100%);
    z-index: 10;
}

/* 左側：播放按鈕 */
.video-play-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.video-play-btn .icon {
    font-size: 1.2em;
}

/* 右側：音量按鈕 */
.video-sound-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-sound-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.video-sound-btn .sound-on {
    display: none;
}

.video-sound-btn.unmuted .sound-off {
    display: none;
}

.video-sound-btn.unmuted .sound-on {
    display: block;
}

/* ============================================
   影片標題疊加層
   ============================================ */
.solutions-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    background: linear-gradient(180deg,
            rgba(15, 10, 5, 0.8) 0%,
            rgba(15, 10, 5, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

.solutions-video-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.solutions-video-subtitle {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ============================================
   響應式設計
   ============================================ */
@media (max-width: 768px) {
    .solutions-video-showcase {
        border-radius: var(--radius-xl);
        margin-bottom: var(--spacing-xl);
    }

    .solutions-video-controls {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .video-play-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: var(--font-size-xs);
    }

    .video-sound-btn {
        width: 36px;
        height: 36px;
    }

    .solutions-video-overlay {
        padding: var(--spacing-md);
    }

    .solutions-video-title {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .solutions-video-showcase::before {
        display: none;
    }
}
/* === website-analyzer.css === */
/* ============================================================
   AI 賦能診斷區塊樣式
   ============================================================ */

.analyzer-section {
  padding: var(--spacing-section) 0;
  background: linear-gradient(
    135deg,
    rgba(230, 126, 34, 0.05) 0%,
    rgba(243, 156, 18, 0.03) 100%
  );
  position: relative;
}

.analyzer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary-light),
    transparent
  );
}

/* 輸入區域 */
.analyzer-input-wrapper {
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

.analyzer-input-group {
  display: flex;
  gap: var(--spacing-sm);
  background: var(--color-surface);
  padding: var(--spacing-sm);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.analyzer-input-group input {
  flex: 1;
  padding: var(--spacing-md) var(--spacing-lg);
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--color-text);
  outline: none;
}

.analyzer-input-group input::placeholder {
  color: var(--color-text-muted);
}

.analyzer-input-group .btn {
  white-space: nowrap;
  padding: var(--spacing-md) var(--spacing-xl);
}

/* 載入狀態 - 進度條版本 */
.analyzer-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  color: var(--color-text-muted);
}

.progress-container {
  width: 100%;
  max-width: 400px;
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* 知識卡輪播 */
.analyzer-fun-facts {
  margin-top: 12px;
  min-height: 48px;
  width: 100%;
  max-width: 420px;
}

.fun-fact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(
    135deg,
    rgba(210, 105, 30, 0.08),
    rgba(243, 156, 18, 0.04)
  );
  border-radius: 10px;
  border: 1px solid rgba(210, 105, 30, 0.15);
  opacity: 0;
  transform: translateY(8px);
  animation: funFactIn 0.4s ease forwards;
}

.fun-fact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.fun-fact-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

@keyframes funFactIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 錯誤狀態 */
.analyzer-error {
  display: none;
  text-align: center;
  padding: var(--spacing-md);
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
}

/* 報告容器 */
.analyzer-report {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.report-header {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  color: white;
  padding: var(--spacing-lg) var(--spacing-xl);
  text-align: center;
}

.report-header h3 {
  margin: 0 0 var(--spacing-sm);
  font-size: 1.75rem;
}

.report-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 var(--spacing-xs);
  color: rgba(255, 255, 255, 0.95);
}

.report-meta {
  margin: 0;
  opacity: 0.85;
  font-size: 0.85rem;
}

/* 執行摘要 */
.report-summary {
  background: linear-gradient(
    135deg,
    rgba(230, 126, 34, 0.08),
    rgba(243, 156, 18, 0.05)
  );
  padding: var(--spacing-lg);
  margin: var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.report-summary h4 {
  margin: 0 0 var(--spacing-sm);
  color: var(--color-primary);
  font-size: 1.1rem;
}

.report-summary .summary-content p {
  margin: 0 0 12px;
  line-height: 1.9;
  color: var(--color-text);
  font-size: 0.95rem;
}

.report-summary .summary-content p:last-child {
  margin-bottom: 0;
}

.report-summary .summary-stat {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.05em;
}

/* Fallback for plain <p> without .summary-content */
.report-summary > p {
  margin: 0;
  line-height: 1.8;
  color: var(--color-text);
}

/* 報告區塊通用 */
.report-sections {
  padding: var(--spacing-lg);
  font-size: 0.9rem;
  line-height: 1.7;
}

.report-section {
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.report-section:last-child {
  border-bottom: none;
}

.report-section .section-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.report-section .section-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(230, 126, 34, 0.1);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  min-width: 32px;
  text-align: center;
}

.report-section h4 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-text);
}

/* 服務項目卡片網格 */
.services-grid {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.analyzer-service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.analyzer-service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.analyzer-service-card h5 {
  margin: 0 0 var(--spacing-xs);
  font-size: 1rem;
  color: var(--color-text);
}

.analyzer-service-card p {
  margin: 0 0 var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.service-category {
  display: inline-block;
  background: rgba(230, 126, 34, 0.1);
  color: var(--color-primary);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

/* AI 機會表格 */
.table-wrapper {
  overflow-x: auto;
}

.opportunities-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.opportunities-table th,
.opportunities-table td {
  padding: var(--spacing-sm) var(--spacing-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.opportunities-table th {
  background: rgba(0, 0, 0, 0.02);
  font-weight: 600;
  color: var(--color-text);
}

.opportunities-table .benefit {
  color: #27ae60;
  font-weight: 500;
}

.difficulty-low {
  background: #d5f5e3;
  color: #1e8449;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.difficulty-medium {
  background: #fef9e7;
  color: #b7950b;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.difficulty-high {
  background: #fadbd8;
  color: #c0392b;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

/* 部門賦能卡片 */
.departments-grid {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.department-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.department-card h5 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  color: var(--color-primary);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(210, 105, 30, 0.15);
}

.dept-opportunities,
.dept-tools {
  margin-bottom: 16px;
}

.dept-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0 0 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.department-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.department-card ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.department-card ul li:last-child {
  border-bottom: none;
}

.department-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.6;
}

.tools-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.tool-tag {
  background: rgba(52, 152, 219, 0.1);
  color: #2980b9;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

/* 職位層級 */
.positions-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.position-card {
  background: rgba(0, 0, 0, 0.02);
  border-left: 4px solid var(--color-primary);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.position-card h5 {
  margin: 0 0 var(--spacing-sm);
  font-size: 1rem;
  color: var(--color-text);
}

.position-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.position-card li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.position-card .arrow {
  color: var(--color-primary);
  margin-right: var(--spacing-xs);
}

/* 網站優化建議 */
.optimizations-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.optimization-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
}

.priority-high {
  background: #fadbd8;
  color: #c0392b;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.priority-medium {
  background: #fef9e7;
  color: #b7950b;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.priority-low {
  background: #d5f5e3;
  color: #1e8449;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.opt-content h5 {
  margin: 0 0 var(--spacing-xs);
  font-size: 1rem;
  color: var(--color-text);
}

.opt-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* 銷售漏斗 */
.funnel-flow {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  padding-bottom: var(--spacing-md);
}

.funnel-stage {
  flex: 1;
  min-width: 180px;
  background: linear-gradient(180deg, rgba(230, 126, 34, 0.05), #fff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  text-align: center;
}

.stage-number {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
}

.funnel-stage h5 {
  margin: 0 0 var(--spacing-xs);
  font-size: 0.95rem;
  color: var(--color-text);
}

.stage-app {
  margin: 0 0 var(--spacing-xs);
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
}

.stage-desc {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* 完整分析 CTA */
.report-cta {
  background: linear-gradient(
    135deg,
    rgba(230, 126, 34, 0.1),
    rgba(243, 156, 18, 0.05)
  );
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-xl);
  text-align: center;
}

.cta-text {
  margin: 0 0 var(--spacing-md);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: white;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
  background: linear-gradient(135deg, #c05a1e, #e67e22);
}

.cta-button-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #06c755, #05b64c);
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: 50px;
}

.cta-button-line:hover {
  background: linear-gradient(135deg, #05b64c, #04a343);
}

.cta-button-line svg {
  flex-shrink: 0;
}

/* 📧 信箱收集區塊 */
.report-email-cta {
  background: linear-gradient(
    135deg,
    rgba(39, 174, 96, 0.1) 0%,
    rgba(46, 204, 113, 0.05) 100%
  );
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin: var(--spacing-lg);
  text-align: center;
}

.email-cta-header {
  margin-bottom: var(--spacing-lg);
}

.email-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.email-cta-header h4 {
  margin: 0 0 var(--spacing-xs);
  font-size: 1.25rem;
  color: var(--color-text);
}

.email-cta-header p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.email-capture-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 500px;
  margin: 0 auto var(--spacing-md);
}

.email-capture-form input {
  flex: 1;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.email-capture-form input:focus {
  border-color: #27ae60;
}

.email-submit-btn {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.email-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.email-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.email-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* 成功狀態 */
.email-success {
  padding: var(--spacing-lg);
}

.email-success .success-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.email-success p {
  margin: 0 0 var(--spacing-xs);
  color: var(--color-text);
}

.email-success .success-hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* 響應式 */
@media (max-width: 768px) {
  .analyzer-input-group {
    flex-direction: column;
  }

  .analyzer-input-group .btn {
    width: 100%;
  }

  .report-header {
    padding: var(--spacing-md);
  }

  .report-sections {
    padding: var(--spacing-sm);
  }

  .report-section {
    padding: var(--spacing-md) 0;
  }

  .services-grid,
  .departments-grid {
    grid-template-columns: 1fr;
  }

  .funnel-flow {
    flex-direction: column;
  }

  .funnel-stage {
    min-width: auto;
  }

  .email-icon,
  .email-success .success-icon {
    font-size: 2rem;
  }

  .analyzer-input-group .btn,
  .email-submit-btn {
    white-space: normal;
  }

  .priority-high,
  .priority-medium,
  .priority-low {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .analyzer-section {
    padding: var(--spacing-xl) 0;
  }

  .analyzer-input-group {
    padding: var(--spacing-xs);
  }

  .analyzer-input-group input {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }

  .analyzer-input-group .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }

  .report-header {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .report-header h3 {
    font-size: 1.4rem;
  }

  .report-title {
    font-size: 1.1rem;
  }

  .report-summary {
    padding: var(--spacing-md);
    margin: var(--spacing-md);
  }

  .report-summary h4 {
    font-size: 1rem;
  }

  .report-section h4 {
    font-size: 1.1rem;
  }

  .report-section .section-header {
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
  }

  .optimization-card {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .department-card {
    padding: var(--spacing-md);
  }

  .department-card h5 {
    font-size: 1rem;
  }

  .email-capture-form {
    flex-direction: column;
  }

  .email-capture-form input {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .email-submit-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
  }

  .email-icon {
    font-size: 2rem;
  }

  .email-cta-header h4 {
    font-size: 1.1rem;
  }

  .report-cta {
    padding: var(--spacing-lg);
  }

  .cta-text {
    font-size: 0.85rem;
  }
}

/* === website-analyzer-premium.css === */
/* ============================================================
   AI 賦能診斷區塊樣式 - Premium 版本
   ✅ 符合 WCAG 3.0 / APCA 對比度標準
   ✅ 使用 Hermès 暖橘配色系統
   ✅ 8px Grid 間距規範
   ============================================================ */

/* === 核心區塊 - 保持暖橘主題 === */
.analyzer-section-premium {
  position: relative;
  padding: 80px 0 64px;
  /* 8px grid: 80 = 10*8, 64 = 8*8 */
  background: linear-gradient(
    180deg,
    var(--bg-section) 0%,
    #ede5d8 50%,
    var(--bg-light) 100%
  );
  overflow: hidden;
}

/* === 裝飾性背景 - 使用暖色調 === */
.analyzer-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.analyzer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.analyzer-glow-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -100px;
  left: -50px;
}

.analyzer-glow-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

/* 粒子效果 - 暖色調微粒 */
.analyzer-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      2px 2px at 100px 50px,
      rgba(210, 105, 30, 0.15),
      transparent
    ),
    radial-gradient(
      2px 2px at 200px 100px,
      rgba(205, 133, 63, 0.12),
      transparent
    ),
    radial-gradient(1px 1px at 300px 80px, rgba(176, 90, 21, 0.1), transparent);
  background-size: 350px 150px;
  animation: particles-drift 25s linear infinite;
}

@keyframes particles-drift {
  0% {
    transform: translateY(0) translateX(0);
  }

  100% {
    transform: translateY(-50px) translateX(20px);
  }
}

/* === 標題區 - APCA 對比度優化 === */
.analyzer-hero-header {
  text-align: center;
  max-width: 720px;
  /* 8px grid */
  margin: 0 auto 48px;
  /* 48 = 6*8 */
  position: relative;
  z-index: 1;
}

.analyzer-badge-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  /* 24 = 3*8 */
}

/* Badge: 深色背景 + 白色加粗文字 (避免橘色問題) */
.analyzer-badge-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* 使用深綠色確保白色文字有足夠對比 Lc > 60 */
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  color: #ffffff;
  font-size: 0.875rem;
  /* 14px */
  font-weight: 700;
  /* 加粗確保可讀性 */
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.analyzer-badge-ai {
  display: inline-flex;
  align-items: center;
  /* 使用深橘色 (--color-primary-dark) 確保對比度 */
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* 主標題: 深棕色確保 APCA Lc > 75 */
.analyzer-main-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  /* 28px - 40px */
  font-weight: 800;
  color: var(--text-primary);
  /* #1A0F0A - 極深棕 */
  margin: 0 0 16px;
  line-height: 1.3;
}

/* 高亮數字使用深橘色 */
.title-highlight {
  color: var(--color-primary-dark);
  /* #B85A15 深橘 */
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  opacity: 0.4;
}

/* 副標題: 深棕色確保 APCA Lc > 75 */
.analyzer-subtitle {
  font-size: 1.125rem;
  /* 18px */
  color: var(--text-secondary);
  /* #2D1810 */
  margin: 0;
  line-height: 1.7;
}

.analyzer-subtitle strong {
  color: var(--color-primary-dark);
  font-weight: 600;
}

/* === 輸入區 - 暖色調玻璃態 === */
.analyzer-input-premium {
  max-width: 640px;
  /* 8px grid */
  margin: 0 auto 32px;
  /* 32 = 4*8 */
  position: relative;
  z-index: 1;
}

.analyzer-input-container {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  /* #FFFAF5 暖白 */
  border: 2px solid var(--border-default);
  border-radius: 56px;
  /* 56 = 7*8 */
  padding: 8px 8px 8px 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.analyzer-input-container:focus-within {
  border-color: var(--color-primary);
  box-shadow:
    var(--shadow-card),
    0 0 0 4px rgba(210, 105, 30, 0.12);
}

.input-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  /* #5D4037 */
  margin-right: 12px;
}

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

/* 輸入框文字: 深棕色確保高對比 */
.analyzer-input-container input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  /* 16px */
  color: var(--text-primary);
  /* #1A0F0A */
  padding: 16px 0;
  min-width: 0;
}

.analyzer-input-container input::placeholder {
  color: var(--text-muted);
  /* #5D4037 - 確保 Lc > 45 */
}

/* === CTA 按鈕 - 深橘色背景避免橘色問題 === */
.analyzer-submit-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  /* 使用較深的橘色確保白色文字對比度 Lc > 60 */
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    #a04b0f 100%
  );
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  /* 加粗文字提高可讀性 */
  padding: 16px 24px;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* 使用 1px 邊框替代重陰影 */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(176, 90, 21, 0.25);
}

.analyzer-submit-btn:hover {
  background: linear-gradient(135deg, #a04b0f 0%, #8b3e0c 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(176, 90, 21, 0.35);
}

.analyzer-submit-btn:active {
  transform: translateY(0);
}

.analyzer-submit-btn .btn-icon {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.analyzer-submit-btn .btn-icon svg {
  width: 100%;
  height: 100%;
}

.analyzer-submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* === 信任標籤 - 深色文字確保對比度 === */
.analyzer-trust-signals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  /* 24 = 3*8 */
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.analyzer-trust-signals .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.analyzer-trust-signals .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(
    135deg,
    var(--color-primary, #d2691e),
    var(--color-accent, #cd853f)
  );
  border-radius: 50%;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

.analyzer-trust-signals .trust-text {
  font-weight: 500;
}

/* === 錯誤狀態 === */
.analyzer-section-premium .analyzer-error {
  display: none;
  text-align: center;
  padding: 12px 20px;
  margin-top: 16px;
  /* 使用深紅色確保對比度 */
  color: #b71c1c;
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.2);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* === 載入狀態 === */
.analyzer-section-premium .analyzer-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  position: relative;
  z-index: 1;
}

.analyzer-section-premium .progress-container {
  width: 100%;
  max-width: 400px;
  height: 8px;
  /* 8px grid */
  background: rgba(93, 64, 55, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.analyzer-section-premium .progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
  border-radius: 4px;
  transition: width 0.3s ease;
}

.analyzer-section-premium .progress-text {
  color: var(--text-secondary);
  /* #2D1810 */
  font-size: 0.95rem;
}

/* === 響應式設計 === */
@media (max-width: 768px) {
  .analyzer-section-premium {
    padding: 56px 16px 48px;
    /* 8px grid */
  }

  .analyzer-hero-header {
    margin-bottom: 32px;
  }

  .analyzer-badge-group {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .analyzer-main-title {
    font-size: 1.5rem;
    /* 24px */
  }

  .analyzer-subtitle {
    font-size: 1rem;
    padding: 0 8px;
  }

  .analyzer-input-container {
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
    gap: 12px;
  }

  .input-icon {
    display: none;
  }

  .analyzer-input-container input {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .analyzer-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .analyzer-trust-signals {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .analyzer-trust-signals .trust-item {
    width: 260px;
    max-width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .analyzer-section-premium {
    padding: 40px 12px 32px;
  }

  .analyzer-hero-header {
    margin-bottom: 24px;
  }

  .analyzer-badge-group {
    gap: 6px;
    margin-bottom: 16px;
  }

  .analyzer-badge-free,
  .analyzer-badge-ai {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .analyzer-main-title {
    font-size: 1.25rem;
  }

  .analyzer-subtitle {
    font-size: 0.875rem;
    padding: 0 4px;
  }

  .analyzer-input-container {
    border-radius: 12px;
    padding: 12px;
    gap: 8px;
  }

  .analyzer-input-container input {
    padding: 10px;
    font-size: 0.9rem;
  }

  .analyzer-submit-btn {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .analyzer-trust-signals {
    gap: 8px;
    margin-bottom: 24px;
  }

  .analyzer-trust-signals .trust-item {
    width: 240px;
    max-width: 100%;
    font-size: 0.8rem;
    gap: 8px;
  }

  .analyzer-trust-signals .trust-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.55rem;
  }
}

/* === Container z-index === */
.analyzer-section-premium .container {
  position: relative;
  z-index: 1;
}

/* === website-analyzer-report.css === */
/**
 * @file    : css/website-analyzer-report.css
 * @purpose : 分析報告視覺升級樣式（使用軟編碼變數）
 * @version : 2.0.0
 * @depends : variables.css
 */

/* ============================================================
   報告容器 - 升級版
   ============================================================ */
.analyzer-report {
  background: var(--report-bg-section);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--report-glow-soft), var(--report-shadow-card);
  border: 1px solid var(--report-border-accent);
}

/* ============================================================
   報告標題區 - APCA Lc 75+ 合規設計（/visionnew 規範）
   ============================================================ */
.report-header {
  background: linear-gradient(
    135deg,
    #0d0705 0%,
    #1a0f0a 50%,
    #2d1810 100%
  ) !important;
  color: #ffffff !important;
  padding: 36px 32px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.report-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* 減少橘色光暈透明度，避免污染白色文字對比度 */
  background: radial-gradient(
    ellipse at 70% 80%,
    rgba(210, 105, 30, 0.12) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.report-header h3 {
  margin: 0 0 20px;
  font-size: var(--report-font-title) !important;
  font-weight: 800;
  /* 增加到 800 確保 APCA 合規 */
  letter-spacing: -0.02em;
  line-height: 1.15;
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* 增加文字陰影提升對比 */
}

.report-title {
  font-size: 1.1rem !important;
  font-weight: 700;
  /* 增加到 700 */
  margin: 0 0 12px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.report-meta {
  margin: 0;
  opacity: 0.9;
  /* 提高透明度 */
  font-size: var(--report-font-meta) !important;
  font-weight: 500;
  /* 增加 weight */
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.95);
}

/* ============================================================
   執行摘要 - 強調區塊（/visionnew 規範）
   ============================================================ */
.report-summary {
  background: linear-gradient(
    135deg,
    rgba(210, 105, 30, 0.08),
    rgba(205, 133, 63, 0.04)
  );
  padding: 24px !important;
  margin: var(--report-spacing-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--report-highlight);
  position: relative;
}

.report-summary::before {
  content: "摘";
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(210, 105, 30, 0.06);
  line-height: 1;
}

.report-summary h4 {
  margin: 0 0 var(--report-spacing-element);
  color: var(--report-highlight);
  font-size: 1.25rem !important;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.report-summary p {
  margin: 0;
  line-height: 1.85;
  color: var(--text-secondary);
  font-size: var(--report-font-body) !important;
}

/* ============================================================
   報告區塊 - 升級版（/visionnew 規範）
   ============================================================ */
.report-sections {
  padding: 32px !important;
}

.report-section {
  padding: 32px 0 !important;
  border-bottom: 1px solid var(--border-subtle);
}

.report-section:last-child {
  border-bottom: none;
}

.report-section .section-header {
  display: flex;
  align-items: center;
  gap: var(--report-spacing-element);
  margin-bottom: 28px !important;
}

.report-section .section-number {
  font-size: 1rem !important;
  font-weight: 700;
  color: white;
  background: var(--report-highlight);
  padding: 8px 16px !important;
  border-radius: var(--radius-md);
  min-width: 48px !important;
  text-align: center;
  box-shadow: 0 2px 8px rgba(210, 105, 30, 0.25);
}

.report-section h4 {
  margin: 0;
  font-size: var(--report-font-section) !important;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ============================================================
   服務項目卡片 - 升級版
   ============================================================ */
.services-grid {
  display: grid;
  gap: var(--report-spacing-element);
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.analyzer-service-card {
  background: var(--report-bg-card);
  border: 1px solid var(--report-border-accent);
  border-radius: var(--radius-lg);
  padding: var(--report-spacing-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.analyzer-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--report-highlight),
    var(--color-accent)
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.analyzer-service-card:hover {
  box-shadow: var(--report-shadow-card);
  transform: translateY(-4px);
  border-color: var(--report-highlight);
}

.analyzer-service-card:hover::before {
  opacity: 1;
}

.analyzer-service-card h5 {
  margin: 0 0 var(--spacing-sm);
  font-size: var(--report-font-card-title);
  color: var(--text-primary);
  font-weight: 600;
}

.analyzer-service-card p {
  margin: 0 0 var(--report-spacing-element);
  font-size: var(--report-font-body);
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-category {
  display: inline-block;
  background: rgba(210, 105, 30, 0.1);
  color: var(--report-highlight);
  font-size: var(--report-font-tag);
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ============================================================
   PDF 下載按鈕
   ============================================================ */
.report-download-section {
  display: flex;
  justify-content: center;
  gap: var(--report-spacing-element);
  padding: var(--report-spacing-card);
  background: linear-gradient(
    135deg,
    rgba(26, 15, 10, 0.03),
    rgba(210, 105, 30, 0.05)
  );
  border-top: 1px solid var(--report-border-accent);
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pdf-brand-dark), #2d1810);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  border: none;
  font-size: var(--report-font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(26, 15, 10, 0.2);
}

.pdf-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 15, 10, 0.3);
  background: linear-gradient(135deg, #2d1810, var(--pdf-brand-dark));
}

.pdf-download-btn svg {
  width: 20px;
  height: 20px;
}

.pdf-download-btn .btn-text {
  letter-spacing: 0.02em;
}

/* ============================================================
   PDF 生成中狀態
   ============================================================ */
.pdf-generating {
  position: relative;
  pointer-events: none;
  opacity: 0.85;
}

.pdf-generating::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: pdf-spin 0.8s linear infinite;
}

@keyframes pdf-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   公司介紹區塊（PDF 專用，但在網頁也可見）
   ============================================================ */
.company-intro-section {
  background: linear-gradient(135deg, var(--pdf-brand-dark), #2d1810);
  color: white;
  padding: var(--report-spacing-section) var(--report-spacing-card);
  margin: var(--report-spacing-card);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.company-intro-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(210, 105, 30, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.company-intro-header {
  display: flex;
  align-items: center;
  gap: var(--report-spacing-element);
  margin-bottom: var(--report-spacing-card);
  position: relative;
  z-index: 1;
}

.company-logo-placeholder {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--report-highlight),
    var(--color-accent)
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 4px 16px rgba(210, 105, 30, 0.3);
}

.company-intro-header h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.company-intro-header p {
  margin: 4px 0 0;
  opacity: 0.85;
  font-size: var(--report-font-meta);
}

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

.company-intro-content p {
  line-height: 1.8;
  font-size: var(--report-font-body);
  margin: 0 0 var(--report-spacing-element);
  opacity: 0.95;
}

.company-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--report-spacing-element);
}

.company-service-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: var(--report-font-tag);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.company-service-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.company-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--report-spacing-card);
  color: var(--report-highlight);
  font-weight: 600;
  font-size: var(--report-font-body);
  text-decoration: none;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.company-cta-link:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   表格字體升級（/visionnew 規範）
   ============================================================ */
.opportunities-table {
  font-size: var(--report-font-table-cell) !important;
}

.opportunities-table th {
  font-size: var(--report-font-table-header) !important;
  padding: 14px 16px !important;
  font-weight: 600;
}

.opportunities-table td {
  font-size: var(--report-font-table-cell) !important;
  padding: 14px 16px !important;
  line-height: 1.6;
}

.opportunities-table .benefit {
  font-size: var(--report-font-table-cell) !important;
  font-weight: 600;
}

/* ============================================================
   部門賦能卡片字體升級（/visionnew 規範）
   ============================================================ */
.department-card h5 {
  font-size: var(--report-font-department-title) !important;
  margin-bottom: 16px !important;
}

.department-card ul {
  font-size: var(--report-font-list-item) !important;
  line-height: 1.8;
}

.dept-label {
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--text-muted);
}

.tool-tag {
  font-size: 0.95rem !important;
  padding: 6px 14px !important;
}

/* ============================================================
   職位層級卡片字體升級（/visionnew 規範）
   ============================================================ */
.position-card h5 {
  font-size: 1.1rem !important;
  margin-bottom: 12px !important;
}

.position-card li {
  font-size: var(--report-font-list-item) !important;
  line-height: 2;
}

.position-card .arrow {
  font-weight: 700;
}

/* ============================================================
   優化建議字體升級（/visionnew 規範）
   ============================================================ */
.optimization-card h5,
.opt-content h5 {
  font-size: 1.05rem !important;
}

.optimization-card p,
.opt-content p {
  font-size: var(--report-font-body) !important;
  line-height: 1.7;
}

.priority-high,
.priority-medium,
.priority-low {
  font-size: 0.95rem !important;
  padding: 6px 14px !important;
  font-weight: 600;
}

/* ============================================================
   銷售漏斗字體升級（/visionnew 規範）
   ============================================================ */
.funnel-stage h5 {
  font-size: 1.2rem !important;
}

.stage-app {
  font-size: 1.05rem !important;
}

.stage-desc {
  font-size: 1rem !important;
  line-height: 1.6;
}

/* ============================================================
   底部 PDF 下載區塊
   ============================================================ */
.report-download-bottom {
  background: linear-gradient(
    135deg,
    rgba(26, 15, 10, 0.06),
    rgba(210, 105, 30, 0.08)
  ) !important;
  border-top: 2px solid var(--report-border-accent);
  margin-top: 0;
  padding: 28px !important;
}

.pdf-download-btn-bottom {
  padding: 14px 28px !important;
  font-size: 1rem !important;
}

.download-hint {
  margin: 16px 0 0;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   響應式優化
   ============================================================ */
@media (max-width: 768px) {
  .report-header {
    padding: 32px 20px !important;
  }

  .report-header h3 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  .report-title {
    font-size: 1.1rem !important;
  }

  .report-meta {
    font-size: 0.85rem !important;
  }

  .report-sections {
    padding: var(--report-spacing-element) !important;
  }

  .report-section h4 {
    font-size: 1.15rem !important;
  }

  .report-section .section-header {
    margin-bottom: 16px !important;
  }

  .report-section .section-number {
    font-size: 0.85rem !important;
    padding: 6px 12px !important;
    min-width: 36px !important;
  }

  .report-summary h4 {
    font-size: 1.2rem !important;
  }

  .report-summary p {
    font-size: 1rem !important;
  }

  .report-summary::before {
    font-size: 3rem;
  }

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

  .analyzer-service-card h5 {
    font-size: 1.1rem !important;
  }

  .analyzer-service-card p {
    font-size: 0.95rem !important;
  }

  .service-category {
    font-size: 0.8rem !important;
  }

  .department-card h5 {
    font-size: 1.15rem !important;
  }

  .department-card ul {
    font-size: 0.95rem !important;
  }

  .dept-label {
    font-size: 0.85rem !important;
  }

  .tool-tag {
    font-size: 0.8rem !important;
    padding: 4px 10px !important;
  }

  .position-card h5 {
    font-size: 1.1rem !important;
  }

  .position-card li {
    font-size: 0.95rem !important;
  }

  .optimization-card h5,
  .opt-content h5 {
    font-size: 1.05rem !important;
  }

  .optimization-card p,
  .opt-content p {
    font-size: 0.9rem !important;
  }

  .priority-high,
  .priority-medium,
  .priority-low {
    font-size: 0.8rem !important;
    padding: 4px 10px !important;
  }

  .funnel-stage h5 {
    font-size: 1rem !important;
  }

  .stage-app {
    font-size: 0.9rem !important;
  }

  .stage-desc {
    font-size: 0.85rem !important;
  }

  .opportunities-table {
    font-size: 0.85rem !important;
    table-layout: fixed !important;
    word-break: break-word !important;
  }

  .opportunities-table th {
    font-size: 0.8rem !important;
    padding: 10px 8px !important;
  }

  .opportunities-table td {
    font-size: 0.8rem !important;
    padding: 10px 8px !important;
    line-height: 1.5 !important;
  }

  /* 固定欄寬比例：領域 18% / AI應用 32% / 效益 38% / 難度 12% */
  .opportunities-table th:nth-child(1),
  .opportunities-table td:nth-child(1) {
    width: 18%;
  }
  .opportunities-table th:nth-child(2),
  .opportunities-table td:nth-child(2) {
    width: 32%;
  }
  .opportunities-table th:nth-child(3),
  .opportunities-table td:nth-child(3) {
    width: 38%;
  }
  .opportunities-table th:nth-child(4),
  .opportunities-table td:nth-child(4) {
    width: 12%;
    text-align: center;
  }

  .report-download-section {
    flex-direction: column;
    align-items: stretch;
  }

  .pdf-download-btn {
    justify-content: center;
  }

  .report-download-bottom {
    padding: 24px !important;
  }

  .pdf-download-btn-bottom {
    padding: 14px 24px !important;
    font-size: 1rem !important;
  }

  .company-intro-section {
    padding: 24px 16px;
    margin: 16px;
  }

  .company-intro-header h4 {
    font-size: 1.2rem;
  }

  .company-intro-content p {
    font-size: 0.95rem;
  }

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

@media (max-width: 480px) {
  .report-summary::before {
    font-size: 2rem;
  }

  .company-services-grid {
    grid-template-columns: 1fr;
  }

  .analyzer-service-card {
    padding: var(--report-spacing-element);
  }

  /* === 手機版：表格轉卡片佈局 === */
  .opportunities-table {
    font-size: 0.85rem !important;
  }

  .opportunities-table thead {
    display: none !important;
  }

  .opportunities-table,
  .opportunities-table tbody,
  .opportunities-table tr,
  .opportunities-table td {
    display: block !important;
    width: 100% !important;
  }

  .opportunities-table tr {
    background: rgba(0, 0, 0, 0.015);
    border-radius: 12px;
    padding: 14px 16px !important;
    margin-bottom: 12px;
    border: 1px solid var(--color-border, #eee);
    border-bottom: 1px solid var(--color-border, #eee) !important;
  }

  .opportunities-table td {
    padding: 3px 0 !important;
    border-bottom: none !important;
    text-align: left !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }

  /* 領域 - 加粗作為卡片標題 */
  .opportunities-table td:nth-child(1) {
    font-weight: 700;
    font-size: 0.95rem !important;
    color: var(--color-primary, #d4740e);
    padding-bottom: 4px !important;
    width: auto !important;
  }

  /* AI 應用 */
  .opportunities-table td:nth-child(2) {
    color: var(--color-text, #333);
    padding-bottom: 6px !important;
    width: auto !important;
  }

  /* 預估效益 */
  .opportunities-table td:nth-child(3) {
    width: auto !important;
  }

  .opportunities-table td.benefit {
    font-size: 0.85rem !important;
    line-height: 1.7 !important;
    padding-bottom: 6px !important;
  }

  /* 難度標籤 */
  .opportunities-table td:nth-child(4) {
    text-align: left !important;
    padding-top: 4px !important;
    width: auto !important;
  }

  /* 每個 td 前加標籤 */
  .opportunities-table td:nth-child(2)::before {
    content: "AI 應用：";
    font-weight: 600;
    color: var(--color-text-secondary, #666);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 2px;
  }

  .opportunities-table td:nth-child(3)::before {
    content: "預估效益：";
    font-weight: 600;
    color: var(--color-text-secondary, #666);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 2px;
  }

  .opportunities-table td:nth-child(4)::before {
    content: "難度：";
    font-weight: 600;
    color: var(--color-text-secondary, #666);
    font-size: 0.75rem;
    display: inline;
    margin-right: 6px;
  }
}

/* ============================================================
   語音播報按鈕
   ============================================================ */
.tts-generate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d2691e, #cd853f);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  border: none;
  font-size: var(--report-font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(210, 105, 30, 0.25);
  position: relative;
}

.tts-generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(210, 105, 30, 0.35);
  background: linear-gradient(135deg, #cd853f, #d2691e);
}

.tts-generate-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.tts-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: tts-spin 0.8s linear infinite;
}

.tts-generating .tts-spinner {
  display: inline-block;
}

.tts-generating svg {
  display: none;
}

.tts-generating {
  pointer-events: none;
  opacity: 0.85;
}

.tts-ready {
  background: linear-gradient(135deg, #2d8a4e, #45b36b);
  box-shadow: 0 4px 16px rgba(45, 138, 78, 0.25);
}

.tts-ready:hover {
  background: linear-gradient(135deg, #45b36b, #2d8a4e);
  box-shadow: 0 6px 24px rgba(45, 138, 78, 0.35);
}

@keyframes tts-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   首頁底部語音播放器
   ============================================================ */
.analyzer-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 100%);
  border-top: 2px solid rgba(210, 105, 30, 0.3);
  z-index: 9999;
  display: none;
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.analyzer-bottom-bar.visible {
  display: block;
  animation: analyzerBarSlideUp 0.4s ease;
}

@keyframes analyzerBarSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.analyzer-bar-inner {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.analyzer-bar-play {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.analyzer-bar-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #d2691e, #cd853f);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(210, 105, 30, 0.3);
}

.analyzer-bar-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.4);
}

.analyzer-bar-play-btn.playing {
  background: linear-gradient(135deg, #cd853f, #d2691e);
}

.analyzer-bar-audio-info {
  flex: 1;
  min-width: 0;
}

.analyzer-bar-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.analyzer-bar-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  margin-bottom: 2px;
}

.analyzer-bar-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d2691e, #cd853f);
  border-radius: 2px;
  width: 0;
  transition: width 0.1s linear;
}

.analyzer-bar-time {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
}

/* Push floating elements above bar — use body:has() (sibling ~ won't work, floats are before bar in DOM) */
body:has(.analyzer-bottom-bar.visible) .floating-line-cta {
  bottom: 166px;
}
body:has(.analyzer-bottom-bar.visible) .chat-widget-container {
  bottom: 94px;
}

body:has(.analyzer-bottom-bar.visible) {
  padding-bottom: 60px;
}

/* ============================================================
   語音播報 - 響應式
   ============================================================ */
@media (max-width: 768px) {
  .tts-generate-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .analyzer-bar-inner {
    padding: 8px 12px;
    gap: 8px;
  }

  .analyzer-bar-play-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .analyzer-bar-title {
    font-size: 0.75rem;
  }

  body:has(.analyzer-bottom-bar.visible) .floating-line-cta {
    bottom: 158px;
  }
  body:has(.analyzer-bottom-bar.visible) .chat-widget-container {
    bottom: 94px;
  }
}

@media (max-width: 480px) {
  .report-download-section {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .tts-generate-btn {
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .analyzer-bar-inner {
    padding: 8px 10px;
  }

  .analyzer-bar-play-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .analyzer-bar-title {
    font-size: 0.7rem;
  }

  .analyzer-bar-time {
    font-size: 0.6rem;
  }

  body:has(.analyzer-bottom-bar.visible) .floating-line-cta {
    bottom: 150px;
  }
  body:has(.analyzer-bottom-bar.visible) .chat-widget-container {
    bottom: 94px;
  }
}

/* === trust-section.css === */
/**
 * @file    : css/trust-section.css
 * @purpose : 「為什麼信任我們」區塊樣式
 * @depends : ['css/variables.css']
 */

/* ========================================
   信任區塊容器
   ======================================== */
.trust-section {
  /* L-01 修復：增加上下呼吸感 (專家建議 120px) */
  padding: var(--spacing-5xl) 0;
  /* 使用燕麥色背景 - 淺色主題 */
  background: var(--bg-section);
  position: relative;
}

/* ========================================
   信任網格 - 四欄佈局
   ======================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

/* ========================================
   信任卡片
   ======================================== */
.trust-card {
  text-align: center;
  padding: var(--spacing-xl);
  /* U-01 修復：添加實體容器感 */
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  /* 使用微妙邊框取代陰影 */
  border: 1px solid rgba(0, 0, 0, 0.06);
  /* 非線性動畫 - 高質感 */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-primary);
  /* 節制的反饋 - 僅 4px 位移 */
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(210, 105, 30, 0.08);
}

.trust-icon {
  /* V-01 修復：統一圖標樣式與顏色 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: var(--spacing-lg);
  /* 使用 APCA 合規的深橘色漸層 */
  background: linear-gradient(
    135deg,
    var(--color-primary-accessible) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--text-on-primary);
  border-radius: var(--radius-lg);
  /* 統一的微發光邊框 */
  box-shadow: 0 4px 12px rgba(154, 74, 16, 0.25);
}

.trust-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.trust-description {
  font-size: var(--font-size-base);
  /* C-02 修復：提升文字對比度 */
  color: var(--text-secondary);
  /* T-02 修復：增加行高至 1.75 (中文推薦) */
  line-height: 1.75;
  /* T-03 修復：限制寬度避免資訊牆 */
  max-width: 280px;
  margin: 0 auto;
}

/* ========================================
   服務承諾區塊
   ======================================== */
.trust-promise {
  max-width: 800px;
  /* U-02 修復：增加與卡片區的間距 */
  margin: var(--spacing-3xl) auto 0;
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-xl);
  /* 使用分層表面系統 */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(210, 105, 30, 0.15);
}

.promise-badge {
  display: inline-block;
  /* C-01 修復：使用 APCA 合規的深橘色 */
  background: linear-gradient(
    135deg,
    var(--color-primary-accessible) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--text-on-primary);
  padding: var(--spacing-sm) var(--spacing-xl);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  /* C-01 修復：增加字重至 700 */
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xl);
  /* 添加微妙發光 */
  box-shadow: 0 4px 12px rgba(154, 74, 16, 0.3);
}

.promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md) var(--spacing-xl);
}

.promise-list li {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========================================
   響應式設計
   ======================================== */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .trust-card {
    padding: var(--spacing-lg);
  }

  .trust-icon {
    font-size: 2.5rem;
  }

  .trust-promise {
    padding: var(--spacing-xl);
  }

  .promise-list {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: var(--spacing-3xl) 0;
  }

  .trust-grid {
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
  }

  .trust-card {
    padding: var(--spacing-md);
  }

  .trust-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-md);
  }

  .trust-title {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
  }

  .trust-description {
    font-size: var(--font-size-sm);
    max-width: none;
  }

  .trust-promise {
    padding: var(--spacing-lg) var(--spacing-md);
    margin: var(--spacing-2xl) auto 0;
  }

  .promise-badge {
    font-size: var(--font-size-xs);
    padding: var(--spacing-xs) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }

  .promise-list li {
    font-size: var(--font-size-sm);
  }
}

/* === icons.css === */
/**
 * @file    : css/icons.css
 * @purpose : SVG Icon 系統 - 符合 /visionnew 規範的專業圖標解決方案
 * @version : 2.0.0
 * @spec    : stroke-width: 1.5px 統一標準 + 8px 網格 + APCA 對比度
 */

/* ========================================
   SVG Icon Base System
   - stroke-width: 1.5px 統一標準
   - 8px 網格對齊
   ======================================== */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* 統一 SVG 樣式 */
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke: currentColor;
}

/* 尺寸變體 - 8px 網格 */
.icon-xs {
    width: 16px;
    /* 8px × 2 */
    height: 16px;
}

.icon-sm {
    width: 20px;
    /* 接近 8px × 2.5，用於行內 */
    height: 20px;
}

.icon-md {
    width: 24px;
    /* 8px × 3 */
    height: 24px;
}

.icon-lg {
    width: 32px;
    /* 8px × 4 */
    height: 32px;
}

.icon-xl {
    width: 48px;
    /* 8px × 6 */
    height: 48px;
}

/* ========================================
   Icon 容器 - 帶背景的圖標徽章
   ======================================== */
.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary-accessible, #9A4A10) 0%, var(--color-primary-dark, #7A3A08) 100%);
    border-radius: var(--radius-lg, 12px);
    color: var(--text-light, #FFFFFF);
}

.icon-badge .icon {
    stroke: currentColor;
}

.icon-badge-outline {
    background: transparent;
    border: 1.5px solid var(--color-primary-accessible, #9A4A10);
    color: var(--color-primary-accessible, #9A4A10);
}

.icon-badge-subtle {
    background: rgba(154, 74, 16, 0.08);
    color: var(--color-primary-accessible, #9A4A10);
}

/* ========================================
   Icon 色彩系統 - APCA 合規
   ======================================== */
.icon-primary {
    color: var(--color-primary-accessible, #9A4A10);
}

.icon-muted {
    color: var(--text-muted, #5D4037);
}

.icon-light {
    color: var(--text-light, #FFFFFF);
}

.icon-success {
    color: #2E7D32;
    /* 適度飽和度的綠色 */
}

.icon-warning {
    color: #F57C00;
    /* 警告橘 */
}

/* ========================================
   Checkmark Icon - CSS 實現
   stroke-width 視覺等效於 1.5px
   ======================================== */
.icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: var(--spacing-sm, 8px);
    position: relative;
    flex-shrink: 0;
}

.icon-check::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid var(--color-primary-accessible, #9A4A10);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* 圓形背景版本 */
.icon-check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: var(--spacing-sm, 8px);
    background: var(--color-primary-accessible, #9A4A10);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.icon-check-circle::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    width: 6px;
    height: 10px;
    border: solid var(--text-light, #FFFFFF);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ========================================
   Service Icon Badge - 服務頁面專用
   替代原有的文字標籤和 emoji
   ======================================== */
.service-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary-accessible, #9A4A10) 0%, var(--color-primary-dark, #7A3A08) 100%);
    border-radius: var(--radius-md, 8px);
    color: var(--text-light, #FFFFFF);
    flex-shrink: 0;
}

.service-icon-badge svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ========================================
   Footer Nav Icon - 導覽圖標
   ======================================== */
.footer-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-sm, 8px);
    background: linear-gradient(135deg, var(--color-primary-accessible, #9A4A10) 0%, var(--color-primary-dark, #7A3A08) 100%);
    border-radius: var(--radius-lg, 12px);
    color: var(--text-light, #FFFFFF);
    font-size: 0;
    /* 隱藏文字，只顯示 SVG */
}

.footer-nav-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* 兼容舊版文字標籤：如果沒有 SVG，顯示文字 */
.footer-nav-icon:empty::before,
.footer-nav-icon:not(:has(svg)) {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ========================================
   Benefit Icon - 效益卡片圖標
   ======================================== */
.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-md, 16px);
    background: rgba(154, 74, 16, 0.08);
    border-radius: var(--radius-xl, 16px);
    color: var(--color-primary-accessible, #9A4A10);
    font-size: 0;
    /* 隱藏文字 */
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ========================================
   Trust Icon - 信任區塊圖標
   ======================================== */
.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-lg, 24px);
    background: linear-gradient(135deg, var(--color-primary-accessible, #9A4A10) 0%, var(--color-primary-dark, #7A3A08) 100%);
    border-radius: var(--radius-xl, 16px);
    color: var(--text-light, #FFFFFF);
    font-size: 0;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ========================================
   Tech Icon - 技術區塊圖標
   ======================================== */
.service-tech-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary-accessible, #9A4A10) 0%, var(--color-primary-dark, #7A3A08) 100%);
    border-radius: var(--radius-sm, 4px);
    color: var(--text-light, #FFFFFF);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-right: var(--spacing-sm, 8px);
    flex-shrink: 0;
}

.service-tech-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ========================================
   Target Icon - 適用對象圖標
   ======================================== */
.service-target-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(154, 74, 16, 0.1);
    border-radius: var(--radius-sm, 4px);
    color: var(--color-primary-accessible, #9A4A10);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-right: var(--spacing-sm, 8px);
    flex-shrink: 0;
}

.service-target-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ========================================
   Sound Toggle Icon
   ======================================== */
.sound-toggle .sound-icon {
    display: none;
    font-size: 0;
    /* 隱藏文字 */
}

.sound-toggle .sound-icon.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-toggle svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ========================================
   間距補償 - Emoji 移除後的視覺平衡
   ======================================== */
.icon-gap {
    margin-right: var(--spacing-sm, 8px);
}

.icon-gap-lg {
    margin-right: var(--spacing-md, 16px);
}

/* ========================================
   Accessibility (A11y)
   ======================================== */
.icon[aria-hidden="true"] {
    pointer-events: none;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* === floating-line.css === */
/* ── Floating LINE CTA ── */
.floating-line-cta {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.floating-line-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.fab-btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #06c755;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
  transition: all 0.2s;
  text-decoration: none;
}

.fab-btn-line:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 28px rgba(6, 199, 85, 0.55);
}

/* ── FAB Typewriter Label ── */
.fab-label-line {
  position: absolute;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  min-height: 30px;
  display: flex;
  align-items: center;
  bottom: 68px;
  right: 0;
  background: #06c755;
  box-shadow: 0 2px 12px rgba(6, 199, 85, 0.35);
}

.fab-label-line.typing {
  opacity: 1;
}

.fab-label-line .fab-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: rgba(255, 255, 255, 0.8);
  margin-left: 1px;
  animation: fabCursorBlink 0.6s step-end infinite;
}

@keyframes fabCursorBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ── RWD ── */
@media (max-width: 768px) {
  .floating-line-cta {
    bottom: 88px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .floating-line-cta {
    bottom: 80px;
    right: 16px;
  }
  .fab-btn-line {
    width: 52px;
    height: 52px;
  }
  .fab-label-line {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

/* === p1-marketing/not-for-section.css === */
/**
 * 負面過濾區塊 (Daniel Priestley - Not For Section)
 * @module p1-marketing/not-for-section
 */

.not-for-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: linear-gradient(180deg,
            rgba(139, 69, 19, 0.1) 0%,
            rgba(45, 35, 28, 0.95) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.not-for-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.not-for-section .section-header h2 {
    color: #F59E0B;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.not-for-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: var(--font-size-base);
}

.not-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
}

.not-for-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.not-for-item:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.5);
}

.not-for-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    color: #EF4444;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.not-for-content h4 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.not-for-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: var(--font-size-sm);
    line-height: 1.5;
    margin: 0;
}

.not-for-alternative {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
}

.not-for-alternative p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-base);
    margin: 0;
}

.not-for-alternative a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.not-for-alternative a:hover {
    color: var(--color-primary);
}
/* === p1-marketing/origin-story.css === */
/**
 * 嚮導起源故事 (Donald Miller - Origin Story)
 * @module p1-marketing/origin-story
 */

.origin-story-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.origin-story-card {
    max-width: 700px;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg,
            rgba(210, 105, 30, 0.15) 0%,
            rgba(45, 35, 28, 0.9) 100%);
    border: 1px solid rgba(210, 105, 30, 0.3);
    border-radius: var(--radius-xl);
    position: relative;
}

.origin-story-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(210, 105, 30, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.origin-story-card h2 {
    color: var(--color-accent);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.story-content {
    text-align: center;
}

.story-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.story-observation {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: var(--font-size-sm) !important;
}

.story-problem {
    font-size: var(--font-size-lg) !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.story-insight {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8) !important;
}

.story-decision {
    margin-top: var(--spacing-lg) !important;
}

.story-decision strong {
    color: var(--color-accent);
}

.story-promise {
    background: rgba(39, 174, 96, 0.15);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 3px solid #27AE60;
    text-align: left;
}
/* === p1-marketing/real-scenario.css === */
/**
 * 真實場景模擬 (Ann Handley - Real Scenario)
 * @module p1-marketing/real-scenario
 */

.real-scenario-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: rgba(45, 35, 28, 0.5);
}

.real-scenario-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.real-scenario-section .section-header h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.real-scenario-section .section-badge {
    display: inline-block;
    background: rgba(210, 105, 30, 0.2);
    color: var(--color-accent);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.scenario-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.scenario-timestamp {
    background: rgba(210, 105, 30, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--color-accent);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-dialogue {
    padding: var(--spacing-md);
}

.dialogue-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.dialogue-item:last-child {
    margin-bottom: 0;
}

.dialogue-item.caller {
    flex-direction: row;
}

.dialogue-item.ai {
    flex-direction: row-reverse;
}

.dialogue-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: 700;
    flex-shrink: 0;
}

.dialogue-item.caller .dialogue-avatar {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
}

.dialogue-item.ai .dialogue-avatar {
    background: rgba(210, 105, 30, 0.2);
    color: var(--color-accent);
}

.dialogue-bubble {
    max-width: 80%;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: 1.5;
}

.dialogue-item.caller .dialogue-bubble {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: rgba(255, 255, 255, 0.95);
    border-bottom-left-radius: 4px;
}

.dialogue-item.ai .dialogue-bubble {
    background: rgba(210, 105, 30, 0.15);
    border: 1px solid rgba(210, 105, 30, 0.3);
    color: rgba(255, 255, 255, 0.95);
    border-bottom-right-radius: 4px;
}

.scenario-note {
    background: rgba(39, 174, 96, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.scenario-note em {
    color: #4ADE80;
    font-size: var(--font-size-sm);
    font-style: normal;
}
/* === p1-marketing/workflow-layers.css === */
/**
 * 分層技術展示 (Paul Roetzer - Layered Workflow)
 * @module p1-marketing/workflow-layers
 */

.workflow-layers {
    margin-bottom: var(--spacing-lg);
}

.workflow-layer-toggle {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.layer-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.layer-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.layer-btn.active {
    background: var(--primary-gradient);
    border-color: var(--color-accent);
    color: white;
}

.workflow-simple {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.simple-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-sm);
    font-weight: 500;
    min-width: 100px;
    text-align: center;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.simple-step:hover {
    border-color: rgba(210, 105, 30, 0.4);
    background: rgba(210, 105, 30, 0.05);
}

.simple-step .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.simple-step .step-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent);
}

.simple-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
}

.simple-arrow svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.4);
}

.simple-note {
    color: rgba(255, 255, 255, 0.87);
    font-size: var(--font-size-sm);
    text-align: center;
}
/* === p1-marketing/industries.css === */
/**
 * 適合行業列表 (Industries Section)
 * @module p1-marketing/industries
 */

.industries-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: rgba(39, 174, 96, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.industries-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.industries-section .section-header h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(39, 174, 96, 0.15);
    border-color: rgba(39, 174, 96, 0.5);
    transform: translateY(-2px);
}

.industry-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.2);
    color: #4ADE80;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.industry-item h4 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.industry-item p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: var(--font-size-sm);
    margin: 0;
}
/* === p1-marketing/guarantee.css === */
/**
 * 產出保證區塊 (Output Guarantee Section)
 * @module p1-marketing/guarantee
 */

.output-guarantee-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(180deg,
            rgba(39, 174, 96, 0.05) 0%,
            rgba(45, 35, 28, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.output-guarantee-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.output-guarantee-section .section-header h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.output-guarantee-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: var(--font-size-base);
    font-weight: 500;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-md);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.guarantee-item {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-lg);
}

.guarantee-number {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #4ADE80;
    line-height: 1.2;
}

.guarantee-label {
    display: block;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

.guarantee-badge {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(39, 174, 96, 0.2);
    border: 2px solid rgba(39, 174, 96, 0.5);
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
}

.guarantee-badge strong {
    color: #4ADE80;
    font-size: var(--font-size-base);
}
/* === p1-marketing/voice-collection.css === */
/**
 * 品牌聲音採集區塊 (Voice Collection Section)
 * @module p1-marketing/voice-collection
 */

.voice-collection-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: rgba(45, 35, 28, 0.5);
}

.voice-collection-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.voice-collection-section .section-header h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.voice-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 600px;
    margin: 0 auto;
}

.voice-step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(210, 105, 30, 0.1);
    border: 1px solid rgba(210, 105, 30, 0.2);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.voice-step:hover {
    background: rgba(210, 105, 30, 0.15);
    border-color: rgba(210, 105, 30, 0.4);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    border-radius: 50%;
    color: white;
    font-size: var(--font-size-base);
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.step-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.5;
}
/* === p1-marketing/human-ai-boundary.css === */
/**
 * 人機協作邊界區塊 (Human-AI Boundary Section)
 * @module p1-marketing/human-ai-boundary
 */

.human-ai-boundary-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: rgba(45, 35, 28, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.human-ai-boundary-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.human-ai-boundary-section .section-header h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.human-ai-boundary-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: var(--font-size-base);
}

.boundary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.boundary-card {
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
}

.boundary-card.ai-handles {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.boundary-card.human-handles {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.boundary-card h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.boundary-card.ai-handles h3::before {
    content: '🤖 ';
}

.boundary-card.human-handles h3::before {
    content: '👤 ';
}

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

.boundary-list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.boundary-list li::before {
    position: absolute;
    left: 0;
    font-weight: 700;
}

.boundary-list li.positive::before {
    content: '✓';
    color: #4ADE80;
}

.boundary-list li.transfer::before {
    content: '→';
    color: #3B82F6;
}
/* === p1-marketing/output-preview.css === */
/**
 * 輸出預覽區塊 (Output Preview Section)
 * @module p1-marketing/output-preview
 */

.output-preview-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: rgba(45, 35, 28, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.output-preview-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.output-preview-section .section-badge {
    display: inline-block;
    background: rgba(39, 174, 96, 0.2);
    color: #4ADE80;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.output-preview-section .section-header h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.output-preview-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-bottom: 1px solid #ccc;
}

.preview-badge {
    background: rgba(39, 174, 96, 0.2);
    color: #27AE60;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
}

.preview-title {
    color: #333;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.preview-content {
    padding: var(--spacing-lg);
}

.preview-section {
    margin-bottom: var(--spacing-md);
}

.preview-section:last-child {
    margin-bottom: 0;
}

.preview-section h4 {
    color: #333;
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.preview-section ul {
    list-style: disc;
    padding-left: var(--spacing-lg);
    margin: 0;
}

.preview-section li {
    color: #555;
    font-size: var(--font-size-sm);
    line-height: 1.8;
}

.preview-section li strong {
    color: #333;
}

.preview-attachment {
    color: #3B82F6;
    font-size: var(--font-size-sm);
    text-decoration: underline;
    margin: 0;
}

.preview-footer {
    background: #f5f5f5;
    padding: var(--spacing-sm) var(--spacing-md);
    border-top: 1px solid #ddd;
    text-align: center;
}

.preview-footer em {
    color: #555;
    font-size: var(--font-size-xs);
}
/* === p1-marketing/content-nurture.css === */
/**
 * 內容培育入口 (Content Nurturing - Justin Welsh)
 * @module p1-marketing/content-nurture
 */

.content-nurturing-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(180deg,
            rgba(45, 35, 28, 0.9) 0%,
            rgba(30, 25, 20, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-nurturing-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.content-nurturing-section .section-header h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.content-nurturing-section .section-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--font-size-base);
}

.nurturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.nurturing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nurturing-item:hover {
    background: rgba(210, 105, 30, 0.1);
    border-color: rgba(210, 105, 30, 0.3);
    transform: translateY(-4px);
}

.nurturing-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.nurturing-item h4 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.nurturing-item p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.5;
}

.nurturing-cta {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--color-accent);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: color 0.2s ease;
}

.nurturing-item:hover .nurturing-cta {
    color: white;
}
/* === p1-marketing/scarcity.css === */
/**
 * 動態稀缺性 (Eddie Shleyner - Dynamic Scarcity)
 * @module p1-marketing/scarcity
 */

.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  animation: pulse-glow 2s ease-in-out infinite;
}

.scarcity-badge .scarcity-icon {
  font-size: 0.9rem;
}

.scarcity-badge [data-scarcity-slots] {
  font-weight: 900;
  color: #f87171;
  min-width: 1.5em;
  text-align: center;
}

/* 緊急度等級樣式 */
.scarcity-normal {
  color: #f59e0b !important;
}

.scarcity-low {
  color: #f87171 !important;
  animation: number-pulse 1s ease-in-out infinite;
}

.scarcity-critical {
  color: #ef4444 !important;
  animation: number-pulse 0.5s ease-in-out infinite;
}

@keyframes number-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }

  50% {
    box-shadow: 0 0 12px 2px rgba(239, 68, 68, 0.3);
  }
}

/* 稀缺性強調區塊 */
.scarcity-section {
  padding: var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1) 0%,
    rgba(45, 35, 28, 0.9) 100%
  );
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-xl);
  text-align: center;
  margin: var(--spacing-lg) 0;
}

.scarcity-section h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.scarcity-section .scarcity-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #f87171;
  line-height: 1.2;
}

.scarcity-section .scarcity-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-base);
}

.scarcity-section .scarcity-reason {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
}

/* 分層技術展示 (Paul Roetzer - Layered Workflow Display) */
.layered-workflow-section {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: rgba(45, 35, 28, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.layered-workflow-section .section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.layered-workflow-section .section-header h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

/* 響應式 */
@media (max-width: 768px) {
  .scarcity-section .scarcity-number {
    font-size: 2rem;
  }
}

/* === p1-marketing/maturity-quiz.css === */
/**
 * AI 成熟度測驗 (Maturity Quiz - Alex Hormozi)
 * @module p1-marketing/maturity-quiz
 */

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: rgba(45, 35, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.progress-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    font-weight: 600;
    min-width: 3em;
}

.quiz-question h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.quiz-option {
    position: relative;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* 選項左側裝飾條 */
.quiz-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #D2691E, #9A4A10);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Hover 效果 */
.quiz-option:hover {
    background: rgba(210, 105, 30, 0.15);
    border-color: rgba(210, 105, 30, 0.5);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.15);
}

.quiz-option:hover::before {
    opacity: 1;
}

/* Active 按下效果 */
.quiz-option:active {
    transform: translateX(4px) scale(0.98);
    background: rgba(210, 105, 30, 0.25);
}

/* 選中狀態 */
.quiz-option.selected {
    background: linear-gradient(135deg, #D2691E 0%, #9A4A10 100%);
    border-color: #D2691E;
    color: white;
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(210, 105, 30, 0.35);
}

.quiz-option.selected::before {
    opacity: 1;
    background: white;
}

/* 呼吸動畫 */
.quiz-option:first-child {
    animation: option-breathe 2.5s ease-in-out infinite;
}

@keyframes option-breathe {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: none;
    }

    50% {
        border-color: rgba(210, 105, 30, 0.4);
        box-shadow: 0 0 16px rgba(210, 105, 30, 0.1);
    }
}

.quiz-option:hover,
.quiz-option.selected {
    animation: none;
}

/* 測驗結果 */
.quiz-result {
    text-align: center;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    color: white;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.result-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.result-title {
    font-weight: 700;
}

.result-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.result-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.result-score span {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.result-score strong {
    color: #4ADE80;
    font-size: 2rem;
    font-weight: 900;
}

.result-recommendation {
    margin-bottom: var(--spacing-lg);
}

.result-recommendation p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

/* 高吸引力 CTA 按鈕 */
.result-recommendation .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: linear-gradient(135deg, #D2691E 0%, #B85A15 50%, #9A4A10 100%);
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(210, 105, 30, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cta-glow 2s ease-in-out infinite;
}

@keyframes cta-glow {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(210, 105, 30, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }

    50% {
        box-shadow: 0 8px 40px rgba(210, 105, 30, 0.6),
            0 0 32px rgba(210, 105, 30, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    }
}

.result-recommendation .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.result-recommendation .btn:hover::before {
    left: 100%;
}

.result-recommendation .btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(210, 105, 30, 0.5),
        0 0 48px rgba(210, 105, 30, 0.25);
    animation: none;
}

.result-recommendation .btn:active {
    transform: translateY(-2px) scale(0.98);
}

.quiz-restart {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
}

.quiz-restart:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

/* 測驗入口區塊 */
.quiz-entry-section {
    position: relative;
    z-index: 10;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: #1A0F0A;
    text-align: center;
}

.quiz-entry-section .section-header h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.quiz-entry-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-base);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
}

.quiz-entry-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.quiz-entry-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.25);
}

.quiz-entry-time {
    margin-top: var(--spacing-md);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    font-weight: 400;
}

/* 測驗結果 - 豐富反饋區塊 */
.result-headline {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 0 var(--spacing-lg);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.result-insights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.insight-block {
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border-left: 3px solid;
}

.insight-block p {
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.insight-pain {
    background: rgba(255, 200, 150, 0.08);
    border-color: rgba(255, 180, 120, 0.5);
}

.insight-data {
    background: rgba(74, 222, 128, 0.08);
    border-color: rgba(74, 222, 128, 0.5);
}

.rec-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

.rec-reason {
    margin-top: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-xs);
    font-style: italic;
}

/* 探索更多區塊 */
.result-explore-more {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.explore-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

.explore-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.explore-link {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-link:hover {
    background: rgba(210, 105, 30, 0.1);
    border-color: rgba(210, 105, 30, 0.3);
    transform: translateX(4px);
}

.explore-link-name {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.explore-link-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-xs);
    margin-top: 4px;
}
/* === p1-marketing/responsive.css === */
/**
 * 響應式調整 (Responsive Overrides)
 * @module p1-marketing/responsive
 */

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

    .origin-story-card {
        padding: var(--spacing-lg);
    }

    .origin-story-card::before {
        font-size: 3rem;
        top: -10px;
    }

    .simple-flow {
        flex-direction: column;
    }

    .simple-arrow {
        transform: rotate(90deg);
    }

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

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

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

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

    .quiz-container {
        padding: var(--spacing-lg);
    }

    .result-recommendation .btn {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
    }
}

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

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

    .layer-btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-xs);
    }
}
/* === case-video.css === */
/**
 * @file    : css/case-video.css
 * @purpose : 案例影片展示 — 手機框架 + 雙欄佈局（最佳實踐版）
 * @depends : ['css/variables.css']
 */

/* ============================================
   案例影片區塊 — 深色沉浸容器
   ============================================ */
.case-video-section {
  position: relative;
  padding: var(--spacing-3xl) var(--spacing-xl);
  background: linear-gradient(160deg, #1a0f0a 0%, #2d1810 40%, #1a1512 100%);
  overflow: hidden;
}

.case-video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(60%, 400px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary),
    transparent
  );
  opacity: 0.5;
}

/* ============================================
   雙欄佈局：手機影片 + 行銷文案
   ============================================ */
.case-video-layout {
  display: flex;
  align-items: center;
  gap: var(--spacing-3xl);
  max-width: 960px;
  margin: 0 auto;
}

.case-video-layout.layout-reverse {
  flex-direction: row-reverse;
}

/* 左欄：手機影片 */
.case-video-phone {
  flex-shrink: 0;
  width: 280px;
}

/* 右欄：文案 */
.case-video-copy {
  flex: 1;
  min-width: 0;
}

/* ============================================
   手機框架模擬器
   ============================================ */
.phone-frame {
  position: relative;
  background: #111;
  border-radius: 32px;
  padding: 10px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* 瀏海凹口 */
.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}

.phone-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 22px;
  background: #000;
  object-fit: cover;
}

/* 影片底部資訊條 */
.phone-lower-third {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  border-radius: 0 0 22px 22px;
  pointer-events: none;
}

.phone-lower-third span {
  display: block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* ============================================
   行業標籤
   ============================================ */
.case-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(210, 105, 30, 0.15);
  border: 1px solid rgba(210, 105, 30, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-primary-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.case-video-badge::before {
  content: "▶";
  font-size: 0.6em;
}

/* ============================================
   標題 — 高權重選擇器覆蓋 base.css
   ============================================ */
.case-video-section h3.case-video-headline,
.pricing-case-video h3.case-video-headline,
.subpage-case-video h3.case-video-headline {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: var(--spacing-sm);
}

.case-video-headline em {
  font-style: normal;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-video-section p.case-video-subhead,
.pricing-case-video p.case-video-subhead,
.subpage-case-video p.case-video-subhead {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

/* ============================================
   金句引言
   ============================================ */
.case-video-quote {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  margin-bottom: var(--spacing-lg);
}

.case-video-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1;
}

/* ============================================
   指標徽章列
   ============================================ */
.case-video-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.case-video-metric {
  text-align: center;
  padding: 12px 20px;
  background: rgba(210, 105, 30, 0.1);
  border: 1px solid rgba(210, 105, 30, 0.2);
  border-radius: var(--radius-lg);
}

.case-video-metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.case-video-metric-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  white-space: nowrap;
}

/* ============================================
   Pricing 頁面變體
   ============================================ */
.pricing-case-video {
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-2xl);
  background: linear-gradient(160deg, #1a0f0a 0%, #2d1810 100%);
  border-radius: var(--radius-2xl);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   服務分頁變體
   ============================================ */
.subpage-case-video {
  padding: var(--spacing-3xl) var(--spacing-xl);
  background: linear-gradient(160deg, #1a0f0a 0%, #2d1810 100%);
  margin-top: var(--spacing-2xl);
}

/* 分頁多影片間距 */
.subpage-case-video .case-video-layout + .case-video-layout {
  margin-top: var(--spacing-3xl);
  padding-top: var(--spacing-3xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   響應式 — 768px（平板）
   ============================================ */
@media (max-width: 768px) {
  .case-video-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .case-video-layout {
    gap: var(--spacing-xl);
  }

  .case-video-phone {
    width: 220px;
  }

  .phone-frame {
    border-radius: 24px;
    padding: 8px;
  }

  .phone-frame::before {
    width: 60px;
    height: 18px;
    top: 8px;
  }

  .phone-frame video {
    border-radius: 16px;
  }

  .pricing-case-video {
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
  }

  .subpage-case-video {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
}

/* ============================================
   響應式 — 480px（手機：垂直堆疊）
   ============================================ */
@media (max-width: 480px) {
  .case-video-section {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .case-video-layout,
  .case-video-layout.layout-reverse {
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    text-align: center;
  }

  .case-video-phone {
    width: 200px;
  }

  .phone-frame {
    border-radius: 22px;
    padding: 6px;
  }

  .phone-frame::before {
    width: 50px;
    height: 14px;
    top: 6px;
    border-radius: 0 0 10px 10px;
  }

  .phone-frame video {
    border-radius: 16px;
  }

  .case-video-quote {
    text-align: left;
    font-size: 0.9rem;
  }

  .case-video-metrics {
    justify-content: center;
  }

  .case-video-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .pricing-case-video {
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-xl);
  }

  .subpage-case-video {
    padding: var(--spacing-xl) var(--spacing-sm);
    margin-top: var(--spacing-xl);
  }

  .subpage-case-video .case-video-layout + .case-video-layout {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
  }
}

