/*
 * Dana Pipe — Global Styles
 * Astro Jamstack v2.0
 */

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* 主色调 - 深蓝色 + 琥珀色 */
  --navy: #1a2744;
  --navy-light: #243356;
  --navy-dark: #0f1a2e;
  --amber: #e67e22;
  --amber-dark: #d4701a;
  --amber-light: #f39c12;
  
  /* 中性色 */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f1f3;
  --gray-200: #e2e4e8;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  
  /* 字体 */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* 间距与圆角 */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  
  /* 过渡 */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--amber-dark); }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; color: var(--navy); font-weight: 700; }
h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
}

.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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary { 
  background: var(--amber); 
  color: var(--white); 
}
.btn-primary:hover { 
  background: var(--amber-dark); 
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.btn-outline { 
  background: transparent; 
  color: var(--white); 
  border: 2px solid var(--white); 
}
.btn-outline:hover { 
  background: var(--white); 
  color: var(--navy); 
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
}
.btn-secondary:hover {
  background: var(--gray-200);
}

/* ========== SECTIONS ========== */
.section { padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: 0.75rem; font-size: 2rem; }
.section-title p { color: var(--gray-500); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(26, 39, 68, 0.98);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo { font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; text-decoration: none; }
.site-logo span { color: var(--amber); }

.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.75rem; cursor: pointer; padding: .25rem; }

.main-nav ul { display: flex; list-style: none; gap: .5rem; align-items: center; }
.main-nav a { 
  display: block; 
  padding: .5rem 1rem; 
  color: rgba(255,255,255,.85); 
  border-radius: var(--radius-sm); 
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav a[aria-current="page"] { 
  color: var(--white); 
  background: rgba(255,255,255,.1); 
}
.main-nav .btn-nav { 
  background: var(--amber); 
  color: var(--white); 
  padding: .5rem 1.5rem; 
  margin-left: .5rem;
  border-radius: var(--radius-sm);
}
.main-nav .btn-nav:hover { 
  background: var(--amber-dark); 
  color: var(--white);
}

/* ========== FOOTER ========== */
.site-footer { 
  background: var(--navy); 
  color: rgba(255,255,255,.7); 
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand h3 { 
  color: var(--white); 
  font-size: 1.5rem; 
  font-weight: 700; 
  margin-bottom: 1rem; 
}
.footer-brand h3 span { color: var(--amber); }
.footer-brand p { 
  font-size: 0.9rem; 
  line-height: 1.6; 
  color: rgba(255, 255, 255, 0.6); 
}

.footer-links h4 { 
  color: var(--white); 
  font-size: 1rem; 
  font-weight: 600; 
  margin-bottom: 1.25rem; 
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { 
  color: rgba(255, 255, 255, 0.6); 
  font-size: 0.9rem; 
  transition: color var(--transition-fast); 
}
.footer-links a:hover { color: var(--amber); }

.footer-contact strong { 
  color: var(--white); 
  display: block; 
  margin-bottom: 0.25rem; 
}

.footer-bottom { 
  border-top: 1px solid rgba(255, 255, 255, 0.08); 
  padding-top: 2rem; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  font-size: 0.85rem; 
  color: rgba(255, 255, 255, 0.5); 
}
.footer-bottom a { color: var(--amber); }

/* ========== HERO ========== */
.hero { 
  background: linear-gradient(135deg, rgba(26,39,68,0.98) 0%, rgba(36,51,86,0.95) 100%); 
  color: var(--white); 
  padding: 8rem 0 6rem; 
  text-align: center; 
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(230, 126, 34, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(230, 126, 34, 0.05) 0%, transparent 50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: left;
}

.hero-tag {
  display: inline-block;
  background: rgba(230, 126, 34, 0.15);
  color: var(--amber);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 { 
  color: var(--white); 
  font-size: 3.5rem; 
  margin-bottom: 1.5rem; 
  line-height: 1.1;
}

.hero p { 
  font-size: 1.25rem; 
  color: rgba(255,255,255,.8); 
  max-width: 500px; 
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hero-stats .stat {
  text-align: left;
}

.hero-stats .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
}

.hero-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero .btn-group { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

/* ========== FEATURES GRID ========== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { 
  background: var(--white); 
  padding: 2.5rem 2rem; 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-md); 
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card .icon { 
  width: 70px; 
  height: 70px; 
  margin: 0 auto 1.5rem; 
  background: rgba(230, 126, 34, 0.08); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 2rem; 
}

.feature-card h3 { margin-bottom: 0.75rem; }
.feature-card p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.6; }

/* ========== TRUST STATS ========== */
.trust-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 2.67rem 0;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-stat {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.trust-stat:nth-child(2) { animation-delay: 0.1s; }
.trust-stat:nth-child(3) { animation-delay: 0.2s; }
.trust-stat:nth-child(4) { animation-delay: 0.3s; }

.trust-stat-value {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.trust-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ========== PRODUCT GRID ========== */
.product-filters { display: flex; justify-content: center; gap: .5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.product-filters button { 
  padding: .5rem 1.25rem; 
  border: 1px solid var(--gray-200); 
  border-radius: 2rem; 
  background: var(--white); 
  cursor: pointer; 
  font-size: .9rem; 
  color: var(--gray-500); 
  transition: all var(--transition-fast); 
}
.product-filters button:hover,
.product-filters button.active { 
  background: var(--amber); 
  color: var(--white); 
  border-color: var(--amber); 
}

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-grid > * { min-width: 0; }

.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.solutions-grid > * { min-width: 0; }

.case-studies-grid { display: grid; gap: 1.5rem; }
.case-studies-grid > * { min-width: 0; }

.case-study-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.resources-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card { 
  background: var(--white); 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-md); 
  overflow: hidden; 
  transition: all var(--transition-normal);
  position: relative;
}

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

.product-card .card-image { 
  position: relative;
  height: 250px; 
  background: var(--gray-100); 
  overflow: hidden; 
}

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

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

.product-card .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--amber);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card .card-body { padding: 1.5rem; }
.product-card .card-tag { 
  display: inline-block; 
  background: rgba(230,126,34,.1); 
  color: var(--amber); 
  padding: .2rem .75rem; 
  border-radius: 1rem; 
  font-size: .8rem; 
  font-weight: 600; 
  margin-bottom: .75rem; 
}
.product-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.product-card p { color: var(--gray-500); font-size: .9rem; line-height: 1.6; }

.product-card .card-action {
  margin-top: 1rem;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.product-card:hover .card-action {
  opacity: 1;
  transform: translateY(0);
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-card p {
  color: var(--gray-600);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.testimonial-author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-500);
}

.testimonial-author-info strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ========== PRODUCT DETAIL PAGE ========== */
.breadcrumb { 
  padding: 1.5rem 0; 
  font-size: 0.85rem; 
  color: var(--gray-500); 
}
.breadcrumb a { color: var(--gray-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: var(--gray-300); margin: 0 .5rem; }

/* Product Hero */
.product-hero {
  padding: 2rem 0;
}

.product-hero .hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21/9;
  min-height: 450px;
  margin-bottom: 2rem;
}

.product-hero .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.85), transparent 60%);
}

.product-hero .hero-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: var(--white);
}

.product-hero .hero-caption h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.product-hero .hero-caption .desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
}

.product-hero .hero-caption .tag {
  background: var(--amber);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.spec-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition-fast);
}

.spec-table tr:hover {
  background: var(--gray-50);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table tr.highlight {
  background: rgba(230, 126, 34, 0.05);
}

.spec-table .spec-label {
  padding: 1rem 1.25rem;
  font-weight: 500;
  color: var(--gray-500);
  font-size: 0.9rem;
  width: 40%;
}

.spec-table .spec-value {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.feature-list { 
  list-style: none; 
  margin-bottom: 2rem; 
}
.feature-list li { 
  padding: .5rem 0; 
  padding-left: 1.5rem; 
  position: relative; 
  color: var(--gray-600); 
}
.feature-list li::before { 
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23e67e22' d='M10.28 2.72a.75.75 0 010 1.06l-5.5 5.5a.75.75 0 01-1.06 0L1.28 6.84a.75.75 0 011.06-1.06L4.25 7.94l4.97-4.97a.75.75 0 011.06 0z'/%3E%3C/svg%3E"); 
  position: absolute; 
  left: 0; 
}

.product-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.detail-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-card h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--amber);
  border-radius: 2px;
}

.cta-box { 
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 3rem; 
  border-radius: var(--radius-xl); 
  text-align: center; 
  margin-top: 4rem;
  border: 1px solid var(--gray-100);
}
.cta-box h3 { margin-bottom: .5rem; font-size: 1.5rem; }
.cta-box p { color: var(--gray-500); margin-bottom: 1.5rem; }

/* ========== SOLUTION DETAIL PAGE ========== */
/* Page Hero Banner - Unified Style */
.page-hero-banner {
  width: 100%;
  margin: 0;
}

.page-hero-banner .hero-image-full {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.page-hero-banner .hero-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.9), rgba(26, 39, 68, 0.4) 60%, transparent);
}

.page-hero-banner .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 3rem;
}

