/* =============================================
   Craftflow — AI 企業工作流導入
   Brand: Deep Navy (#0b1119) + Warm Gold (#c9a84c)
   Professional · Trusted · Executive
   ============================================= */

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

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans TC', 'Inter', sans-serif;
  background: #0b1119;
  color: #e8e6e1;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 17, 25, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  color: #e8e6e1;
  letter-spacing: 0.5px;
}
.header-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #c9a84c, #a8892e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0b1119;
  font-weight: 900;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #a0a0a0;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.nav-link:hover, .nav-item:hover > .nav-link {
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
}
.nav-link .chevron {
  font-size: 10px;
  transition: transform 0.2s ease;
}
.nav-item:hover .chevron {
  transform: rotate(180deg);
}
/* --- Dropdown --- */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #141c28;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: #b0b0b0;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.dropdown-item:hover {
  background: rgba(201, 168, 76, 0.1);
  color: #c9a84c;
}
.dropdown-item .sub-label {
  display: block;
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}

/* --- Hero / Banner --- */
.hero-section {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(11,17,25,0.8) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  font-size: 13px;
  color: #c9a84c;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .gold { color: #c9a84c; }
.hero-sub {
  font-size: 18px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, #c9a84c, #b89530);
  color: #0b1119;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  color: #c9a84c;
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: #c9a84c;
  transform: translateY(-2px);
}

/* --- Carousel (Banner) --- */
.carousel {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 72px;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-slide {
  min-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
}
.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.carousel-controls {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active {
  background: #c9a84c;
  width: 28px;
  border-radius: 5px;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e8e6e1;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  background: rgba(201,168,76,0.15);
  border-color: #c9a84c;
}
.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }

/* --- Section --- */
.section {
  padding: 100px 0;
}
.section-label {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #c9a84c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-sub {
  font-size: 16px;
  color: #888;
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* --- Cards Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s ease;
}
.card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}
.card .pain-points {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card .pain-point {
  font-size: 13px;
  color: #aaa;
  padding-left: 16px;
  position: relative;
}
.card .pain-point::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: #c9a84c;
}

/* --- Timeline --- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #c9a84c, transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #c9a84c;
  border: 3px solid #0b1119;
  box-shadow: 0 0 0 2px #c9a84c;
}
.timeline-phase {
  font-size: 12px;
  font-weight: 600;
  color: #c9a84c;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.timeline-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* --- Stats / Numbers --- */
.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: #888;
}

/* --- Price Card --- */
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.price-card.featured {
  border-color: #c9a84c;
  background: rgba(201,168,76,0.05);
}
.price-card.featured::before {
  content: '推薦';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: #c9a84c;
  color: #0b1119;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1px;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.price-tag {
  font-size: 36px;
  font-weight: 800;
  color: #c9a84c;
  margin: 16px 0;
}
.price-tag small {
  font-size: 16px;
  font-weight: 400;
  color: #666;
}
.price-features {
  text-align: left;
  margin: 20px 0;
}
.price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #aaa;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before {
  content: '✓';
  color: #c9a84c;
  font-weight: 700;
}

/* --- Case Study --- */
.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.case-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,168,76,0.15);
}
.case-card .case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.case-metric {
  background: rgba(201,168,76,0.06);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.case-metric .value {
  font-size: 28px;
  font-weight: 800;
  color: #c9a84c;
}
.case-metric .label {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

/* --- Footer --- */
.site-footer {
  background: #070b10;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-top: 12px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #c9a84c;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #888;
  transition: color 0.2s;
}
.footer-col a:hover { color: #c9a84c; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #555; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #c9a84c; }

/* --- Page Header (inner pages) --- */
.page-header {
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}
.page-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 16px;
  color: #888;
  max-width: 600px;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: #888;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #c9a84c; }
.breadcrumb .sep { color: #444; }

/* --- Service Detail Page --- */
.service-hero {
  padding: 140px 0 60px;
  position: relative;
}
.service-hero .price-range {
  font-size: 28px;
  font-weight: 700;
  color: #c9a84c;
  margin-bottom: 20px;
}
.service-hero .price-range small {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

/* --- Comparison Table --- */
.compact-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.compact-table th,
.compact-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
}
.compact-table th {
  background: rgba(201,168,76,0.08);
  color: #c9a84c;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.compact-table tr:hover td {
  background: rgba(255,255,255,0.02);
}
.compact-table .check {
  color: #c9a84c;
  font-weight: 700;
}

/* --- Comparison Buttons Row --- */
.comparison-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.comparison-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.comparison-btn:hover,
.comparison-btn.active {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201,168,76,0.08);
}

/* --- Team Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.team-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s ease;
}
.team-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,168,76,0.2);
}
.team-card .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #a8892e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  color: #0b1119;
}
.team-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.team-card .title {
  font-size: 13px;
  color: #c9a84c;
  font-weight: 500;
  margin-bottom: 10px;
}
.team-card .bio {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #e8e6e1;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #c9a84c;
  background: rgba(201,168,76,0.04);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23888'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-group select option {
  background: #141c28;
  color: #e8e6e1;
}

/* --- Contact Info --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-info-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
}
.contact-info-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.contact-info-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-info-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* --- Divider --- */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.15), transparent);
  margin: 60px 0;
}

/* --- Tag / Badge --- */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-right: 4px;
  margin-bottom: 4px;
}
.tag-gold {
  background: rgba(201,168,76,0.15);
  color: #c9a84c;
}
.tag-blue {
  background: rgba(66,133,244,0.12);
  color: #66a3ff;
}
.tag-green {
  background: rgba(52,199,89,0.12);
  color: #5cc97a;
}
.tag-red {
  background: rgba(255,69,58,0.12);
  color: #ff6b62;
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .case-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .site-header .container {
    height: 60px;
  }
  .header-logo { font-size: 18px; }
  .header-logo .logo-icon {
    width: 30px; height: 30px;
    font-size: 14px;
  }
  .nav-link {
    padding: 6px 10px;
    font-size: 13px;
  }
  .dropdown {
    min-width: 200px;
  }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .carousel-arrow { display: none; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --- Industry Filter Tabs --- */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  color: #888;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-tab:hover { border-color: rgba(201,168,76,0.3); color: #c9a84c; }
.filter-tab.active { background: #c9a84c; color: #0b1119; border-color: #c9a84c; }

/* --- Numbered Steps --- */
.steps { counter-reset: step; }
.step-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.step-item:last-child { border-bottom: none; }
.step-number {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #c9a84c;
}
.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.step-content p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* --- Empty States --- */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state .icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}
.empty-state h3 {
  font-size: 20px;
  color: #666;
  margin-bottom: 8px;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  margin: 80px 0;
}
.cta-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 15px;
  color: #888;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Product / Plan Cross-links --- */
.plan-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.plan-link {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #888;
  transition: all 0.2s;
}
.plan-link:hover {
  border-color: rgba(201,168,76,0.3);
  color: #c9a84c;
  background: rgba(201,168,76,0.05);
}
.plan-link.current {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201,168,76,0.08);
}

/* --- Insight Cards --- */
.insight-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s ease;
}
.insight-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-2px);
}
.insight-card .meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}
.insight-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}
.insight-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}
