.product-shell {
  padding-bottom: 1rem;
}

.product-shell section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.product-shell .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.product-shell .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-shell .fade-in-delay-1 {
  transition-delay: 0.1s;
}

.product-shell .fade-in-delay-2 {
  transition-delay: 0.2s;
}

.product-shell .fade-in-delay-3 {
  transition-delay: 0.3s;
}

.product-shell .fade-in-delay-4 {
  transition-delay: 0.4s;
}

.product-shell .stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.product-shell .stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.product-shell .stagger-children.visible > *:nth-child(1) {
  transition-delay: 0.08s;
}

.product-shell .stagger-children.visible > *:nth-child(2) {
  transition-delay: 0.14s;
}

.product-shell .stagger-children.visible > *:nth-child(3) {
  transition-delay: 0.2s;
}

.product-shell .stagger-children.visible > *:nth-child(4) {
  transition-delay: 0.26s;
}

.product-shell .stagger-children.visible > *:nth-child(5) {
  transition-delay: 0.32s;
}

.product-shell .stagger-children.visible > *:nth-child(6) {
  transition-delay: 0.38s;
}

.product-shell .stagger-children.visible > *:nth-child(7) {
  transition-delay: 0.44s;
}

.product-shell .stagger-children.visible > *:nth-child(8) {
  transition-delay: 0.5s;
}

.product-shell .hero {
  padding-top: 4.75rem;
  padding-bottom: 3rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(249, 115, 22, 0.1), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-radius: 0 0 32px 32px;
}

.product-shell .badge,
.product-shell .section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-shell .section-badge.orange {
  background: #fff7ed;
  color: #9a3412;
}

.product-shell .hero h1,
.product-shell .comparison-section h2,
.product-shell .results-section h2,
.product-shell .more-features h2,
.product-shell .integration-section h2,
.product-shell .cta-section h2 {
  margin: 1rem auto 0;
  max-width: 860px;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--text);
}

.product-shell .hero p,
.product-shell .comparison-section > p,
.product-shell .feature-content p,
.product-shell .result-card p,
.product-shell .problem-card,
.product-shell .solution-card,
.product-shell .trust-card p,
.product-shell .small-feature-card p,
.product-shell .integration-section > p,
.product-shell .integration-content p,
.product-shell .cta-section p {
  color: #475569;
}

.product-shell .hero p,
.product-shell .comparison-section > p,
.product-shell .integration-section > p,
.product-shell .cta-section p {
  max-width: 720px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

.product-shell .highlight,
.product-shell h1 span,
.product-shell h2 span {
  color: var(--accent-dark);
}

.product-shell .comparison-column .value.orange {
  color: #9a3412;
}

.product-shell .comparison-section,
.product-shell .features-section,
.product-shell .more-features,
.product-shell .integration-section {
  padding-top: 2.5rem;
}

.product-shell .comparison-card,
.product-shell .result-card,
.product-shell .problem-card,
.product-shell .solution-card,
.product-shell .trust-card,
.product-shell .feature-block,
.product-shell .small-feature-card,
.product-shell .integration-card,
.product-shell .integration-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.product-shell .comparison-card {
  display: grid;
  grid-template-columns: 220px 1fr 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
}

.product-shell .comparison-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-shell .comparison-icon,
.product-shell .card-icon,
.product-shell .trust-card .icon,
.product-shell .small-feature-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

.product-shell .comparison-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #fff7ed;
}

.product-shell .comparison-label h4,
.product-shell .result-card h4,
.product-shell .problem-card h3,
.product-shell .solution-card h3,
.product-shell .trust-card h4,
.product-shell .feature-content h2,
.product-shell .small-feature-card h3,
.product-shell .integration-content h3 {
  margin: 0;
  color: var(--text);
}

.product-shell .comparison-column {
  text-align: center;
}

.product-shell .comparison-column .label {
  color: #64748b;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.product-shell .comparison-column .value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.product-shell .comparison-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #166534;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-shell .results-section {
  margin-top: 1.5rem;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
  border-radius: 32px;
}

