/* 海科融通4G大机品牌设计系统 - 深板岩稳清风 */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');

:root {
  /* 品牌主色 - 深板岩 */
  --hypos-slate: #1E293B;
  --hypos-slate-light: #334155;
  --hypos-slate-dark: #0F172A;

  /* 稳蓝 - 稳定不跳码 */
  --stable-blue: #0EA5E9;
  --stable-blue-light: #38BDF8;
  --stable-blue-dark: #0284C7;

  /* 清紫 - 正规一清 */
  --regular-purple: #8B5CF6;
  --regular-purple-light: #A78BFA;
  --regular-purple-dark: #7C3AED;

  /* 中性色 */
  --bg-page: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-gray: #F1F5F9;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-light: #64748B;
  --text-muted: #94A3B8;

  /* 功能色 */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;

  /* 阴影 */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-slate: 0 4px 14px rgba(30, 41, 59, 0.15);

  /* 圆角 */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* 过渡 */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;

  /* 字体 */
  --font-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Sans', var(--font-sans);
}

/* 重置样式 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* 容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 960px;
}

/* 导航栏 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  transition: box-shadow var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-slate);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hypos-slate);
}

.navbar-logo svg {
  width: 36px;
  height: 36px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-nav a {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.navbar-nav a:hover {
  color: var(--hypos-slate);
  background: var(--bg-gray);
}

.navbar-nav a.active {
  color: var(--stable-blue);
  background: rgba(14, 165, 233, 0.08);
}

.navbar-cta {
  margin-left: 16px;
}

/* 汉堡菜单 */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hypos-slate);
  transition: all var(--transition-fast);
}

/* 移动端导航 */
@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-white);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .navbar-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav a {
    width: 100%;
    padding: 12px 16px;
  }

  .navbar-cta {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--stable-blue) 0%, var(--stable-blue-dark) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--hypos-slate);
  border: 2px solid var(--hypos-slate);
}

.btn-outline:hover {
  background: var(--hypos-slate);
  color: white;
}

.btn-purple {
  background: linear-gradient(135deg, var(--regular-purple) 0%, var(--regular-purple-dark) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* Hero区域 */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--hypos-slate) 0%, var(--hypos-slate-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--stable-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-decoration {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Hero变体 - 稳蓝背景 */
.hero-stable {
  background: linear-gradient(135deg, var(--stable-blue-dark) 0%, var(--stable-blue) 100%);
}

.hero-stable::before {
  background:
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

/* Hero变体 - 清紫背景 */
.hero-purple {
  background: linear-gradient(135deg, var(--regular-purple-dark) 0%, var(--regular-purple) 100%);
}

.hero-purple::before {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
}

/* Hero变体 - 略低高度 */
.hero-compact {
  padding: 120px 0 60px;
}

/* 内容区块 */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header.left {
  text-align: left;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header.left .section-subtitle {
  margin: 0;
}

/* 稳清图文区块 */
.featured-section {
  background: var(--bg-white);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.featured-image img {
  width: 100%;
  height: auto;
}

.featured-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.featured-content p {
  font-size: 1.0625rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.featured-content .highlight {
  color: var(--stable-blue);
  font-weight: 600;
}

.featured-content .highlight-purple {
  color: var(--regular-purple);
  font-weight: 600;
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .featured-grid.reverse {
    direction: ltr;
  }
}

/* 卡片网格 */
.card-grid {
  display: grid;
  gap: 24px;
}

/* 错落卡片 - 稳定不跳码 */
.staggered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.staggered-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.staggered-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.staggered-card.wide {
  grid-column: span 1;
}

.staggered-card .card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--stable-blue) 0%, var(--stable-blue-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.staggered-card .card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.staggered-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.staggered-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

.staggered-card .stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stable-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.staggered-card .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .staggered-grid {
    grid-template-columns: 1fr;
  }

  .staggered-card.wide {
    grid-column: span 1;
  }
}

/* 特色卡片 */
.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card.purple .card-icon {
  background: linear-gradient(135deg, var(--regular-purple) 0%, var(--regular-purple-dark) 100%);
}

.feature-card .card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--stable-blue) 0%, var(--stable-blue-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card .card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

.feature-card .stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stable-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.feature-card.purple .stat {
  color: var(--regular-purple);
}

/* 三列网格 */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .three-col-grid {
    grid-template-columns: 1fr;
  }
}

/* 色块背景卡片 */
.slate-card {
  background: linear-gradient(135deg, var(--hypos-slate) 0%, var(--hypos-slate-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
}

.slate-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.slate-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* 对比表格 */
.compare-table {
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--bg-gray);
}

.compare-table th {
  background: var(--bg-gray);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9375rem;
}

.compare-table td {
  font-size: 0.9375rem;
  color: var(--text-body);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .check {
  color: var(--success);
  font-weight: 600;
}

.compare-table .cross {
  color: var(--error);
}

.compare-table .highlight-cell {
  background: rgba(14, 165, 233, 0.05);
  font-weight: 500;
  color: var(--stable-blue);
}

.compare-table .highlight-cell-purple {
  background: rgba(139, 92, 246, 0.05);
  font-weight: 500;
  color: var(--regular-purple);
}

@media (max-width: 768px) {
  .compare-table {
    font-size: 0.8125rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px;
  }
}

/* FAQ手风琴 */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--stable-blue);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* 承诺框 */
.promise-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.promise-box h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.promise-list {
  display: grid;
  gap: 16px;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-body);
}

.promise-item .icon {
  width: 24px;
  height: 24px;
  background: var(--regular-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.promise-item .icon svg {
  width: 14px;
  height: 14px;
  color: white;
}

/* CTA区块 */
.cta-section {
  background: linear-gradient(135deg, var(--hypos-slate) 0%, var(--hypos-slate-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-title .highlight {
  color: var(--regular-purple);
}

.cta-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

/* 页脚 */
.footer {
  background: linear-gradient(180deg, var(--hypos-slate-dark) 0%, var(--hypos-slate) 100%);
  padding: 60px 0 30px;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
}

.footer-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

/* 表格响应式 */
.table-wrapper {
  overflow-x: auto;
  margin: 0 -20px;
  padding: 0 20px;
}

/* 布局工具类 */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* 区块背景 */
.bg-white { background: var(--bg-white); }
.bg-gray { background: var(--bg-gray); }

/* 文字颜色 */
.text-slate { color: var(--hypos-slate); }
.text-blue { color: var(--stable-blue); }
.text-purple { color: var(--regular-purple); }

/* 动画 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* 表单 */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid var(--text-muted);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--stable-blue);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* 面包屑 */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

/* 品牌对比表专用样式 */
.brand-table {
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border-collapse: collapse;
}

.brand-table th,
.brand-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--bg-gray);
}

.brand-table th {
  background: var(--bg-gray);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.brand-table th:first-child {
  width: 200px;
}

.brand-table td {
  font-size: 0.9375rem;
  color: var(--text-body);
}

.brand-table tr:last-child td {
  border-bottom: none;
}

.brand-table .brand-name {
  font-weight: 600;
  color: var(--text-dark);
}

.brand-table .hypos-brand {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.05) 0%, rgba(51, 65, 85, 0.05) 100%);
}

.brand-table .hypos-brand .brand-name {
  color: var(--hypos-slate);
}

.brand-table .recommend-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--stable-blue) 0%, var(--stable-blue-dark) 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-left: 8px;
}

@media (max-width: 768px) {
  .brand-table th,
  .brand-table td {
    padding: 14px 16px;
    font-size: 0.875rem;
  }

  .brand-table th:first-child {
    width: 120px;
  }
}