.page-hero-banner .hero-breadcrumb {
  margin-bottom: 1rem;
}

.page-hero-banner .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero-banner .hero-breadcrumb a:hover {
  color: var(--white);
}

.page-hero-banner .hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero-banner .hero-title h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 2.5rem;
}

.page-hero-banner .hero-title .subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  max-width: 600px;
}

.home-hero-banner {
  width: 100%;
  margin: 0;
  position: relative;
}

.home-hero-banner .hero-image-full {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
}

.home-hero-banner .hero-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 39, 68, 0.9) 0%, rgba(26, 39, 68, 0.6) 50%, transparent 100%);
}

.home-hero-banner .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 4rem;
}

.home-hero-banner .hero-text {
  max-width: 55%;
  text-align: left;
}

.home-hero-banner .hero-tag {
  display: inline-block;
  background: rgba(230, 126, 34, 0.15);
  color: var(--amber);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.home-hero-banner .hero-title h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.home-hero-banner .hero-title .subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.home-hero-banner .btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .home-hero-banner .hero-image-full {
    height: 625px;
  }
  
  .home-hero-banner .hero-text {
    max-width: 70%;
  }
  
  .home-hero-banner .hero-title h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .home-hero-banner .hero-image-full {
    height: 560px;
  }
  
  .home-hero-banner .hero-overlay {
    background: linear-gradient(to top, rgba(26, 39, 68, 0.95) 0%, rgba(26, 39, 68, 0.7) 50%, rgba(26, 39, 68, 0.5) 100%);
  }
  
  .home-hero-banner .hero-text {
    max-width: 100%;
    text-align: center;
  }
  
  .home-hero-banner .hero-title h1 {
    font-size: 2rem;
  }
  
  .home-hero-banner .hero-title .subtitle {
    font-size: 1rem;
  }
  
  .home-hero-banner .btn-group {
    flex-direction: column;
    align-items: center;
  }
  
  .home-hero-banner .btn-group .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Solution Hero Full Width */
.solution-hero-full {
  width: 100%;
  margin: 0;
}

.solution-hero-full .hero-image-full {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.solution-hero-full .hero-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-hero-full .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.9), rgba(26, 39, 68, 0.4) 60%, transparent);
}

