/* ============================================
   ARSES Become a Seller — Page Styles
   Premium seller onboarding & conversion page
   ============================================ */

.bs {
  padding-top: var(--header-height);
}

.bs strong {
  color: var(--text);
  font-weight: 600;
}

.bs-text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #37b8e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bs .section {
  position: relative;
}

.bs .section__header p {
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */

.bs-hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-5) 0 var(--space-6);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.bs-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bs-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.bs-hero__glow--a {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(31, 122, 92, 0.24) 0%, transparent 70%);
}

.bs-hero__glow--b {
  width: 420px;
  height: 420px;
  bottom: -80px;
  left: -100px;
  background: radial-gradient(circle, rgba(55, 184, 224, 0.18) 0%, transparent 70%);
}

.bs-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 122, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 122, 92, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 100%);
}

.bs-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.bs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bs-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: bs-pulse 2.4s ease-in-out infinite;
}

@keyframes bs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.bs-hero__title {
  margin: var(--space-2) 0;
  max-width: 14ch;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.bs-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: var(--space-3);
}

.bs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.bs-hero__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  color: var(--muted);
}

.bs-hero__pillars li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bs-hero__pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bs-hero__pillar-dot--map { background: #1f7a5c; }
.bs-hero__pillar-dot--ai { background: #37b8e0; }
.bs-hero__pillar-dot--logistics { background: #8b5cf6; }

.bs-hero__visual {
  display: flex;
  justify-content: center;
}

.bs-ecosystem {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.bs-ecosystem__svg {
  width: 100%;
  height: auto;
  display: block;
}

.bs-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 122, 92, 0.15);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.bs-chip--1 { top: 8%; left: 4%; }
.bs-chip--2 { top: 18%; right: 0; }
.bs-chip--3 { bottom: 28%; left: 0; }
.bs-chip--4 { bottom: 12%; right: 6%; }
.bs-chip--5 { top: 48%; right: -2%; }

@media (min-width: 1024px) {
  .bs-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
}

/* ============================================================
   WHY SELL — 6 large benefit cards
   ============================================================ */

.bs-why {
  background: var(--card);
}

.bs-why__grid {
  display: grid;
  gap: var(--space-3);
}

.bs-why-card {
  padding: var(--space-4);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.bs-why-card:hover,
.bs-why-card.is-hovered {
  border-color: rgba(31, 122, 92, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.bs-why-card__emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.bs-why-card h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: var(--space-1);
}

.bs-why-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .bs-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bs-why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   WHO CAN SELL — seller type grid
   ============================================================ */

.bs-who {
  background: linear-gradient(180deg, var(--background) 0%, #eef5f1 100%);
}

.bs-who__grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(2, 1fr);
}

.bs-who-card {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.bs-who-card:hover {
  border-color: rgba(31, 122, 92, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.bs-who-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .bs-who__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bs-who__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2) var(--space-3);
  }
}

/* ============================================================
   SELLING PROCESS — vertical timeline
   ============================================================ */

.bs-process {
  background: var(--card);
}

.bs-process__track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.bs-process__step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-2);
  padding-bottom: var(--space-3);
}

.bs-process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(31, 122, 92, 0.15));
}

.bs-process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}

