/* ==========================================================================
   twenty seconds – Über-uns-Seite
   ========================================================================== */

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

.uu-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 160, 222, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 0%, rgba(109, 58, 199, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.uu-hero p {
  font-size: var(--fs-body-lg);
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
  max-width: 640px;
  margin: 0 auto;
}


/* ── What We Do ── */
.uu-products {
  background: var(--color-surface);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

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

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.product-card-icon svg {
  width: 24px;
  height: 24px;
}

.product-card-verlag .product-card-icon {
  background: var(--color-violet-subtle);
  color: var(--color-violet);
}

.product-card-leadbutler .product-card-icon {
  background: var(--color-teal-subtle);
  color: var(--color-teal);
}

.product-card h3 {
  margin-bottom: var(--space-sm);
}

.product-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}


/* ── Team ── */
.uu-team {
  background: var(--color-white);
}

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

.team-member {
  text-align: center;
  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);
}

.team-member:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--color-surface-alt);
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-text-muted);
}

.team-member h3 {
  font-size: var(--fs-body);
  margin-bottom: 2px;
}

.team-role {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.team-desc {
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
}


/* ── Quality Promise ── */
.uu-quality {
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.uu-quality::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 160, 222, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

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

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

.quality-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.quality-value {
  text-align: center;
}

.quality-value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.quality-value-icon svg {
  width: 28px;
  height: 28px;
}

.quality-value h4 {
  color: var(--color-white);
  font-size: var(--fs-body);
  margin-bottom: var(--space-xs);
}

.quality-value p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
}


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

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


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

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

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

  .quality-values {
    grid-template-columns: 1fr;
  }
}