.product-shell .results-grid,
.product-shell .trust-grid,
.product-shell .features-grid,
.product-shell .integration-logos {
  display: grid;
  gap: 1.25rem;
}

.product-shell .results-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.product-shell .result-card {
  padding: 1.6rem;
  text-align: center;
}

.product-shell .result-card .number {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent-dark);
}

.product-shell .result-card .unit {
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-shell .result-card h4 {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.product-shell .result-card p {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}

.product-shell .problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-shell .problem-card,
.product-shell .solution-card {
  padding: 1.75rem;
}

.product-shell .problem-card {
  background: linear-gradient(180deg, #fff 0%, #fff8f1 100%);
}

.product-shell .solution-card {
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}

.product-shell .card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.12);
}

.product-shell .list-item,
.product-shell .feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
}

.product-shell .list-item + .list-item,
.product-shell .feature-list-item + .feature-list-item {
  margin-top: 0.8rem;
}

.product-shell .list-item svg,
.product-shell .feature-list-item svg,
.product-shell .integration-logo .icon,
.product-shell .btn-outline-orange {
  color: var(--accent-dark);
}

.product-shell .trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-shell .trust-card {
  padding: 1.6rem;
}

.product-shell .trust-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff7ed;
}

.product-shell .trust-card h4 {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.product-shell .trust-card p {
  margin: 0.75rem 0 0;
}

.product-shell .feature-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
}

.product-shell .feature-block + .feature-block {
  margin-top: 1.5rem;
}

.product-shell .feature-block.reverse {
  direction: rtl;
}

.product-shell .feature-block.reverse > * {
  direction: ltr;
}

.product-shell .feature-content {
  max-width: 520px;
}

.product-shell .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 18px;
}

.product-shell .feature-icon.orange,
.product-shell .feature-visual {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.product-shell .feature-icon.blue,
.product-shell .feature-visual.blue {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.product-shell .feature-icon.purple,
.product-shell .feature-visual.purple {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.product-shell .feature-icon.green,
.product-shell .feature-visual.green {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.product-shell .feature-icon.pink,
.product-shell .feature-visual.pink {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.product-shell .feature-content p {
  margin: 0.9rem 0 1.25rem;
}

.product-shell .feature-list {
  display: grid;
  gap: 0.8rem;
}

.product-shell .feature-visual {
  min-height: 320px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(154, 52, 18, 0.6);
}

.product-shell .feature-visual svg {
  width: min(180px, 38%);
  height: auto;
}

.product-shell .more-features {
  text-align: center;
}

.product-shell .features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.product-shell .small-feature-card {
  padding: 1.5rem;
  text-align: left;
}

.product-shell .small-feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff7ed;
}

.product-shell .small-feature-card h3 {
  margin-top: 0.9rem;
  font-size: 1.05rem;
}

.product-shell .small-feature-card p {
  margin: 0.6rem 0 0;
  font-size: 0.95rem;
}

.product-shell .integration-section {
  text-align: center;
}

.product-shell .integration-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  text-align: left;
}

.product-shell .integration-content p {
  margin: 0.9rem 0 1rem;
}

.product-shell .integration-content .feature-list {
  margin-top: 1rem;
}

.product-shell .integration-logos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.product-shell .integration-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
}

.product-shell .integration-logo .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff7ed;
}

.product-shell .integration-logo span {
  color: var(--text);
  font-weight: 700;
}

.product-shell .btn-outline-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #fdba74;
  background: #fff7ed;
  color: #9a3412;
  text-decoration: none;
  font-weight: 700;
}

.product-shell .btn-outline-orange:hover {
  background: #ffedd5;
}

.product-shell .cta-section {
  margin-top: 1.5rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  text-align: center;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 32px;
}

.product-shell .cta-section h2,
.product-shell .cta-section p {
  color: #fff;
}

.product-shell .cta-section p {
  color: #cbd5e1;
}

.product-shell .cta-section .btn-primary {
  margin-top: 1.5rem;
}