.bs-process__step:last-child .bs-process__num {
  background: linear-gradient(135deg, var(--primary) 0%, #37b8e0 100%);
}

.bs-process__body {
  padding: var(--space-2) var(--space-3);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.bs-process__step:hover .bs-process__body {
  border-color: rgba(31, 122, 92, 0.25);
  box-shadow: var(--shadow-md);
}

.bs-process__body h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.bs-process__body p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================================
   AI HELP — highlight section
   ============================================================ */

.bs-ai {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #0d3b2e 0%, #165a44 40%, #1a4d6e 100%);
  color: #fff;
}

.bs-ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(55, 184, 224, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(31, 122, 92, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.bs-ai .section__header h2,
.bs-ai .section__header p {
  color: #fff;
}

.bs-ai .section__header p {
  opacity: 0.85;
}

.bs-ai .badge {
  background: rgba(255, 255, 255, 0.12);
  color: #bfe6d2;
  border-color: rgba(255, 255, 255, 0.15);
}

.bs-ai__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-2);
}

.bs-ai-card {
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.bs-ai-card:hover,
.bs-ai-card.is-highlighted {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(55, 184, 224, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.bs-ai-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(55, 184, 224, 0.2);
  color: #7dd3fc;
  margin-bottom: var(--space-2);
}

.bs-ai-card.is-highlighted .bs-ai-card__icon {
  background: rgba(55, 184, 224, 0.35);
  color: #fff;
}

.bs-ai-card h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
}

.bs-ai-card p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 640px) {
  .bs-ai__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bs-ai__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
}

/* ============================================================
   DASHBOARD PREVIEW
   ============================================================ */

.bs-dashboard {
  background: linear-gradient(180deg, var(--background) 0%, #eef5f1 100%);
}

.bs-dashboard__wrap {
  display: grid;
  gap: var(--space-4);
  align-items: start;
}

.bs-dashboard__mockup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.bs-dashboard__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f3f4f6;
  border-bottom: 1px solid var(--border);
}

.bs-dashboard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
}

.bs-dashboard__dot:nth-child(1) { background: #f87171; }
.bs-dashboard__dot:nth-child(2) { background: #fbbf24; }
.bs-dashboard__dot:nth-child(3) { background: #34d399; }

.bs-dashboard__url {
  flex: 1;
  margin-left: 8px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--muted);
  background: #fff;
  border-radius: 6px;
}

.bs-dashboard__layout {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 320px;
}

.bs-dashboard__sidebar {
  padding: var(--space-2);
  background: #f9fafb;
  border-right: 1px solid var(--border);
}

.bs-dashboard__nav-item {
  display: block;
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: left;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.bs-dashboard__nav-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.bs-dashboard__nav-item.is-active {
  background: var(--primary);
  color: #fff;
}

.bs-dashboard__main {
  padding: var(--space-3);
}

.bs-dashboard__panel h4 {
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.bs-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.bs-dashboard__stat {
  padding: var(--space-2);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.bs-dashboard__stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.bs-dashboard__stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.bs-dashboard__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding-top: var(--space-2);
}

.bs-dashboard__bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(31, 122, 92, 0.4) 100%);
  min-height: 12px;
}

.bs-dashboard__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bs-dashboard__list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 0.8125rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.bs-dashboard__list-item span:last-child {
  font-weight: 600;
  color: var(--primary);
}

.bs-dashboard__ai-hint {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2);
  background: var(--primary-light);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.bs-dashboard__text {
  max-width: 480px;
}

.bs-dashboard__text h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.bs-dashboard__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-2);
}

.bs-dashboard__features li {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--card);
  border: 1px solid rgba(31, 122, 92, 0.15);
  border-radius: 100px;
}

@media (min-width: 1024px) {
  .bs-dashboard__wrap {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }

  .bs-dashboard__layout {
    min-height: 380px;
  }
}

@media (max-width: 639px) {
  .bs-dashboard__layout {
    grid-template-columns: 1fr;
  }

  .bs-dashboard__sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .bs-dashboard__nav-item {
    width: auto;
    margin-bottom: 0;
  }
}

/* ============================================================
   ACCORDION (responsibilities + FAQ)
   ============================================================ */

.bs-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 800px;
  margin: 0 auto;
}

.bs-accordion__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.bs-accordion__item.is-open {
  border-color: rgba(31, 122, 92, 0.3);
  box-shadow: var(--shadow-md);
}

.bs-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-3);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
}

.bs-accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.bs-accordion__item.is-open .bs-accordion__icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.bs-accordion__panel {
  padding: 0 var(--space-3) var(--space-3);
}

.bs-accordion__panel p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.bs-accordion__panel a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.bs-accordion__panel a:hover {
  text-decoration: underline;
}

.bs-resp {
  background: var(--card);
}

