/* ================================================================
   Supmea | Data Center Liquid Cooling Instrumentation
   Global Stylesheet — shared across all 13 pages
   ================================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --primary: #0055a6;
  --primary-dark: #003d7a;
  --primary-light: #e8f0fe;
  --accent: #00b4d8;
  --accent-dark: #0096b7;
  --success: #059669;
  --warning: #d97706;
  --navy: #0a1628;
  --font-display: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --max-w: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

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

/* ================ UTILITY ================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 680px;
  line-height: 1.7;
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ================ TOP BAR ================ */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: rgba(255,255,255,0.85); transition: var(--transition); font-weight: 500; }
.topbar a:hover { color: var(--accent); }
.topbar-links { display: flex; gap: 24px; align-items: center; }
.topbar-links a { display: flex; align-items: center; gap: 6px; }

/* ================ NAVBAR ================ */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); font-weight: 300; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--primary); background: var(--gray-50); }
.nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-cta { margin-left: 8px; }

/* ================ SUBPAGE HERO ================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 50%, #0a2040 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 28px;
}
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ================ HOMEPAGE HERO (kept specific) ================ */
.home-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 50%, #0a2040 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,85,166,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.home-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.home-hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.home-hero h1 em { font-style: normal; color: var(--accent); }
.home-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.home-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.home-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.home-hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.home-hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-weight: 500;
}
.home-hero-visual { display: flex; justify-content: center; align-items: center; }
.home-hero-graphic { width: 100%; max-width: 480px; aspect-ratio: 1; position: relative; }
.home-hero-ring { position: absolute; border: 1px solid rgba(0,180,216,0.15); border-radius: 50%; animation: spin 40s linear infinite; }
.home-hero-ring-1 { width: 100%; height: 100%; top: 0; left: 0; }
.home-hero-ring-2 { width: 75%; height: 75%; top: 12.5%; left: 12.5%; border-color: rgba(0,85,166,0.2); animation-direction: reverse; animation-duration: 30s; }
.home-hero-ring-3 { width: 50%; height: 50%; top: 25%; left: 25%; border-color: rgba(0,180,216,0.12); animation-duration: 20s; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.home-hero-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0,180,216,0.3);
}
.home-hero-center-icon svg { width: 48px; height: 48px; color: white; }
.home-hero-node {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.home-hero-node-1 { top: 8%; right: 5%; }
.home-hero-node-2 { bottom: 15%; left: 2%; }
.home-hero-node-3 { top: 40%; right: -5%; }
.home-hero-node-4 { bottom: 5%; right: 20%; }

/* ================ PRODUCT CARDS ================ */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-img svg { width: 56px; height: 56px; color: var(--primary); opacity: 0.6; }
.product-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.product-card:hover .product-card-img::after { transform: scaleX(1); }
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.product-card-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.product-card-link:hover { gap: 10px; }
.product-card-link svg { width: 14px; height: 14px; }

/* ================ BG VARIANTS ================ */
.bg-white { background: var(--white); }
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }

/* ================ SOLUTION CARDS ================ */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.solution-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); }
.solution-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.solution-icon svg { width: 24px; height: 24px; color: var(--primary); }
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.solution-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.solution-articles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.solution-article {
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.solution-article:hover { color: var(--primary); }
.solution-article::before {
  content: '→';
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
}

/* ================ INDUSTRY CARDS ================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industry-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
}
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.95) 100%);
  z-index: 1;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.industry-card-content { position: relative; z-index: 2; }
.industry-card-icon {
  width: 40px; height: 40px;
  background: rgba(0,180,216,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.industry-card-icon svg { width: 20px; height: 20px; color: var(--accent); }
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.industry-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ================ NEWS CARDS ================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.news-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card-img svg { width: 40px; height: 40px; color: var(--gray-400); }
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 500;
  align-self: flex-start;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
}
.news-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.news-card-meta {
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ================ SPEC TABLE ================ */
.spec-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  padding: 20px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.spec-table th, .spec-table td {
  padding: 14px 24px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
}
.spec-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
  width: 38%;
  font-size: 13px;
}
.spec-table td { color: var(--gray-600); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table tbody tr:hover { background: var(--gray-50); }

/* ================ FEATURE GRID / APPLICATION CARDS ================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--primary); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ================ FAQ ================ */
.faq-list { margin-top: 32px; max-width: 860px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-900);
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--accent);
  transition: var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--primary); }