@media (max-width: 1120px) {
  .product-shell .comparison-card {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .product-shell .comparison-badge {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .product-shell .results-grid,
  .product-shell .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-shell .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .product-shell section {
    width: min(100%, calc(100% - 1.5rem));
    padding: 3rem 0;
  }

  .product-shell .hero {
    padding-top: 3.5rem;
  }

  .product-shell .comparison-card,
  .product-shell .feature-block,
  .product-shell .integration-card,
  .product-shell .problem-solution-grid {
    grid-template-columns: 1fr;
  }

  .product-shell .problem-solution-grid {
    display: grid;
  }

  .product-shell .feature-visual {
    min-height: 240px;
  }

  .product-shell .integration-logos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-shell .hero h1,
  .product-shell .comparison-section h2,
  .product-shell .results-section h2,
  .product-shell .more-features h2,
  .product-shell .integration-section h2,
  .product-shell .cta-section h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .product-shell .comparison-card,
  .product-shell .result-card,
  .product-shell .problem-card,
  .product-shell .solution-card,
  .product-shell .trust-card,
  .product-shell .feature-block,
  .product-shell .small-feature-card,
  .product-shell .integration-card {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .product-shell .results-grid,
  .product-shell .features-grid {
    grid-template-columns: 1fr;
  }

  .product-shell .comparison-card {
    gap: 1rem;
  }

  .product-shell .comparison-label {
    align-items: flex-start;
  }

  .product-shell .comparison-column {
    text-align: left;
  }
}

body.page-product-posteingang {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 28%),
    linear-gradient(180deg, #fff7ed 0%, #fff 24%, #f8fafc 100%);
}

body.page-product-posteingang .product-shell section {
  width: min(1240px, calc(100% - 2rem));
  padding: 5rem 0;
}

body.page-product-posteingang .product-shell .hero {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 247, 237, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 0 0 36px 36px;
}

body.page-product-posteingang .product-shell .hero-inner,
body.page-product-posteingang .product-shell .learning-layout,
body.page-product-posteingang .product-shell .automation-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

body.page-product-posteingang .product-shell .hero-inner {
  gap: 2rem;
}

body.page-product-posteingang .product-shell .hero-copy {
  text-align: left;
}

body.page-product-posteingang .product-shell .badge-dot,
body.page-product-posteingang .product-shell .pill-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}

body.page-product-posteingang .product-shell .badge {
  gap: 0.55rem;
}

body.page-product-posteingang .product-shell .hero-copy h1 {
  margin: 1rem 0 0;
  max-width: none;
  text-align: left;
}

body.page-product-posteingang .product-shell .hero-copy p,
body.page-product-posteingang .product-shell .section-header p,
body.page-product-posteingang .product-shell .learning-panel > p,
body.page-product-posteingang .product-shell .feedback-step p,
body.page-product-posteingang .product-shell .comparison-card p,
body.page-product-posteingang .product-shell .automation-card > div > p,
body.page-product-posteingang .product-shell .cta-shell p {
  margin: 1rem 0 0;
  max-width: 680px;
  color: #475569;
  font-size: 1.05rem;
}

body.page-product-posteingang .product-shell .hero-actions,
body.page-product-posteingang .product-shell .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

body.page-product-posteingang .product-shell .hero-trust,
body.page-product-posteingang .product-shell .cta-features,
body.page-product-posteingang .product-shell .integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

body.page-product-posteingang .product-shell .hero-trust-item,
body.page-product-posteingang .product-shell .cta-feature,
body.page-product-posteingang .product-shell .integration-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #334155;
  font-size: 0.9rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

body.page-product-posteingang .product-shell .hero-visual {
  position: relative;
}

body.page-product-posteingang .product-shell .mail-shell {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 36px 80px rgba(15, 23, 42, 0.12);
}

body.page-product-posteingang .product-shell .mail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

body.page-product-posteingang .product-shell .toolbar-title {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

body.page-product-posteingang .product-shell .window-dots {
  display: flex;
  gap: 0.35rem;
}

body.page-product-posteingang .product-shell .window-dots span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

body.page-product-posteingang .product-shell .toolbar-label {
  display: grid;
  gap: 0.15rem;
}

body.page-product-posteingang .product-shell .toolbar-label strong {
  font-size: 0.95rem;
}

body.page-product-posteingang .product-shell .toolbar-label span {
  color: #cbd5e1;
  font-size: 0.82rem;
}

body.page-product-posteingang .product-shell .panel-title span,
body.page-product-posteingang .product-shell .mail-item-top span {
  color: #475569;
  font-size: 0.82rem;
}

body.page-product-posteingang .product-shell .preview-header p {
  color: #64748b;
  font-size: 0.82rem;
}

body.page-product-posteingang .product-shell .toolbar-status,
body.page-product-posteingang .product-shell .approval-state,
body.page-product-posteingang .product-shell .confidence-pill,
body.page-product-posteingang .product-shell .draft-note,
body.page-product-posteingang .product-shell .agent-node-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

body.page-product-posteingang .product-shell .toolbar-status {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

body.page-product-posteingang .product-shell .mail-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
}

body.page-product-posteingang .product-shell .mail-sidebar {
  padding: 1rem;
  background: #fcfdff;
  border-right: 1px solid rgba(226, 232, 240, 0.9);
}

body.page-product-posteingang .product-shell .panel-title,
body.page-product-posteingang .product-shell .mail-item-top,
body.page-product-posteingang .product-shell .preview-header,
body.page-product-posteingang .product-shell .draft-header,
body.page-product-posteingang .product-shell .agent-node {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

body.page-product-posteingang .product-shell .panel-title {
  margin-bottom: 1rem;
}

body.page-product-posteingang .product-shell .panel-title h3,
body.page-product-posteingang .product-shell .preview-header strong,
body.page-product-posteingang .product-shell .draft-header strong {
  margin: 0;
  color: var(--text);
}

body.page-product-posteingang .product-shell .mail-item,
body.page-product-posteingang .product-shell .mail-bubble,
body.page-product-posteingang .product-shell .draft-box,
body.page-product-posteingang .product-shell .feedback-step,
body.page-product-posteingang .product-shell .agent-node {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

body.page-product-posteingang .product-shell .mail-item + .mail-item {
  margin-top: 0.8rem;
}

body.page-product-posteingang .product-shell .mail-item.active {
  background: #fff7ed;
  border-color: #fdba74;
}

body.page-product-posteingang .product-shell .mail-item p,
body.page-product-posteingang .product-shell .draft-box p,
body.page-product-posteingang .product-shell .comparison-card p,
body.page-product-posteingang .product-shell .automation-visual h3 + .agent-flow {
  margin-top: 0.8rem;
}

body.page-product-posteingang .product-shell .mail-item p,
body.page-product-posteingang .product-shell .draft-box p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

body.page-product-posteingang .product-shell .mail-tag-row,
body.page-product-posteingang .product-shell .preview-summary,
body.page-product-posteingang .product-shell .workflow-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

body.page-product-posteingang .product-shell .mail-tag,
body.page-product-posteingang .product-shell .workflow-chip {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}

body.page-product-posteingang .product-shell .mail-tag {
  background: #fee2e2;
  color: #b91c1c;
}

body.page-product-posteingang .product-shell .mail-tag.neutral,
body.page-product-posteingang .product-shell .agent-node-badge {
  background: #eff6ff;
  color: #1d4ed8;
}

body.page-product-posteingang .product-shell .mail-preview {
  padding: 1rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
}

body.page-product-posteingang .product-shell .approval-state {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
}

body.page-product-posteingang .product-shell .bubble-label {
  margin-bottom: 0.55rem;
  color: #9a3412;
  font-size: 0.76rem;
  font-weight: 700;
}

body.page-product-posteingang .product-shell .confidence-pill {
  background: #ecfdf5;
  color: #166534;
}

body.page-product-posteingang .product-shell .draft-note {
  background: #f8fafc;
  color: #475569;
}

body.page-product-posteingang .product-shell .section-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
}

body.page-product-posteingang .product-shell .section-header {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

body.page-product-posteingang .product-shell .section-header h2,
body.page-product-posteingang .product-shell .learning-panel h2,
body.page-product-posteingang .product-shell .automation-card h2,
body.page-product-posteingang .product-shell .cta-shell h2 {
  margin: 1rem 0 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
}

body.page-product-posteingang .product-shell .section-header h2 {
  text-align: center;
}

body.page-product-posteingang .product-shell .problem-section,
body.page-product-posteingang .product-shell .faq-section {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.7), rgba(255, 255, 255, 0.96));
  border-radius: 32px;
}

body.page-product-posteingang .product-shell .problem-grid,
body.page-product-posteingang .product-shell .workflow-grid,
body.page-product-posteingang .product-shell .feature-grid,
body.page-product-posteingang .product-shell .comparison-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.6rem;
}

body.page-product-posteingang .product-shell .problem-grid,
body.page-product-posteingang .product-shell .feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-product-posteingang .product-shell .workflow-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.page-product-posteingang .product-shell .comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-product-posteingang .product-shell .stats-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.6rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.page-product-posteingang .product-shell .problem-card,
body.page-product-posteingang .product-shell .workflow-card,
body.page-product-posteingang .product-shell .learning-panel,
body.page-product-posteingang .product-shell .feedback-lab,
body.page-product-posteingang .product-shell .feature-card,
body.page-product-posteingang .product-shell .comparison-card,
body.page-product-posteingang .product-shell .automation-card,
body.page-product-posteingang .product-shell .stat-card,
body.page-product-posteingang .product-shell .faq-item,
body.page-product-posteingang .product-shell .cta-shell {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

body.page-product-posteingang .product-shell .problem-card,
body.page-product-posteingang .product-shell .workflow-card,
body.page-product-posteingang .product-shell .feature-card,
body.page-product-posteingang .product-shell .stat-card {
  padding: 1.5rem;
}

body.page-product-posteingang .product-shell .problem-card h3,
body.page-product-posteingang .product-shell .workflow-card h3,
body.page-product-posteingang .product-shell .feature-card h3,
body.page-product-posteingang .product-shell .comparison-card h3,
body.page-product-posteingang .product-shell .stat-card h3,
body.page-product-posteingang .product-shell .faq-question h3 {
  margin: 0;
  color: var(--text);
}

body.page-product-posteingang .product-shell .problem-card h3,
body.page-product-posteingang .product-shell .feature-card h3 {
  margin-top: 1.15rem;
}

body.page-product-posteingang .product-shell .problem-card p,
body.page-product-posteingang .product-shell .workflow-card p,
body.page-product-posteingang .product-shell .feature-card p,
body.page-product-posteingang .product-shell .stat-card p,
body.page-product-posteingang .product-shell .faq-answer p,
body.page-product-posteingang .product-shell .automation-list-item,
body.page-product-posteingang .product-shell .comparison-item {
  color: #475569;
}

body.page-product-posteingang .product-shell .problem-card p,
body.page-product-posteingang .product-shell .workflow-card p,
body.page-product-posteingang .product-shell .feature-card p,
body.page-product-posteingang .product-shell .stat-card p {
  margin: 0.75rem 0 0;
}

body.page-product-posteingang .product-shell .mini-visual,
body.page-product-posteingang .product-shell .workflow-visual {
  border-radius: 24px;
}

body.page-product-posteingang .product-shell .mini-visual {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(135deg, #fff7ed 0%, #f8fafc 100%);
}

body.page-product-posteingang .product-shell .mini-stack,
body.page-product-posteingang .product-shell .mini-reply,
body.page-product-posteingang .product-shell .agent-flow,
body.page-product-posteingang .product-shell .learning-points,
body.page-product-posteingang .product-shell .feedback-flow,
body.page-product-posteingang .product-shell .feedback-progress,
body.page-product-posteingang .product-shell .comparison-list,
body.page-product-posteingang .product-shell .automation-list,
body.page-product-posteingang .product-shell .faq-list {
  display: grid;
  gap: 0.9rem;
}

body.page-product-posteingang .product-shell .mini-stack {
  width: 100%;
  gap: 0.65rem;
}

body.page-product-posteingang .product-shell .mini-stack-card,
body.page-product-posteingang .product-shell .mini-bridge-col {
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.88);
}

body.page-product-posteingang .product-shell .mini-stack-card strong,
body.page-product-posteingang .product-shell .mini-bridge-col strong {
  display: block;
  color: var(--text);
}

body.page-product-posteingang .product-shell .mini-stack-card span,
body.page-product-posteingang .product-shell .mini-bridge-col span {
  display: block;
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.82rem;
}

body.page-product-posteingang .product-shell .mini-reply {
  width: 100%;
}

body.page-product-posteingang .product-shell .mini-reply-line {
  height: 0.8rem;
  border-radius: 999px;
  background: #cbd5e1;
}

body.page-product-posteingang .product-shell .mini-reply-line.orange {
  background: #fdba74;
}

body.page-product-posteingang .product-shell .mini-bridge {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.9rem;
}

body.page-product-posteingang .product-shell .mini-bridge-col {
  flex: 1;
  display: grid;
  gap: 0.4rem;
}

body.page-product-posteingang .product-shell .mini-bridge-arrow {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
}

body.page-product-posteingang .product-shell .workflow-card {
  position: relative;
}

body.page-product-posteingang .product-shell .workflow-step,
body.page-product-posteingang .product-shell .feature-card-icon,
body.page-product-posteingang .product-shell .learning-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

body.page-product-posteingang .product-shell .workflow-step {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 800;
}

body.page-product-posteingang .product-shell .workflow-card h3 {
  margin-top: 1rem;
  font-size: 1rem;
}

body.page-product-posteingang .product-shell .workflow-chip {
  background: #f8fafc;
  border: 1px solid var(--border);
  color: #334155;
}

body.page-product-posteingang .product-shell .learning-panel,
body.page-product-posteingang .product-shell .feedback-lab {
  padding: 2rem;
}

body.page-product-posteingang .product-shell .learning-panel {
  background: rgba(255, 255, 255, 0.97);
}

body.page-product-posteingang .product-shell .learning-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 22px;
  background: #f8fafc;
}

body.page-product-posteingang .product-shell .learning-point-icon,
body.page-product-posteingang .product-shell .feature-card-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  background: #fff7ed;
  color: #9a3412;
}

body.page-product-posteingang .product-shell .learning-point p {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
}

body.page-product-posteingang .product-shell .feedback-lab {
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
}

body.page-product-posteingang .product-shell .feedback-lab h3,
body.page-product-posteingang .product-shell .automation-visual h3 {
  margin: 0;
  color: var(--text);
}

body.page-product-posteingang .product-shell .feedback-step.active {
  border-color: #fdba74;
}

body.page-product-posteingang .product-shell .feedback-bar-row span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #334155;
  font-size: 0.85rem;
}