.bs-faq {
  background: linear-gradient(180deg, var(--background) 0%, #eef5f1 100%);
}

/* ============================================================
   VERIFICATION TIMELINE
   ============================================================ */

.bs-verify {
  background: var(--background);
}

.bs-verify__track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.bs-verify__step {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.bs-verify__arrow {
  display: flex;
  justify-content: center;
  padding: 6px 0;
  color: var(--primary);
  font-size: 1.25rem;
  opacity: 0.5;
}

.bs-verify__step:hover {
  border-color: rgba(31, 122, 92, 0.25);
  box-shadow: var(--shadow-md);
}

.bs-verify__step--premium {
  border-color: rgba(31, 122, 92, 0.3);
  background: linear-gradient(135deg, #f0faf5 0%, var(--card) 100%);
}

.bs-verify__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

.bs-verify__step--premium .bs-verify__badge {
  background: var(--primary);
  color: #fff;
}

.bs-verify__step h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2px;
}

.bs-verify__step p {
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* ============================================================
   FEES, SHIPPING, REFUNDS
   ============================================================ */

.bs-fees__grid {
  display: grid;
  gap: var(--space-3);
  max-width: 900px;
  margin: 0 auto var(--space-3);
}

.bs-fees-card {
  padding: var(--space-4);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.bs-fees-card:hover {
  border-color: rgba(31, 122, 92, 0.25);
  box-shadow: var(--shadow-md);
}

.bs-fees-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}

.bs-fees-card h3 {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 8px;
}

.bs-fees-card p {
  font-size: 0.875rem;
  line-height: 1.65;
}

.bs-fees__note {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-3);
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.bs-shipping__grid {
  display: grid;
  gap: var(--space-2);
}

.bs-shipping-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.bs-shipping-card:hover {
  border-color: rgba(31, 122, 92, 0.25);
  box-shadow: var(--shadow-md);
}

.bs-shipping-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

.bs-shipping-card h3 {
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 4px;
}

.bs-shipping-card p {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.bs-refunds__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-4);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.bs-refunds__inner p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-2);
}

.bs-refunds__inner p:last-child {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .bs-fees__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bs-shipping__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bs-shipping__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   INDUSTRIES + SUCCESS TIPS
   ============================================================ */

.bs-industries {
  background: var(--card);
}

.bs-industries__grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(2, 1fr);
}

.bs-industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3);
  text-align: center;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.bs-industry-card:hover {
  border-color: rgba(31, 122, 92, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.bs-industry-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
}

.bs-industry-card h3 {
  font-size: 0.9375rem;
  color: var(--text);
}

.bs-tips__grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(2, 1fr);
}

.bs-tip-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.bs-tip-card:hover {
  border-color: rgba(31, 122, 92, 0.25);
  box-shadow: var(--shadow-md);
}

.bs-tip-card__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

.bs-tip-card h3 {
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 4px;
}

.bs-tip-card p {
  font-size: 0.8125rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .bs-industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bs-tips__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bs-industries__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .bs-tips__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   CTA + DISCLAIMER
   ============================================================ */

.bs-cta {
  padding-bottom: var(--space-5);
}

.bs-cta__card {
  position: relative;
  overflow: hidden;
  padding: var(--space-6) var(--space-3);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #228b63 100%);
  text-align: center;
}

.bs-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.bs-cta__glow--a {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -60px;
  background: rgba(55, 184, 224, 0.25);
}

.bs-cta__glow--b {
  width: 260px;
  height: 260px;
  bottom: -60px;
  right: -40px;
  background: rgba(255, 255, 255, 0.08);
}

.bs-cta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.bs-cta__content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: var(--space-2);
}

.bs-cta__content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-3);
}

.bs-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

.bs-btn-light {
  background: #fff !important;
  color: var(--primary-dark) !important;
  border-color: #fff !important;
}

.bs-btn-light:hover {
  background: var(--primary-light) !important;
}

.bs-btn-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.bs-btn-ghost:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.bs-disclaimer {
  padding: var(--space-4) 0 var(--space-5);
}

.bs-disclaimer__inner {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.bs-disclaimer__icon {
  flex-shrink: 0;
  color: var(--muted);
  margin-top: 2px;
}

.bs-disclaimer__text p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 6px;
}

.bs-disclaimer__text p:last-child {
  margin-bottom: 0;
}
