/* ========================================
   B2B/B2C Business Blog - Commercial Theme
   商业蓝金色渐变主题 - 专业稳重感
   ======================================== */

/* CSS Variables */
:root {
  /* Primary Colors - Business Blue to Gold Gradient */
  --primary-start: #1e40af;
  --primary-end: #f59e0b;
  --primary-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #f59e0b 100%);

  /* Accent Color - Growth Green */
  --accent: #059669;
  --accent-light: #10b981;
  --accent-dark: #047857;

  /* Business Colors */
  --business-blue: #1e40af;
  --gold: #f59e0b;
  --trust-blue: #3b82f6;

  /* Background Colors */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: #ffffff;

  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-light: #ffffff;

  /* Border & Shadow */
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(30, 64, 175, 0.08);
  --shadow-md: 0 4px 12px rgba(30, 64, 175, 0.12);
  --shadow-lg: 0 8px 24px rgba(30, 64, 175, 0.15);
  --shadow-hover: 0 12px 32px rgba(30, 64, 175, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  background: var(--business-blue);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.nav-logo .logo-icon {
  font-size: 1.75rem;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  background: var(--primary-gradient);
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

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

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ========================================
   Main Container
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* ========================================
   Section Titles
   ======================================== */
.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--business-blue);
  font-size: 1.75rem;
  color: var(--text-primary);
  font-weight: 700;
}

.section-title::before {
  content: 'briefcase';
  font-size: 1.5rem;
}

.section-icon {
  font-size: 1.75rem;
}

.section-title h2 {
  font-size: 1.75rem;
  color: var(--text-primary);
  font-weight: 700;
}

/* ========================================
   Data Table Cards (Business Style)
   ======================================== */
.data-section {
  margin-bottom: 4rem;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.data-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.data-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.data-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--business-blue);
}

.data-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  color: var(--text-light);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 1rem;
}

.data-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.data-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.data-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.data-metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-secondary);
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--business-blue);
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ========================================
   Article Cards
   ======================================== */
.articles-section {
  margin-bottom: 4rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.article-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid rgba(30, 64, 175, 0.08);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--business-blue);
}

.article-image {
  height: 200px;
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.article-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.article-image-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.3;
}

.article-content {
  padding: 1.5rem;
}

.article-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--text-light);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.article-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.article-card h3:hover {
  color: var(--business-blue);
}

.article-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.article-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-secondary);
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 600;
}

.author-name {
  font-weight: 500;
  color: var(--text-primary);
}

/* ========================================
   Categories Grid (Business Style)
   ======================================== */
.categories-section {
  margin-bottom: 4rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  display: block;
  border: 1px solid rgba(30, 64, 175, 0.08);
}

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

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.category-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.category-count {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(5, 150, 105, 0.15);
  color: #059669;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-top: 12px;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border-radius: 50px;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.category-tag:hover {
  background: var(--business-blue);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-tag .category-icon {
  font-size: 1.25rem;
}

/* ========================================
   Links Section
   ======================================== */
.links-section {
  margin-bottom: 4rem;
}

.links-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.links-title::before {
  content: 'link';
}

.links-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  border-left: 4px solid transparent;
  border: 1px solid rgba(30, 64, 175, 0.08);
}

.link-card:hover {
  border-left-color: var(--gold);
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.link-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
}

.link-content {
  flex: 1;
}

.link-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.link-description {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.link-arrow {
  color: var(--text-muted);
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.link-card:hover .link-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* ========================================
   Featured Section (Business Model)
   ======================================== */
.featured-section {
  margin-bottom: 4rem;
}

.featured-card {
  background: var(--primary-gradient);
  border-radius: var(--border-radius);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.featured-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.featured-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.featured-stats {
  display: flex;
  gap: 2rem;
}

.featured-stat {
  text-align: center;
}

.featured-stat-value {
  font-size: 2rem;
  font-weight: 700;
}

.featured-stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.featured-icon {
  font-size: 10rem;
  text-align: center;
  opacity: 0.3;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--text-light);
  color: var(--business-blue);
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Newsletter Section
   ======================================== */
.newsletter-section {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 4rem;
  border: 1px solid rgba(30, 64, 175, 0.08);
}

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.newsletter-section h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.newsletter-section p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--bg-secondary);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: var(--business-blue);
}

.newsletter-form button {
  padding: 0.875rem 2rem;
  background: var(--business-blue);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--gold);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--text-primary);
  color: var(--text-light);
  padding: 3rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  font-size: 1.75rem;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet (768px - 1200px) */
@media (max-width: 1200px) {
  .container {
    padding: 2rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .featured-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-icon {
    display: none;
  }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--business-blue);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

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

  .article-image {
    height: 180px;
  }

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

  .links-list {
    grid-template-columns: 1fr;
  }

  .featured-card {
    padding: 2rem;
  }

  .featured-content h3 {
    font-size: 1.5rem;
  }

  .featured-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-section {
    padding: 2rem 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

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

  .categories-grid {
    justify-content: center;
  }

  .category-tag {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

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

  .link-card {
    padding: 1rem;
  }

  .link-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* ========================================
   Hero Tags
   ======================================== */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   Links List (Simple Style)
   ======================================== */
.links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.link-item {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-secondary);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 20px;
  transition: all var(--transition-fast);
}

.link-item:hover {
  border-color: var(--business-blue);
  color: var(--business-blue);
  background: rgba(30, 64, 175, 0.1);
}

/* ========================================
   Footer Content Layout
   ======================================== */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-section p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-section a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: #f59e0b;
}

.footer-bottom {
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   Article Page Styles
   ======================================== */
.article-page {
  padding-top: 80px;
}

.article-header {
  background: var(--primary-gradient);
  color: var(--text-light);
  padding: 4rem 2rem;
  text-align: center;
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-header .meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.article-header .meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.article-body h2 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--business-blue);
}

.article-body h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-body li::marker {
  color: var(--business-blue);
}

.article-body blockquote {
  background: var(--bg-secondary);
  border-left: 4px solid var(--business-blue);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.article-body code {
  background: var(--bg-secondary);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: 'Consolas', monospace;
  font-size: 0.9rem;
}

.article-body pre {
  background: var(--text-primary);
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin: 1.5rem 0;
}

.article-body pre code {
  background: none;
  padding: 0;
}

/* ========================================
   Animation Classes
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease forwards;
}

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

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   Chart Decoration
   ======================================== */
.chart-decoration {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  font-size: 8rem;
}

/* ========================================
   Business Icons
   ======================================== */
.business-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
  .navbar,
  .hero,
  .newsletter-section,
  .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .article-card,
  .data-card,
  .link-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}