body.page-product-posteingang .product-shell .feedback-bar {
  margin-top: 0.45rem;
  height: 0.8rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

body.page-product-posteingang .product-shell .feedback-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

body.page-product-posteingang .product-shell .feature-card-icon {
  color: #9a3412;
}

body.page-product-posteingang .product-shell .comparison-card {
  display: block;
  padding: 1.8rem;
}

body.page-product-posteingang .product-shell .comparison-card.before {
  background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
}

body.page-product-posteingang .product-shell .comparison-card.after {
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}

body.page-product-posteingang .product-shell .comparison-item,
body.page-product-posteingang .product-shell .automation-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

body.page-product-posteingang .product-shell .comparison-item svg,
body.page-product-posteingang .product-shell .automation-list-item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

body.page-product-posteingang .product-shell .automation-card {
  padding: 2rem;
  align-items: stretch;
}

body.page-product-posteingang .product-shell .automation-list {
  margin-top: 1.3rem;
}

body.page-product-posteingang .product-shell .automation-visual {
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
  border: 1px solid rgba(251, 146, 60, 0.22);
}

body.page-product-posteingang .product-shell .agent-flow {
  margin-top: 1rem;
}

body.page-product-posteingang .product-shell .stat-card {
  padding: 1.5rem 1.25rem;
  text-align: center;
}

body.page-product-posteingang .product-shell .stat-number {
  color: var(--accent-dark);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
}

body.page-product-posteingang .product-shell .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

body.page-product-posteingang .product-shell .faq-item {
  overflow: hidden;
}

body.page-product-posteingang .product-shell .faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  text-align: left;
}