.solution-hero-full .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 3rem;
}

.solution-hero-full .hero-breadcrumb {
  margin-bottom: 1rem;
}

.solution-hero-full .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.solution-hero-full .hero-breadcrumb a:hover {
  color: var(--white);
}

.solution-hero-full .hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.solution-hero-full .hero-title h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 2.5rem;
}

.solution-hero-full .hero-title .subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  max-width: 600px;
}

/* Solution Description */
.solution-description {
  padding: 3rem 0;
  background: var(--white);
}

.solution-description .description-content {
  max-width: 900px;
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1.1rem;
}

.solution-description .description-content h2 {
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.solution-description .description-content h3 {
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.solution-description .description-content p {
  margin-bottom: 1rem;
}

.solution-description .description-content ul,
.solution-description .description-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.solution-description .description-content li {
  margin-bottom: 0.5rem;
}

.solution-description .description-content a {
  color: var(--amber);
}

.solution-description .description-content strong {
  color: var(--navy);
}

/* Solution Highlights */
.case-study-hero {
  padding: 3rem 0;
}

.case-study-hero .hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21/9;
  min-height: 450px;
  margin-bottom: 2rem;
}

.case-study-hero .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-hero .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.85), transparent 60%);
}

.case-study-hero .hero-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: var(--white);
}