.faq-body {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}
.faq-body p + p { margin-top: 10px; }

/* ================ INLINE CTA CARD ================ */
.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  color: var(--white);
}
.cta-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.cta-card p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 0;
}
.cta-card-actions { display: flex; flex-direction: column; gap: 10px; }

/* ================ CTA SECTION (dark) ================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
}
.cta-section-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-section-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.cta-section-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-section-cards { display: flex; flex-direction: column; gap: 16px; }
.cta-section-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.cta-section-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(0,180,216,0.3); }
.cta-section-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-section-card-icon.whatsapp { background: rgba(37,211,102,0.15); }
.cta-section-card-icon.whatsapp svg { color: #25d366; }
.cta-section-card-icon.email { background: rgba(0,180,216,0.15); }
.cta-section-card-icon.email svg { color: var(--accent); }
.cta-section-card-icon svg { width: 22px; height: 22px; }
.cta-section-card-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 2px; font-weight: 500; }
.cta-section-card-value { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--white); }

/* ================ FOOTER ================ */
.footer {
  background: var(--gray-900);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ================ ARTICLE / LONG-FORM ================ */
.prose { max-width: 800px; }
.prose p { margin-bottom: 18px; line-height: 1.8; color: var(--gray-700); font-size: 16px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 40px 0 18px;
  letter-spacing: -0.3px;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 28px 0 14px;
}
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; line-height: 1.75; color: var(--gray-700); }
.prose strong { color: var(--gray-900); font-weight: 600; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 0 12px 20px;
  color: var(--gray-600);
  font-style: italic;
  margin: 24px 0;
}

/* ================ CONTACT FORM ================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,85,166,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12px; color: var(--gray-500); margin-top: 8px; line-height: 1.5; }

.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.contact-info-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.contact-info-card a { color: var(--primary); font-weight: 600; }

/* ================ COMPARISON / TWO-COL ================ */
.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}
.twocol-left h2, .twocol-right h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
}

/* ================ PROCESS / STEPS ================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; counter-reset: stepcounter; }
.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.step::before {
  counter-increment: stepcounter;
  content: counter(stepcounter, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ================ RELATED / INLINE LINK LIST ================ */
.link-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 20px;
}
.link-list a {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.link-list a::before { content: '→'; font-family: var(--font-mono); color: var(--accent); }
.link-list a:hover { color: var(--primary-dark); border-color: var(--primary-light); }

/* ================ RESPONSIVE ================ */
@media (max-width: 1024px) {
  .home-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .home-hero-desc { margin-left: auto; margin-right: auto; }
  .home-hero-actions { justify-content: center; }
  .home-hero-stats { justify-content: center; }
  .home-hero-visual { display: none; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-section-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-section-desc { margin-left: auto; margin-right: auto; }
  .cta-section-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .twocol { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  .home-hero { padding: 60px 0; }
  .home-hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero { padding: 48px 0 56px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 26px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .home-hero-stats { flex-wrap: wrap; gap: 24px; }
  .topbar-inner { flex-direction: column; gap: 6px; }
  .navbar-inner { flex-wrap: wrap; gap: 8px; height: auto; padding: 12px 0; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 28px; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
  .link-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .spec-table th, .spec-table td { padding: 12px 16px; font-size: 13px; }
  .spec-table th { width: 42%; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .home-hero-stats { flex-direction: column; align-items: center; }
  .steps { grid-template-columns: 1fr; }
}

/* ================================================================
   Supmea | GEO — Extended Component Styles
   (appended for products / solutions / industries / resources /
    insights / about / contact pages)
   ================================================================ */

/* ---- generic helpers ---- */
.site-wrap { display: block; }
.mono { font-family: var(--font-mono); font-size: 13px; color: var(--gray-700); }
.table-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px dashed var(--primary-light);
  transition: var(--transition);
}
.table-link:hover { color: var(--primary-dark); border-bottom-color: var(--primary); }

/* ---- pill sticky sub-nav (products / solutions / industries / resources / insights) ---- */
.pill-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
  position: sticky;
  top: 68px;
  z-index: 50;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.pill-nav-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.pill-nav-inner::-webkit-scrollbar { display: none; }
.pill {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  white-space: nowrap;
  transition: var(--transition);
  background: var(--white);
}
.pill:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-light); }
.pill.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ---- PRODUCTS HUB: detail cards ---- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.product-detail-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  scroll-margin-top: 160px;
}
.product-detail-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.product-detail-icon {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-50), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-icon svg { width: 92%; height: auto; max-height: 92%; color: var(--primary); opacity: 1; }
.product-detail-body { display: flex; flex-direction: column; gap: 14px; }
.product-detail-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.product-detail-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}
.product-detail-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.spec-table-compact th, .spec-table-compact td { padding: 8px 14px; font-size: 13px; }

.app-tags-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.app-tags-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
}
.app-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.app-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--gray-700);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 500;
}
.product-detail-actions { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }

/* ---- PRODUCTS HUB: selection guidance ---- */
.selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.selector-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.selector-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.selector-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.selector-icon svg { width: 22px; height: 22px; color: var(--primary); }
.selector-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.selector-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.selector-list {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
  flex: 1;
}
.selector-list li { padding-left: 14px; position: relative; margin-bottom: 2px; }
.selector-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.selector-list strong { color: var(--gray-900); font-weight: 600; }
.selector-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.selector-link:hover { color: var(--primary-dark); }

/* ---- compliance grid (products hub integration section) ---- */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.compliance-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.compliance-item strong {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gray-900);
  font-weight: 700;
}
.compliance-item span { font-size: 12px; color: var(--gray-500); }

/* ---- twocol layout (right side) ---- */
.twocol { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.twocol-right { min-width: 0; }

/* ---- SOLUTIONS / INDUSTRIES: arch sections ---- */
.arch-header { margin-bottom: 32px; max-width: 820px; }
.arch-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,180,216,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-weight: 500;
}
.arch-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.arch-summary {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}
.arch-body { margin-bottom: 36px; }
.arch-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: start; }
.arch-subheading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ---- KPI grid (solutions page) ---- */
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.kpi-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.kpi-label { font-size: 13px; color: var(--gray-600); }
.kpi-value {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-900);
  text-align: right;
}

/* ---- priority / rec list (industries) ---- */
.priority-list {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.8;
}
.priority-list li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.priority-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.priority-list strong { color: var(--gray-900); font-weight: 600; }

.rec-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.rec-chip {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-light);
  padding: 7px 14px;
  border-radius: 6px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.rec-chip:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ---- compare table (bold cells) ---- */
.compare-table th:not(:first-child),
.compare-table td:not(:first-child) { text-align: left; }
.compare-table thead th { background: var(--primary-light); color: var(--primary-dark); }

/* ---- RESOURCES: resource table links ---- */
.resource-table td:last-child { text-align: right; }
.resource-table td:nth-child(2) { color: var(--gray-600); font-size: 13px; }

/* ---- cross-link grid (on every hub page) ---- */
.cross-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.cross-link-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cross-link-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cross-link-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.cross-link-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}
.cross-link-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; flex: 1; }
.cross-link-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 6px;
}

/* ---- inline CTA (on resources page) ---- */
.cta-inline {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}
.cta-inline h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--white);
}
.cta-inline p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.cta-inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ---- INSIGHTS: table of contents ---- */
.article-toc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 40px;
}
.article-toc-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: var(--transition);
}
.article-toc-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); background: var(--primary-light); }
.article-toc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}
.article-toc-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
}
.article-toc-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  white-space: nowrap;
}

/* ---- INSIGHTS: article body ---- */
.article {
  max-width: 820px;
  margin: 0 auto;
  scroll-margin-top: 160px;
}
.article-meta-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.article-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 500;
}
.article-meta-item {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
}
.article-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.article-lede {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}