body.page-product-posteingang .product-shell .faq-question svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

body.page-product-posteingang .product-shell .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.35rem;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

body.page-product-posteingang .product-shell .faq-answer p {
  margin: 0;
  padding-bottom: 0;
}

body.page-product-posteingang .product-shell .faq-answer a {
  color: #9a3412;
}

body.page-product-posteingang .product-shell .faq-item.open .faq-answer {
  max-height: 320px;
  padding: 0 1.35rem 1.25rem;
}

body.page-product-posteingang .product-shell .faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

body.page-product-posteingang .product-shell .cta-section {
  margin-top: 0;
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: transparent;
  border-radius: 0;
  text-align: center;
}

body.page-product-posteingang .product-shell .cta-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.18), transparent 28%),
    linear-gradient(135deg, #fff7ed 0%, #fff 58%, #f8fafc 100%);
  border: 1px solid rgba(251, 146, 60, 0.18);
}

body.page-product-posteingang .product-shell .cta-shell h2,
body.page-product-posteingang .product-shell .cta-shell p {
  color: var(--text);
}

body.page-product-posteingang .product-shell .cta-shell p {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1180px) {
  body.page-product-posteingang .product-shell .hero-inner,
  body.page-product-posteingang .product-shell .learning-layout,
  body.page-product-posteingang .product-shell .automation-card {
    grid-template-columns: 1fr;
  }

  body.page-product-posteingang .product-shell .mail-grid {
    grid-template-columns: 1fr;
  }

  body.page-product-posteingang .product-shell .mail-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  }

  body.page-product-posteingang .product-shell .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.page-product-posteingang .product-shell .problem-grid,
  body.page-product-posteingang .product-shell .feature-grid,
  body.page-product-posteingang .product-shell .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body.page-product-posteingang .product-shell section {
    width: min(100%, calc(100% - 1.5rem));
    padding: 4rem 0;
  }

  body.page-product-posteingang .product-shell .hero {
    padding-top: 3.5rem;
  }

  body.page-product-posteingang .product-shell .hero-actions,
  body.page-product-posteingang .product-shell .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.page-product-posteingang .product-shell .workflow-grid,
  body.page-product-posteingang .product-shell .problem-grid,
  body.page-product-posteingang .product-shell .feature-grid,
  body.page-product-posteingang .product-shell .comparison-grid,
  body.page-product-posteingang .product-shell .stats-grid {
    grid-template-columns: 1fr;
  }

  body.page-product-posteingang .product-shell .cta-shell {
    padding: 2.3rem 1.35rem;
  }
}

