body.theme-business {
  --color-primary: #1d4ed8;
  --color-accent: #0f766e;
}

.theme-business .hero {
  padding-top: var(--space-xl);
}

.theme-business .hero-layout {
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.theme-business .hero-copy {
  max-width: 62ch;
}

.theme-business .template-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.theme-business .template-tags span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
}

.theme-business .hero-panel {
  display: grid;
  gap: 1.25rem;
}

.theme-business .template-preview {
  min-height: 420px;
  padding: 1.5rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(29, 78, 216, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.theme-business .preview-top {
  width: 38%;
  height: 16px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.9);
}

.theme-business .preview-line {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.theme-business .preview-line-accent {
  width: 82%;
}

.theme-business .preview-line-long {
  width: 100%;
}

.theme-business .preview-line-mid {
  width: 72%;
}

.theme-business .preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.theme-business .preview-cards span {
  min-height: 110px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.theme-business .template-summary {
  display: grid;
  gap: 1rem;
}

.theme-business .template-summary > div {
  padding: 1.2rem 1.3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-business .template-summary strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.theme-business .section-header.narrow {
  max-width: 760px;
}

.theme-business .feature-card,
.theme-business .use-case-card,
.theme-business .comparison-card {
  position: relative;
  overflow: hidden;
}

.theme-business .feature-card::before,
.theme-business .comparison-card::before,
.theme-business .premium-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), transparent 48%);
  pointer-events: none;
}

.theme-business .profile-grid .card {
  min-height: 100%;
}

.theme-business .info-split {
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
}

.theme-business .template-points {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.theme-business .template-points li {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-business .comparison-card {
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-md);
}

.theme-business .comparison-card h3 {
  margin-bottom: 1rem;
}

.theme-business .testimonial.use-case-card {
  padding: 1.6rem;
}

.theme-business .testimonial.use-case-card h3 {
  margin-bottom: 0.8rem;
}

.theme-business .premium-cta {
  position: relative;
  overflow: hidden;
}

.theme-business .card:hover,
.theme-business .testimonial:hover,
.theme-business .comparison-card:hover {
  transform: translateY(-4px);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: var(--shadow-md);
}

@media (min-width: 1280px) {
  .theme-business .hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .theme-business .preview-cards {
    grid-template-columns: 1fr;
  }

  .theme-business .template-preview {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .theme-business .hero {
    padding-top: var(--space-lg);
  }

  .theme-business .template-tags {
    gap: 0.5rem;
  }

  .theme-business .template-tags span {
    font-size: 0.84rem;
    padding: 0.55rem 0.75rem;
  }

  .theme-business .comparison-card,
  .theme-business .template-summary > div {
    padding: 1rem;
  }
}