/* ========================================
   REGAXIA FACTORING — Global Stylesheet
   Clean, professional, trustworthy
   ======================================== */

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

:root {
  /* Primary: deep teal/green — conveys trust & stability */
  --primary: #0B6B5E;
  --primary-dark: #084D44;
  --primary-light: #E8F5F2;
  --primary-50: rgba(11,107,94,0.05);

  /* Accent: warm gold for CTAs */
  --accent: #C8963E;
  --accent-light: #FFF7EB;

  /* Neutrals */
  --text: #1A1A2E;
  --text-secondary: #5C6370;
  --text-muted: #8E95A2;
  --bg: #FFFFFF;
  --bg-light: #F8F9FB;
  --bg-warm: #FAFAF7;
  --border: #E5E8ED;
  --border-light: #F0F1F4;

  /* Functional */
  --success: #0D9668;
  --danger: #D94040;
  --info: #2B7DE9;

  /* Spacing */
  --section-py: 80px;
  --container-px: 24px;

  /* Typography */
  --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-en: 'Inter', var(--font-main);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.fw-700 { font-weight: 700; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.top-bar a {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}
.top-bar a:hover { color: #fff; }
.top-bar .tel {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #fff;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.logo img {
  height: 40px;
  width: auto;
}
.logo .logo-sub {
  display: none;
}
.logo-icon {
  display: none;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.main-nav a:hover {
  background: var(--primary-50);
  color: var(--primary);
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-md) !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  font-size: 20px;
  color: var(--primary);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  line-height: 1;
  transition: all 0.2s;
}
.nav-toggle:hover {
  background: var(--primary);
  color: #fff;
}

/* Mobile menu dropdown */
.main-nav.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 64px;
  right: 16px;
  background: #fff;
  z-index: 1000;
  padding: 8px 0;
  gap: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px;
  animation: slideDown 0.2s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.main-nav.open a {
  font-size: 14px;
  padding: 12px 20px;
  color: var(--text);
  font-weight: 500;
  border-radius: 0;
}
.main-nav.open a:hover {
  background: var(--primary-50);
  color: var(--primary);
}
.main-nav.open .nav-cta {
  margin: 8px 12px;
  text-align: center;
  border-radius: var(--radius-md) !important;
}

/* Close button hidden for dropdown style */
.nav-close { display: none !important; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #0E8A7A 100%);
  color: #fff;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero h1 .highlight {
  color: var(--accent);
  display: inline;
}
.hero-lead {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
}
.hero-stat .num small { font-size: 16px; font-weight: 500; }
.hero-stat .label {
  font-size: 11px;
  opacity: 0.75;
  margin-top: 2px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-visual {
  flex: 0 0 380px;
  display: none;
  align-items: center;
  justify-content: center;
}
.hero-visual-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  width: 320px;
}
.hero-visual-card .icon-big {
  font-size: 64px;
  margin-bottom: 12px;
}
.hero-visual-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-visual-card p {
  font-size: 13px;
  opacity: 0.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #B5852F;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,150,62,0.3);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.btn-green {
  background: var(--primary);
  color: #fff;
}
.btn-green:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11,107,94,0.3);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

/* ============================================
   SECTION
   ============================================ */
.section {
  padding: var(--section-py) 0;
}
.section-light { background: var(--bg-light); }
.section-warm { background: var(--bg-warm); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.4;
}
.section-header .desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FEATURE GRID (選ばれる理由)
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table thead th {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.comparison-table thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.comparison-table thead th.th-highlight {
  background: var(--primary-dark);
}
.comparison-table td {
  padding: 12px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border-light);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) { background: var(--bg-light); }
.comparison-table .good { color: var(--success); font-weight: 600; }
.comparison-table .bad { color: var(--danger); }

/* ============================================
   FLOW (ご利用の流れ)
   ============================================ */
.flow-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.flow-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -10%;
  width: 20%;
  height: 2px;
  background: var(--border);
}
.flow-step:last-child::after { display: none; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.flow-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.flow-step p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CASE / INDUSTRY
   ============================================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.case-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.case-card-header {
  background: var(--primary-light);
  padding: 20px;
  text-align: center;
}
.case-card-header .icon { font-size: 36px; margin-bottom: 8px; }
.case-card-header h3 { font-size: 15px; font-weight: 700; color: var(--primary-dark); }
.case-card-body {
  padding: 20px;
}
.case-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.case-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-size: 56px;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.8;
  padding-left: 4px;
}
.testimonial .author {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 600;
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.stat-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: center;
  flex: 1;
  max-width: 200px;
}
.stat-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--bg);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q .q-mark {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-q .arrow {
  margin-left: auto;
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 20px 16px 60px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .tel-big {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.cta-banner .tel-note {
  font-size: 12px;
  opacity: 0.7;
}
.cta-banner .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1A1A2E;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand .logo-icon { background: var(--primary); }
.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.7;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  padding: 3px 0;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  opacity: 0.5;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}
.footer-social a:hover { color: #fff; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--primary-dark);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.page-hero .en {
  font-family: var(--font-en);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 8px;
}
.page-hero h1 {
  font-size: 30px;
  font-weight: 800;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-light);
  padding: 10px 0;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb span { margin: 0 6px; }

/* ============================================
   FORM
   ============================================ */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group label .required {
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-main);
  transition: border-color 0.2s;
  background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-50);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   CARD
   ============================================ */
.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

/* ============================================
   SIMPLE TABLE (会社概要 etc)
   ============================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th,
.info-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.info-table th {
  width: 160px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .hero .container { flex-direction: column; }
  .hero-visual { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { flex-direction: column; gap: 24px; }
  .flow-step::after { display: none; }
}

@media (max-width: 968px) {
  .top-bar { display: none; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  :root { --section-py: 56px; }
  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: 26px; line-height: 1.4; }
  .hero-lead { font-size: 14px; line-height: 1.75; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .section-header h2 { font-size: 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-box { min-width: 140px; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Comparison table → stacked cards on mobile */
  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table th,
  .comparison-table td,
  .comparison-table tr { display: block; }

  .comparison-table thead { display: none; }

  .comparison-table tbody tr {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
    padding: 16px;
    border-left: 4px solid var(--primary);
  }
  .comparison-table tbody tr:nth-child(even) { background: #fff; }

  .comparison-table td {
    padding: 6px 0;
    border-bottom: none;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }

  .comparison-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
    min-width: 0;
  }

  .comparison-table td:first-child {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    padding-bottom: 8px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border-light);
    display: block;
  }
  .comparison-table td:first-child strong { color: var(--primary); }
}