.case-study-hero .hero-caption h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.case-study-hero .hero-caption .meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.case-study-hero .hero-caption .tag {
  background: var(--amber);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.solution-highlights {
  background: var(--gray-50);
  padding: 4rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.highlight-card .hl-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.highlight-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.highlight-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.solution-content {
  padding: 4rem 0;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse .content-image,
.content-block.reverse .content-text {
  direction: ltr;
}

.content-block.reverse .content-image {
  order: 2;
}

.content-block.reverse .content-text {
  order: 1;
}

.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-text h3 {
  margin-bottom: 1rem;
}

.content-text p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.solution-products {
  background: var(--gray-50);
  padding: 4rem 0;
}

.solution-products .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-mini-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.product-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-mini-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.product-mini-card p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.solution-cta {
  padding: 4rem 0;
  text-align: center;
}

.solution-cta h2 {
  margin-bottom: 1rem;
}

.solution-cta p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

/* ========== CHECK LIST ========== */
.article-body .check-list {
  list-style: none;
  padding-left: 0;
}

.article-body .check-list li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e67e22' d='M10.28 2.72a.75.75 0 010 1.06l-5.5 5.5a.75.75 0 01-1.06 0L1.28 6.84a.75.75 0 011.06-1.06L4.25 7.94l4.97-4.97a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  margin-right: 0.5em;
}

/* ========== NEWS PAGE ========== */
.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.news-card { 
  background: var(--white); 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-md); 
  overflow: hidden; 
  transition: all var(--transition-normal); 
}
.news-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-lg); 
}
.news-card .news-image { 
  height: 200px; 
  background: var(--gray-100); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--gray-400); 
  font-size: .85rem; 
  overflow: hidden;
}

.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card .news-body { padding: 1.5rem; }
.news-card .news-date { font-size: .8rem; color: var(--gray-400); margin-bottom: .5rem; }
.news-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.news-card p { color: var(--gray-500); font-size: .9rem; margin-bottom: 1rem; line-height: 1.6; }
.news-card .news-link { font-weight: 600; font-size: .9rem; color: var(--amber); }

/* ========== NEWS DETAIL PAGE ========== */
.article { max-width: 800px; margin: 0 auto; }
.article-header { margin-bottom: 2rem; }
.article-header .article-date { color: var(--gray-400); font-size: .9rem; margin-bottom: .5rem; }
.article-header h1 { margin-bottom: 1rem; }
.article-image { 
  height: 350px; 
  background: var(--gray-100); 
  border-radius: var(--radius-lg); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--gray-400); 
  margin-bottom: 2rem;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body { font-size: 1.05rem; line-height: 1.8; color: var(--gray-700); }
.article-body p { margin-bottom: 1.5rem; }
.article-body h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.article-body ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: .5rem; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--radius-md); }
.back-link { display: inline-block; margin-top: 3rem; font-weight: 600; color: var(--amber); }

/* ========== ABOUT PAGE ========== */
.about-intro { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 5rem; 
  align-items: center; 
}
.about-intro .about-image { 
  height: 450px; 
  background: var(--gray-100); 
  border-radius: var(--radius-xl); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--gray-400);
  overflow: hidden;
}