@media (max-width: 640px) {
  body.page-product-posteingang .product-shell .hero-copy h1,
  body.page-product-posteingang .product-shell .section-header h2,
  body.page-product-posteingang .product-shell .learning-panel h2,
  body.page-product-posteingang .product-shell .automation-card h2,
  body.page-product-posteingang .product-shell .cta-shell h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  body.page-product-posteingang .product-shell .hero-trust-item,
  body.page-product-posteingang .product-shell .cta-feature {
    width: 100%;
    justify-content: center;
  }

  body.page-product-posteingang .product-shell .mail-toolbar,
  body.page-product-posteingang .product-shell .mail-sidebar,
  body.page-product-posteingang .product-shell .mail-preview,
  body.page-product-posteingang .product-shell .problem-card,
  body.page-product-posteingang .product-shell .workflow-card,
  body.page-product-posteingang .product-shell .learning-panel,
  body.page-product-posteingang .product-shell .feedback-lab,
  body.page-product-posteingang .product-shell .feature-card,
  body.page-product-posteingang .product-shell .comparison-card,
  body.page-product-posteingang .product-shell .automation-card,
  body.page-product-posteingang .product-shell .stat-card,
  body.page-product-posteingang .product-shell .cta-shell {
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 24px;
  }

  body.page-product-posteingang .product-shell .mini-bridge {
    flex-direction: column;
  }
}