/* ---- CONTACT: grid + form + channels ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.contact-form label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  background: var(--white);
  color: var(--gray-800);
  transition: var(--transition);
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,85,166,0.1);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .form-note {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 10px;
}
.contact-form button.btn { cursor: pointer; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-cards-column { display: flex; flex-direction: column; gap: 12px; }
.contact-channel-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.contact-channel-card:hover:not(.contact-channel-static) {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}
.contact-channel-static { cursor: default; }
.contact-channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon.whatsapp { background: rgba(37,211,102,0.12); }
.contact-channel-icon.whatsapp svg { color: #25d366; width: 22px; height: 22px; }
.contact-channel-icon.email { background: rgba(0,180,216,0.12); }
.contact-channel-icon.email svg { color: var(--accent); width: 22px; height: 22px; }
.contact-channel-icon.location { background: rgba(0,85,166,0.1); }
.contact-channel-icon.location svg { color: var(--primary); width: 22px; height: 22px; }
.contact-channel-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 3px;
  font-weight: 500;
}
.contact-channel-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 3px;
}
.contact-channel-note {
  font-size: 12px;
  color: var(--gray-500);
}

/* ---- responsive adjustments for new components ---- */
@media (max-width: 1024px) {
  .product-detail-card { grid-template-columns: 1fr; }
  .product-detail-icon { max-width: 200px; margin: 0 auto; }
  .selector-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .arch-grid { grid-template-columns: 1fr; gap: 28px; }
  .twocol { grid-template-columns: 1fr; gap: 32px; }
  .cross-link-grid { grid-template-columns: 1fr; }
  .cta-inline { grid-template-columns: 1fr; padding: 28px; }
  .cta-inline-actions { justify-content: flex-start; }
  .article-toc-item { grid-template-columns: 1fr; gap: 6px; }
  .article-toc-meta { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .pill-nav { top: 0; }
  .arch-title, .article-title { font-size: 24px; }
  .article-lede { font-size: 16px; }
  .product-detail-card { padding: 22px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}


/* === SVG ILLUSTRATION ANIMATIONS === */

/* =================================================================
   SVG ILLUSTRATION ANIMATIONS
   Cards/heros use .illu-* classes. Animations are subdued when idle,
   and activated on hover of the parent .product-card / .news-card /
   .page-hero-illu container.
   ================================================================= */

/* Container styling - replaces plain gray placeholder */
.product-card-img,
.news-card-img {
  background: linear-gradient(135deg, #f7fbff 0%, #e8f4fa 100%) !important;
  position: relative;
  overflow: hidden;
}
.product-card-img::before,
.news-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,85,166,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,85,166,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.product-card-img svg,
.news-card-img svg {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  opacity: 1 !important;
  color: initial !important;
  position: relative;
  z-index: 1;
}

/* Illustration wrapper for hero sections */
.page-hero {
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
}
.page-hero-illu {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 280px;
  pointer-events: none;
  opacity: 0.85;
}
.page-hero-illu svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .page-hero-illu { display: none; }
}

/* ----- Animation Keyframes ----- */

/* Dashed flow along a path */
@keyframes illu-flow {
  to { stroke-dashoffset: -100; }
}
/* Slow pulse (for sensors/dots) */
@keyframes illu-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
/* Liquid wave rise */
@keyframes illu-wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
}
/* Rotating element */
@keyframes illu-rotate {
  to { transform: rotate(360deg); }
}
/* Data bars grow */
@keyframes illu-bar {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1); }
}
/* Thermometer rise */
@keyframes illu-thermo {
  0%, 100% { height: 30%; }
  50% { height: 85%; }
}
/* Signal propagation */
@keyframes illu-signal {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
/* Gentle floating */
@keyframes illu-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
/* Chart scan line */
@keyframes illu-scan {
  0% { transform: translateX(-100%); opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* ----- IDLE state: very subtle ambient motion ----- */

/* Flow lines idle: very slow */
.illu-flow-line {
  stroke-dasharray: 6 6;
  animation: illu-flow 8s linear infinite;
}
/* Sensor dots idle: slow pulse */
.illu-sensor-dot {
  transform-origin: center;
  animation: illu-pulse 3s ease-in-out infinite;
}
/* Default static elements */

/* ----- HOVER state: animations accelerate ----- */

.product-card:hover .illu-flow-line,
.news-card:hover .illu-flow-line,
.page-hero:hover .illu-flow-line {
  animation-duration: 1.5s;
}
.product-card:hover .illu-sensor-dot,
.news-card:hover .illu-sensor-dot,
.page-hero:hover .illu-sensor-dot {
  animation-duration: 1s;
}
.product-card:hover .illu-wave,
.news-card:hover .illu-wave {
  animation: illu-wave 2s ease-in-out infinite;
}
.product-card:hover .illu-rotate,
.news-card:hover .illu-rotate {
  animation: illu-rotate 3s linear infinite;
}
.product-card:hover .illu-bar,
.news-card:hover .illu-bar {
  animation: illu-bar 1.5s ease-in-out infinite;
  transform-origin: bottom;
}
.product-card:hover .illu-bar:nth-child(2) { animation-delay: 0.1s; }
.product-card:hover .illu-bar:nth-child(3) { animation-delay: 0.2s; }
.product-card:hover .illu-bar:nth-child(4) { animation-delay: 0.3s; }
.product-card:hover .illu-bar:nth-child(5) { animation-delay: 0.4s; }
.news-card:hover .illu-bar:nth-child(2) { animation-delay: 0.1s; }
.news-card:hover .illu-bar:nth-child(3) { animation-delay: 0.2s; }
.news-card:hover .illu-bar:nth-child(4) { animation-delay: 0.3s; }
.news-card:hover .illu-bar:nth-child(5) { animation-delay: 0.4s; }
.product-card:hover .illu-thermo,
.news-card:hover .illu-thermo {
  animation: illu-thermo 2s ease-in-out infinite;
  transform-origin: bottom;
}
.product-card:hover .illu-signal,
.news-card:hover .illu-signal {
  animation: illu-signal 1.8s ease-out infinite;
  transform-origin: center;
}
.product-card:hover .illu-signal:nth-of-type(2) { animation-delay: 0.6s; }
.product-card:hover .illu-signal:nth-of-type(3) { animation-delay: 1.2s; }
.news-card:hover .illu-signal:nth-of-type(2) { animation-delay: 0.6s; }
.news-card:hover .illu-signal:nth-of-type(3) { animation-delay: 1.2s; }
.product-card:hover .illu-float,
.news-card:hover .illu-float {
  animation: illu-float 1.5s ease-in-out infinite;
}
.news-card:hover .illu-scan {
  animation: illu-scan 2s linear infinite;
}

/* Hero illustrations ambient animation (always subtle) */
.page-hero-illu .illu-flow-line {
  animation-duration: 6s;
}
.page-hero-illu .illu-sensor-dot {
  animation-duration: 2.5s;
}

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  .illu-flow-line, .illu-sensor-dot, .illu-wave, .illu-rotate,
  .illu-bar, .illu-thermo, .illu-signal, .illu-float, .illu-scan {
    animation: none !important;
  }
}

/* === HERO V2 STYLES === */
/* =================================================================
   HOME HERO v2 — premium European B2B style
   ================================================================= */

.home-hero-v2 {
  position: relative;
  background: radial-gradient(ellipse at top left, #0d2750 0%, #0a1628 50%, #050d1c 100%);
  padding: 48px 0 56px;
  overflow: hidden;
  isolation: isolate;
}

.home-hero-v2 .home-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ---- ambient background layers ---- */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-glow-a {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #00b4d8 0%, transparent 70%);
  top: -140px; right: -100px;
  opacity: 0.4;
}
.hero-bg-glow-b {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #0055a6 0%, transparent 70%);
  bottom: -160px; left: -80px;
  opacity: 0.5;
}

/* ---- particles (floating dots) ---- */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: #00b4d8;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px rgba(0,180,216,0.8);
  animation: hero-particle-float 18s linear infinite;
}
.hero-particles span:nth-child(1)  { left: 8%;  animation-delay: 0s;   animation-duration: 22s; }
.hero-particles span:nth-child(2)  { left: 17%; animation-delay: 3s;   animation-duration: 19s; }
.hero-particles span:nth-child(3)  { left: 25%; animation-delay: 7s;   animation-duration: 25s; }
.hero-particles span:nth-child(4)  { left: 34%; animation-delay: 10s;  animation-duration: 21s; }
.hero-particles span:nth-child(5)  { left: 43%; animation-delay: 14s;  animation-duration: 24s; }
.hero-particles span:nth-child(6)  { left: 52%; animation-delay: 2s;   animation-duration: 20s; }
.hero-particles span:nth-child(7)  { left: 61%; animation-delay: 5s;   animation-duration: 23s; }
.hero-particles span:nth-child(8)  { left: 70%; animation-delay: 9s;   animation-duration: 26s; }
.hero-particles span:nth-child(9)  { left: 79%; animation-delay: 12s;  animation-duration: 18s; }
.hero-particles span:nth-child(10) { left: 88%; animation-delay: 15s;  animation-duration: 22s; }
.hero-particles span:nth-child(11) { left: 48%; animation-delay: 6s;   animation-duration: 27s; width: 2px; height: 2px; }
.hero-particles span:nth-child(12) { left: 73%; animation-delay: 11s;  animation-duration: 24s; width: 2px; height: 2px; }

@keyframes hero-particle-float {
  0%   { transform: translateY(100vh); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.9; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

/* ---- LEFT: content ---- */
.home-hero-v2 .hero-left { color: #ffffff; position: relative; z-index: 2; }

.home-hero-v2 .home-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,180,216,0.35);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.home-hero-v2 .home-hero-badge-dot {
  width: 6px; height: 6px;
  background: #00b4d8;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,180,216,0.9);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.home-hero-v2 h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #ffffff;
}
.home-hero-v2 h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #00b4d8 0%, #8cddef 60%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.home-hero-v2 .home-hero-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin-bottom: 24px;
  font-weight: 400;
}

.home-hero-v2 .home-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.home-hero-v2 .btn-accent {
  background: #00b4d8;
  box-shadow: 0 4px 20px rgba(0,180,216,0.3);
}
.home-hero-v2 .btn-accent:hover {
  background: #00a0c2;
  box-shadow: 0 6px 24px rgba(0,180,216,0.5);
  transform: translateY(-1px);
}
.home-hero-v2 .btn-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
}
.home-hero-v2 .btn-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* capability strip */
.hero-capability-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 10px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-capability-strip span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hero-capability-strip i {
  width: 3px; height: 3px;
  background: #00b4d8;
  border-radius: 50%;
  opacity: 0.5;
}

/* stats */
.home-hero-v2 .home-hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}
.home-hero-v2 .home-hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: baseline;
}
.home-hero-v2 .home-hero-stat-num span {
  font-size: 16px;
  color: #00b4d8;
  margin-left: 2px;
  font-weight: 500;
}
.home-hero-v2 .home-hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* ---- RIGHT: viz ---- */
.home-hero-v2 .hero-right {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 5 / 4;
  max-width: 480px;
  margin-left: auto;
  padding: 8px;
}
.hero-viz {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-schematic {
  width: 100%;
  height: 100%;
}

/* Flow streak animation */
.viz-flow-streaks path {
  stroke-dasharray: 60 200;
  animation: viz-flow 3s linear infinite;
}
.viz-flow-streaks path:nth-child(1) { animation-delay: 0s; }
.viz-flow-streaks path:nth-child(2) { animation-delay: 1s; }
.viz-flow-streaks path:nth-child(3) { animation-delay: 2s; }
@keyframes viz-flow {
  to { stroke-dashoffset: -260; }
}

/* CDU LED + sensor pulse */
.viz-led, .viz-sensor {
  transform-origin: center;
  animation: viz-pulse 2.2s ease-in-out infinite;
}
@keyframes viz-pulse {
  0%, 100% { opacity: 1; r: 3; filter: drop-shadow(0 0 4px #00b4d8); }
  50% { opacity: 0.4; r: 2.5; }
}
.viz-sensor { animation: viz-pulse-big 2.2s ease-in-out infinite; }
@keyframes viz-pulse-big {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 6px rgba(0,180,216,0.9)); }
  50% { opacity: 0.5; filter: drop-shadow(0 0 2px rgba(0,180,216,0.4)); }
}

/* rack blade flicker */
.viz-blade {
  animation: viz-blade-flicker 4s ease-in-out infinite;
}
.viz-blade:nth-child(even) { animation-delay: 2s; }
@keyframes viz-blade-flicker {
  0%, 100% { opacity: inherit; }
  50% { opacity: 0.15; }
}

/* load bars slight shimmer */
.viz-bar {
  animation: viz-bar-shimmer 5s ease-in-out infinite;
  transform-origin: left;
}
@keyframes viz-bar-shimmer {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

/* ---- Floating data cards ---- */
.hero-datacard {
  position: absolute;
  padding: 14px 18px;
  background: rgba(12, 30, 60, 0.55);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 10px;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  min-width: 140px;
  animation: card-float 6s ease-in-out infinite;
}
.hero-datacard-1 { top: 2%;  right: 2%;  animation-delay: 0s; }
.hero-datacard-2 { top: 44%; left: -2%;  animation-delay: 1.5s; }
.hero-datacard-3 { bottom: 4%; right: 4%; animation-delay: 3s; }

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

.hero-datacard-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.hero-datacard-value {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 6px;
}
.hero-datacard-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #00b4d8;
  line-height: 1;
  letter-spacing: -0.5px;
}
.hero-datacard-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.hero-datacard-spark svg {
  width: 90%;
  height: 18px;
  display: block;
}
.hero-datacard-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.65);
}
.status-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  animation: badge-pulse 2s ease-in-out infinite;
}
.status-ok {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.9);
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .viz-flow-streaks path,
  .viz-led, .viz-sensor, .viz-blade, .viz-bar,
  .hero-datacard, .home-hero-v2 .home-hero-badge-dot,
  .hero-particles span, .status-dot {
    animation: none !important;
  }
}