.about-intro .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card { 
  text-align: center; 
  padding: 2rem 1.5rem; 
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.value-card .value-icon { 
  width: 55px; 
  height: 55px; 
  margin: 0 auto 1rem; 
  background: rgba(230,126,34,.1); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.5rem; 
}
.value-card h3 { margin-bottom: .5rem; }
.value-card p { color: var(--gray-500); font-size: .9rem; }

.about-brand-badge { 
  text-align: center; 
  padding: 4rem; 
  background: var(--navy); 
  color: var(--white); 
  border-radius: var(--radius-xl); 
  margin-top: 3rem; 
}
.about-brand-badge span { color: var(--amber); }

/* ========== CONTACT PAGE ========== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--gray-500); margin-bottom: 2rem; }
.contact-detail { 
  display: flex; 
  align-items: flex-start; 
  gap: 1rem; 
  margin-bottom: 1.5rem; 
}
.contact-detail .cd-icon { 
  width: 45px; 
  height: 45px; 
  background: rgba(26,39,68,.08); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  font-size: 1.2rem; 
}
.contact-detail strong { display: block; color: var(--navy); }
.contact-detail span { color: var(--gray-500); font-size: .9rem; }

.contact-form { 
  background: var(--white); 
  padding: 2.5rem; 
  border-radius: var(--radius-xl); 
  box-shadow: var(--shadow-md);
}
.contact-map-section { background: var(--gray-50); }
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  line-height: 0;
}
.map-wrapper iframe { display: block; width: 100%; }
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { 
  display: block; 
  margin-bottom: .35rem; 
  font-weight: 500; 
  font-size: .9rem; 
}
.form-group input,
.form-group textarea { 
  width: 100%; 
  padding: .875rem; 
  border: 1px solid var(--gray-200); 
  border-radius: var(--radius-md); 
  font-family: var(--font); 
  font-size: 1rem; 
  transition: border-color var(--transition-fast); 
}
.form-group input:focus,
.form-group textarea:focus { 
  outline: none; 
  border-color: var(--amber); 
}
.form-group textarea { min-height: 150px; resize: vertical; }

/* Phone Input Group with Country Code */
.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.phone-input-group .country-code-select {
  width: 140px;
  padding: 0.875rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9rem;
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.phone-input-group .country-code-select:focus {
  outline: none;
  border-color: var(--amber);
}

.phone-input-group input {
  flex: 1;
}

.form-submit { text-align: right; }
.form-success { 
  background: #ecfdf5; 
  color: #065f46; 
  padding: 1rem; 
  border-radius: var(--radius-md); 
  margin-bottom: 1rem; 
  display: none; 
}

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { 
  margin-bottom: .75rem; 
  border: 1px solid var(--gray-200); 
  border-radius: var(--radius-md); 
  overflow: hidden; 
  transition: all var(--transition-fast);
}
.faq-item summary { 
  padding: 1rem 1.5rem; 
  cursor: pointer; 
  font-weight: 600; 
  color: var(--navy); 
  background: var(--gray-50); 
  list-style: none; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { 
  content: '+'; 
  font-size: 1.25rem; 
  color: var(--amber); 
  transition: transform var(--transition-fast);
}
.faq-item[open] summary::after { 
  content: '−'; 
}
.faq-item[open] summary {
  background: var(--white);
}
.faq-item .faq-answer { 
  padding: 1rem 1.5rem; 
  color: var(--gray-600); 
  line-height: 1.7; 
  background: var(--white);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .product-details-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro .about-image { height: 350px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-list { grid-template-columns: repeat(2, 1fr); }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .content-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .solution-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .case-studies-grid .case-study-card {
    grid-template-columns: 1fr;
  }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 768px) {
  html { -webkit-text-size-adjust: 100%; }
  body { font-size: 15px; }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  
  /* Hero */
  .hero { 
    padding: 6rem 0 4rem; 
    min-height: auto; 
  }
  
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .hero-stats .stat-value {
    font-size: 1.5rem;
  }
  
  .hero .btn-group { 
    flex-direction: column; 
    align-items: center; 
  }
  
  .hero .btn-group .btn { 
    width: 100%; 
    max-width: 280px; 
  }
  
  /* Feature cards */
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .feature-card { padding: 1.5rem; }
  .feature-card .icon { width: 50px; height: 50px; font-size: 1.5rem; }
  
  /* Product grid */
  .product-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .product-card .card-image { height: 200px; }
  
  /* Trust stats */
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-stat-value { font-size: 2rem; }
  
  /* Highlights */
  .highlights-grid { grid-template-columns: 1fr; }
  
  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  
  /* Resources Tools */
  .resources-tools-grid { grid-template-columns: 1fr; }
  
  /* News */
  .news-list { grid-template-columns: 1fr; }
  
  /* About */
  .values-grid { grid-template-columns: 1fr; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  
  /* Solutions */
  .solution-header {
    padding: 6rem 0 2rem;
  }
  
  .solution-hero .hero-image-wrapper {
    aspect-ratio: 4/3;
    min-height: 300px;
  }
  
  .solution-hero .hero-caption {
    bottom: 1rem;
    left: 1rem;
  }
  
  .solution-hero .hero-caption h2 {
    font-size: 1.25rem;
  }
  
  /* Product Hero */
  .product-hero {
    padding: 1rem 0 2rem;
  }
  
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-gallery {
    min-height: 300px;
  }
  
  /* Page Hero Banner - Unified Style */
  .page-hero-banner .hero-image-full {
    height: 380px;
  }

  .page-hero-banner .hero-title h1 {
    font-size: 1.75rem;
  }

  .page-hero-banner .hero-title .subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .page-hero-banner .hero-content {
    padding-top: 80px;
    padding-bottom: 2rem;
  }

  /* Solution Hero Full Width */
  .solution-hero-full .hero-image-full {
    height: 450px;
  }

  .solution-hero-full .hero-title h1 {
    font-size: 1.75rem;
  }

  .solution-hero-full .hero-title .subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .solution-hero-full .hero-content {
    padding-top: 80px;
    padding-bottom: 2rem;
  }

  /* Case Study Hero */
  .case-study-hero .hero-image-wrapper {
    aspect-ratio: 4/3;
    min-height: 300px;
  }
  
  .case-study-hero .hero-caption h1 {
    font-size: 1.5rem;
  }
  
  .case-study-hero .hero-caption .meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .product-hero .hero-image-wrapper {
    aspect-ratio: 4/3;
    min-height: 300px;
  }
  
  .product-hero .hero-caption h1 {
    font-size: 1.5rem;
  }
  
  .product-hero .hero-caption .desc {
    font-size: 0.95rem;
  }
  
  .solution-hero .hero-caption h2 {
    font-size: 1.2rem;
  }
  
  /* Contact */
  .contact-form { padding: 1.5rem; }

  .phone-input-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .phone-input-group .country-code-select {
    width: 100%;
  }

  .map-wrapper iframe { height: 300px !important; }
  
  /* FAQ */
  .faq-item summary { padding: .85rem 1rem; font-size: .9rem; }
  
  /* Navigation */
  .nav-toggle { 
    display: block; 
    padding: .5rem; 
    min-width: 44px; 
    min-height: 44px; 
  }
  
  .main-nav ul { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: var(--navy); 
    flex-direction: column; 
    padding: .75rem; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.2); 
  }
  
  .main-nav.open ul { display: flex; }
  
  .main-nav a { 
    padding: .7rem 1rem; 
    min-height: 44px; 
    display: flex; 
    align-items: center; 
  }
  
  .main-nav .btn-nav { 
    margin-left: 0; 
    margin-top: .5rem; 
    text-align: center;
  }
}

/* ========== NEW PRODUCT SHOWCASE STYLES ========== */

/* Homepage Product Showcase */
.products-showcase {
  background: var(--gray-50);
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.product-showcase-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-showcase-grid-4 .showcase-image {
  height: 200px;
}

.product-showcase-grid-4 .product-showcase-card {
  border-radius: var(--radius-lg);
}

.product-showcase-grid-4 .showcase-content {
  padding: 1.25rem;
}

.product-showcase-grid-4 .showcase-content h3 {
  font-size: 1.1rem;
}

/* 2 列网格 - 首页大气版 */
.product-showcase-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-showcase-grid-2 .product-showcase-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-showcase-grid-2 .product-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-showcase-grid-2 .showcase-image {
  height: 300px;
}

.product-showcase-grid-2 .showcase-content {
  padding: 2rem;
}

.product-showcase-grid-2 .showcase-badge {
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.75rem;
}

.product-showcase-grid-2 .showcase-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-showcase-grid-2 .showcase-tagline {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.product-showcase-grid-2 .showcase-desc {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  -webkit-line-clamp: 3;
}

.product-showcase-grid-2 .showcase-highlights li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.product-showcase-grid-2 .showcase-actions {
  margin-top: 1.25rem;
}

.product-showcase-grid-4 .showcase-highlights li {
  font-size: 0.82rem;
}

.product-showcase-grid-4 .showcase-tagline {
  font-size: 0.7rem;
  margin-bottom: 0.35rem;
}

.product-showcase-grid-4 .showcase-desc {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  -webkit-line-clamp: 2;
}

.product-showcase-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
}

.product-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.product-showcase-card.card-flagship {
  border-top: 4px solid var(--amber);
}

.product-showcase-card.card-standard {
  border-top: 4px solid var(--navy);
}

.showcase-image {
  position: relative;
  height: 300px;
  background: var(--gray-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.showcase-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.product-showcase-card:hover .showcase-image img {
  transform: scale(1.03);
}

.showcase-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-flagship {
  background: var(--amber);
  color: var(--white);
}

.badge-standard {
  background: var(--navy);
  color: var(--white);
}

.badge-compact {
  background: #10b981;
  color: var(--white);
}

.card-compact {
  border-top: 4px solid #10b981;
}

.badge-rapid {
  background: #8b5cf6;
  color: var(--white);
}

.card-rapid {
  border-top: 4px solid #8b5cf6;
}

.showcase-content {
  padding: 2rem;
}

.showcase-tagline {
  color: var(--gray-500);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.showcase-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.showcase-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.showcase-highlights {
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.showcase-highlights li {
  font-size: 0.9rem;
  color: var(--gray-700);
  padding: 0.25rem 0;
}

.showcase-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.showcase-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

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

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.product-comparison-cta {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.product-comparison-cta p {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.comparison-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========== PRODUCT LIST PAGE STYLES ========== */

/* Comparison Table */
.comparison-section {
  background: var(--white);
  padding-top: 3rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table thead th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  position: relative;
}

.comparison-table thead th.th-flagship {
  background: rgba(230, 126, 34, 0.08);
}

.comparison-table thead th.th-standard {
  background: rgba(26, 39, 68, 0.08);
}

.comp-badge {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: var(--amber);
}

.th-standard .comp-badge {
  color: var(--navy);
}

.comparison-table .spec-name {
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-50);
}

.comparison-table td.td-flagship {
  background: rgba(230, 126, 34, 0.03);
  font-weight: 500;
}

.comparison-table td.td-standard {
  background: rgba(26, 39, 68, 0.03);
  font-weight: 500;
}

/* ========== PRODUCT CATALOG GRID (3 cards list page) ========== */
.products-list-section {
  background: var(--gray-50);
}

.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.catalog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border-top: 4px solid transparent;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.catalog-card.card-flagship { border-top-color: var(--amber); }
.catalog-card.card-standard { border-top-color: var(--navy); }
.catalog-card.card-compact { border-top-color: #10b981; }
.catalog-card.card-rapid { border-top-color: #8b5cf6; }

.catalog-badge.badge-rapid { background: #8b5cf6; }

.catalog-image {
  position: relative;
  background: var(--gray-50);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.catalog-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.catalog-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catalog-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin: 0 0 0.5rem;
}

.catalog-body h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.catalog-description {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.catalog-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.catalog-highlights li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.catalog-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ========== OTHER PRODUCTS (Detail Page) ========== */
.other-products-section {
  background: var(--gray-50);
}

/* Product Detail Cards on List Page (legacy) */
.product-details-section {
  background: var(--gray-50);
}

.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.product-detail-card.detail-flagship {
  border-left: 4px solid var(--amber);
}

.product-detail-card.detail-standard {
  border-left: 4px solid var(--navy);
}

.detail-image-col img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.detail-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.detail-content-col h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.detail-description {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.detail-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.feature-icon {
  color: var(--amber);
  font-weight: 700;
}

.detail-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Help Section */
.help-section {
  background: var(--white);
}

.help-card {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  color: var(--white);
}

.help-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.help-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.help-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.help-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.help-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ========== PRODUCT DETAIL PAGE STYLES ========== */

/* Product Detail Hero */
.product-detail-hero {
  padding: 2rem 0 3rem;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-hero-info {
  padding: 1rem 0;
}

.hero-model-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.product-hero-info h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.hero-tagline {
  color: var(--amber);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-description {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.quick-spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quick-spec-item .spec-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.quick-spec-item .spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Core Features Section */
.core-features-section {
  background: var(--gray-50);
}

.core-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.core-feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.core-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-large {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.core-feature-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.core-feature-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Specs Section */
.specs-section {
  background: var(--white);
}

.specs-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Content Section */
.content-section {
  background: var(--gray-50);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.article-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.article-content li {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.article-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.article-content th,
.article-content td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.article-content th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--navy);
}

/* Cross-sell Section */
.cross-sell-section {
  background: var(--white);
}

.cross-sell-card {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--gray-100);
}

.cross-sell-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.cross-sell-subtitle {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cross-sell-product {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.cross-sell-product img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.cross-sell-info {
  flex: 1;
}

.cross-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.cross-sell-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.cross-sell-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ========== RESPONSIVE STYLES FOR NEW COMPONENTS ========== */

@media (max-width: 1024px) {
  .product-showcase-grid,
  .product-showcase-grid-3,
  .product-catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-showcase-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .product-showcase-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .product-showcase-grid-2 .showcase-image,
  .product-catalog-grid .catalog-image {
    height: 260px;
  }

  .product-detail-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .core-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-showcase-grid,
  .product-showcase-grid-3,
  .product-showcase-grid-4,
  .product-showcase-grid-2,
  .product-catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase-grid-2 .showcase-image,
  .product-catalog-grid .catalog-image {
    height: 220px;
  }

  .showcase-highlights {
    grid-template-columns: 1fr;
  }
  
  .detail-features {
    grid-template-columns: 1fr;
  }
  
  .hero-quick-specs {
    grid-template-columns: 1fr;
  }
  
  .core-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cross-sell-product {
    flex-direction: column;
    text-align: center;
  }
  
  .cross-sell-product img {
    width: 100%;
    height: 180px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  .product-hero-info h1 {
    font-size: 1.75rem;
  }
  
  .showcase-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .showcase-actions,
  .detail-actions,
  .hero-actions,
  .help-actions,
  .comparison-cta-actions {
    flex-direction: column;
  }
  
  .showcase-actions .btn,
  .detail-actions .btn,
  .hero-actions .btn {
    width: 100%;
  }
  
  .product-showcase-card {
    margin-bottom: 1rem;
  }
  
  .showcase-image {
    height: 200px;
  }
}


/* ===== SSR-SHARED: Product Detail (moved from products/[slug].astro) ===== */

  .product-detail-hero {
    padding: 2rem 0 3rem;
    background: #f8fafc;
  }

  .product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .product-hero-image {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }

  .product-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-hero-info { padding: 1rem 0; }

  .hero-model-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .badge-flagship { background: var(--navy); color: #fff; }
  .badge-standard { background: var(--amber); color: #fff; }
  .badge-compact { background: #10b981; color: #fff; }

  .hero-tagline {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 500;
    margin: 0.5rem 0 1rem;
  }

  .hero-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }

  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

  .core-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .core-feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }

  .feature-icon-large {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
  }

  .core-feature-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
  }

  .core-feature-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
  }

  .specs-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
  }

  .spec-table { width: 100%; border-collapse: collapse; }
  .spec-table tr { border-bottom: 1px solid var(--gray-100); }
  .spec-table tr:last-child { border-bottom: none; }
  .spec-label {
    width: 40%;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-50);
  }
  .spec-value {
    padding: 1rem 1.5rem;
    color: var(--gray-900);
  }

  /* Other Products */
  .other-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .other-product-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .other-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .other-product-image {
    position: relative;
    background: var(--gray-50);
    padding: 1.5rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .other-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .other-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .other-product-body { padding: 1.5rem; }
  .other-product-body h3 { font-size: 1.15rem; margin: 0 0 0.5rem; color: var(--navy); }
  .other-tagline { color: var(--gray-500); font-size: 0.9rem; margin: 0 0 1rem; }
  .other-link {
    color: var(--amber);
    font-weight: 600;
    font-size: 0.9rem;
  }

  .cta-box {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 12px;
    color: #fff;
  }

  .cta-box h3 { color: #fff; font-size: 1.75rem; margin: 0 0 1rem; }
  .cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

  .article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
  }

  .article-content h2 {
    color: var(--navy);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--amber);
    display: inline-block;
  }

  .article-content h3 { color: var(--navy); font-size: 1.2rem; margin: 2rem 0 0.75rem; }
  .article-content p { color: var(--gray-700); margin-bottom: 1rem; }
  .article-content ul, .article-content ol { margin: 1rem 0; padding-left: 1.5rem; }
  .article-content li { color: var(--gray-700); margin-bottom: 0.5rem; }
  .article-content img { max-width: 100%; border-radius: 8px; margin: 1.5rem 0; }
  .article-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
  .article-content th, .article-content td { padding: 0.75rem 1rem; border: 1px solid var(--gray-200); text-align: left; }
  .article-content th { background: var(--gray-50); font-weight: 600; color: var(--navy); }

  @media (max-width: 768px) {
    .product-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .core-features-grid { grid-template-columns: 1fr 1fr; }
    .other-products-grid { grid-template-columns: 1fr; }
  }
/* ===== END Product Detail ===== */


/* ===== SSR-SHARED: Case Study Detail (moved from case-studies/[slug].astro) ===== */

.results-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.results-banner h3 {
  color: var(--amber);
  font-size: 1.25rem;
  margin: 0;
  white-space: nowrap;
}

.results-banner h3 .icon {
  margin-right: 0.5rem;
}

.results-banner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.results-banner li {
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

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

.product-mini-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  text-decoration: none;
  color: inherit;
}

.product-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-mini-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-mini-card h4 {
  padding: 1rem 1rem 0.5rem;
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
}

.product-mini-card p {
  padding: 0 1rem 1rem;
  margin: 0;
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .results-banner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .results-banner ul {
    flex-direction: column;
  }
}
/* ===== END Case Study Detail ===== */
