/* ==========================================================================
   twenty seconds – Verlagsseite
   ========================================================================== */

/* ── Hero ── */
.verlag-hero {
  padding-top: calc(72px + var(--space-5xl));
  padding-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.verlag-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(109, 58, 199, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(109, 58, 199, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.verlag-hero-content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.verlag-hero h1 {
  font-size: var(--fs-hero);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--space-xl);
}


/* ── Verlag Section Logo ── */
.verlag-section-logo {
  display: block;
  margin: 0 auto var(--space-xl);
  height: 80px;
  width: auto;
}

/* ── Für wen ist das? (Audience) ── */
.verlag-audience {
  background: var(--color-surface);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.audience-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.audience-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-violet-subtle);
}

.audience-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--color-violet-subtle);
  color: var(--color-violet);
}

.audience-card-icon svg {
  width: 28px;
  height: 28px;
}

.audience-card h3 {
  margin-bottom: var(--space-md);
}

.audience-card p {
  color: var(--color-text-secondary);
}


/* ── Was du bekommst (Services) ── */
.verlag-services {
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-item {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-violet-subtle);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  background: var(--color-violet-subtle);
  color: var(--color-violet);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.service-item p {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
}

.services-price {
  margin-top: var(--space-2xl);
}

.services-price-inner {
  text-align: center;
  padding: var(--space-xl) var(--space-2xl);
  background: var(--color-violet-subtle);
  border-radius: var(--radius-lg);
  font-size: var(--fs-body-lg);
  color: var(--color-text);
  border: 1px solid rgba(109, 58, 199, 0.15);
}

.services-price-inner strong {
  color: var(--color-violet);
}


/* ── Kategorie-Weiche ── */
.verlag-categories {
  background: var(--color-surface);
}

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

.category-card {
  display: block;
  padding: var(--space-2xl);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-violet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.category-card:hover {
  border-color: var(--color-violet-subtle);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card-count {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-violet);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.category-card h3 {
  font-size: var(--fs-h3);
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.category-card p {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.category-card-link {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-violet);
  transition: color var(--duration-fast) var(--ease-out);
}

.category-card:hover .category-card-link {
  color: var(--color-violet-dark);
}


/* ── Buchkatalog (Kategorie-Unterseiten) ── */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-xl);
}

.book-card {
  transition: all var(--duration-normal) var(--ease-out);
}

.book-card.hidden {
  display: none;
}

.book-cover {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 547 / 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--duration-normal) var(--ease-out);
  position: relative;
}

.book-card:hover .book-cover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.book-cover img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.book-cover-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--color-violet);
  background: linear-gradient(135deg, var(--color-violet-subtle) 0%, var(--color-white) 100%);
}

.book-info {
  padding: var(--space-sm) 0;
}

.book-author {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
}

.book-title {
  display: block;
  font-size: var(--fs-small);
  color: var(--color-dark);
  line-height: var(--lh-snug);
}


/* ── Prozess ── */
.verlag-process {
  background: var(--color-white);
}

.process-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 27px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.process-step {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  padding-bottom: var(--space-2xl);
  position: relative;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-violet);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.process-step-content h3 {
  margin-bottom: var(--space-xs);
  padding-top: 4px;
}

.process-step-content p {
  color: var(--color-text-secondary);
}


/* ── Testimonials ── */
.verlag-testimonials {
  background: var(--color-surface);
}


/* ── Brücke zum Lead-Butler ── */
.verlag-bridge {
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.verlag-bridge::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(0, 160, 222, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bridge-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.bridge-inner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.bridge-inner p {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--lh-body);
  margin-bottom: var(--space-xl);
}


/* ── Finaler CTA ── */
.verlag-final-cta {
  text-align: center;
  padding: var(--space-section) 0;
}

.verlag-final-cta h2 {
  margin-bottom: var(--space-md);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}


/* ── Einzelleistungen Grid ── */
.einzelleistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.einzelleistung-card {
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.einzelleistung-card:hover {
  border-color: var(--color-violet);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.einzelleistung-card h4 {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.einzelleistung-card p {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.einzelleistung-link {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-violet);
  transition: color var(--duration-fast) var(--ease-out);
}

.einzelleistung-link:hover {
  color: var(--color-violet-dark);
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .verlag-hero {
    padding-top: calc(72px + var(--space-3xl));
    padding-bottom: var(--space-2xl);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .einzelleistungen-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 23px;
  }

  .process-step-number {
    width: 48px;
    height: 48px;
    font-size: var(--fs-h4);
  }
}