/* ---- responsive ---- */
@media (max-width: 1100px) {
  .home-hero-v2 h1 { font-size: 44px; }
}
@media (max-width: 1024px) {
  .home-hero-v2 .home-hero-inner { grid-template-columns: 1fr; text-align: left; }
  .home-hero-v2 .hero-right {
    max-width: 480px;
    margin: 32px auto 0;
    aspect-ratio: 4 / 3;
  }
  .home-hero-v2 h1 { font-size: 40px; }
}
@media (max-width: 768px) {
  .home-hero-v2 { padding: 56px 0 64px; }
  .home-hero-v2 h1 { font-size: 32px; }
  .home-hero-v2 .home-hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-datacard { min-width: 110px; padding: 10px 12px; }
  .hero-datacard-num { font-size: 20px; }
  .hero-capability-strip span { font-size: 9.5px; }
}
@media (max-width: 480px) {
  .home-hero-v2 .hero-right { display: none; }
  .home-hero-v2 h1 { font-size: 28px; }
}
/* === END HERO V2 STYLES === */


/* === OFFICIAL LOGO IMAGE === */
.logo-img {
  display: block;
  height: 34px;
  width: auto;
  max-height: 100%;
  min-width: 100px;  /* fallback if image fails to load so navbar doesn't collapse */
}
.logo-footer { display: inline-flex; align-items: center; }
.logo-footer .logo-img {
  height: 30px;
  min-width: 90px;
  filter: brightness(0) invert(1);  /* force white for dark footer regardless of source */
  opacity: 0.9;
}
/* Strip any residual text spacing from the anchor/div when image is inside */
.logo:has(.logo-img) { font-size: 0; line-height: 0; padding: 0; min-height: 34px; display: inline-flex; align-items: center; }
@media (max-width: 768px) {
  .logo-img { height: 28px; min-width: 88px; }
  .logo-footer .logo-img { height: 26px; min-width: 80px; }
}
/* === END OFFICIAL LOGO IMAGE === */
