/* ── Hero Split Layout ── */
.glass-hero.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  text-align: left;
  padding: 3.5rem 4rem;
}
.glass-hero.hero-split .btn-group { justify-content: flex-start; }
@media (max-width: 920px) {
  .glass-hero.hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }
  .glass-hero.hero-split .btn-group { justify-content: center; }
}

/* Pulsing eyebrow dot */
.eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2563eb;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.5); }
}

/* ── Stats Strip ── */
.lp-stats-wrap {
  max-width: 1100px;
  margin: -1.5rem auto 0;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07), 0 0 0 1px rgba(255,255,255,0.5);
}
.stat-item {
  padding: 1.6rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.76rem; font-weight: 600;
  color: #6b7280; text-transform: uppercase; letter-spacing: 0.06em;
}
@media (max-width: 560px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(0,0,0,0.06); }
}

/* ── Teams Mockup Preview ── */
.tip-preview-wrap { position: relative; }
.tip-preview-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #9ca3af; margin-bottom: 10px;
}
.teams-mockup {
  background: #fff;
  text-align: left;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transform: rotate(1.5deg);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.teams-mockup:hover { transform: rotate(0deg); }

/* Channel header bar */
.tms-header {
  display: flex; align-items: center; gap: 8px;
  padding: 0 1rem;
  border-bottom: 1px solid #e5e7eb;
  height: 44px;
  background: #fff;
}
.tms-logo { width: 18px; height: 18px; flex-shrink: 0; }
.tms-channel-name {
  font-size: 0.78rem; font-weight: 600; color: #111827; flex: 1;
}
.tms-tabs { display: flex; }
.tms-tab {
  font-size: 0.71rem; font-weight: 600; color: #6b7280;
  padding: 0 10px; height: 44px; display: flex; align-items: center;
  border-bottom: 2px solid transparent; cursor: default;
}
.tms-tab.active { color: #2563eb; border-bottom-color: #2563eb; }

/* "Antwort im Thread" rows */
.tms-thread-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  font-size: 0.71rem; color: #6b7280; font-weight: 500;
}
.tms-avatar-xs {
  width: 20px; height: 20px; border-radius: 50%;
  background: #2563eb; color: #fff;
  font-size: 0.48rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Main post */
.tms-post {
  display: flex; gap: 10px;
  padding: 14px 14px 10px;
  background: #fff;
}
.tms-avatar-col { flex-shrink: 0; padding-top: 1px; }
.tms-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #2563eb; color: #fff;
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.tms-presence {
  position: absolute; bottom: 0; right: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e; border: 1.5px solid #fff;
}
.tms-post-body { flex: 1; min-width: 0; }
.tms-post-meta {
  display: flex; align-items: baseline; gap: 5px;
  margin-bottom: 5px; flex-wrap: wrap;
}
.tms-sender { font-size: 0.78rem; font-weight: 700; color: #111827; }
.tms-via { font-size: 0.69rem; color: #6b7280; }
.tms-time { font-size: 0.67rem; color: #9ca3af; }
.tms-title {
  font-size: 0.95rem; font-weight: 700; color: #111827;
  margin-bottom: 8px; line-height: 1.3;
}
.tms-content {
  font-size: 0.74rem; color: #374151; line-height: 1.6;
}
.tms-content p { margin: 0 0 6px; }
.tms-content p:last-child { margin-bottom: 0; }
.tms-content strong { color: #111827; font-weight: 700; }
/* Screenshot placeholders */
.tms-screenshots {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5px; margin-top: 8px;
  width: 50%;
}
.tms-screenshot-thumb {
  height: 52px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid #d1d9e6;
  border-radius: 5px;
  position: relative; overflow: hidden;
}
.tms-screenshot-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(203,213,225,0.35) 100%);
}
.tms-screenshot-thumb::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #cbd5e1 0%, #e2e8f0 60%, #cbd5e1 100%);
  border-bottom: 1px solid #c8d3df;
  opacity: 0.7;
}

.tms-reactions { margin-top: 8px; }
.tms-react-btn {
  background: none; border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 3px 8px;
  cursor: pointer; color: #9ca3af;
  display: inline-flex; align-items: center;
  transition: background 0.15s, border-color 0.15s;
  font-family: inherit;
}
.tms-react-btn:hover { background: #f3f4f6; border-color: #d1d5db; }

/* Emoji picker */
.tms-emoji-picker {
  position: absolute;
  bottom: calc(100% + 6px); left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 4px 5px;
  display: flex; gap: 1px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
  opacity: 0; transform: scale(0.82) translateY(4px);
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s cubic-bezier(0.22,1,0.36,1);
  transform-origin: bottom left;
  z-index: 10;
}
.tms-emoji-picker.open {
  opacity: 1; transform: scale(1) translateY(0);
  pointer-events: all;
}
.tms-emoji-opt {
  background: none; border: none; cursor: pointer;
  font-size: 1.05rem; width: 30px; height: 30px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform 0.12s, background 0.1s;
  line-height: 1; font-family: inherit;
}
.tms-emoji-opt:hover { transform: scale(1.35); background: #f3f4f6; }

/* Reaction chips */
.tms-reaction-list {
  display: flex; gap: 5px; flex-wrap: wrap; margin-top: 6px;
}
.tms-reaction-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 12px; padding: 2px 8px;
  font-size: 0.8rem; cursor: pointer; font-family: inherit;
  transition: background 0.12s, transform 0.1s;
  animation: chip-pop 0.18s cubic-bezier(0.22,1,0.36,1);
}
.tms-reaction-chip span { font-size: 0.7rem; font-weight: 700; color: #2563eb; }
.tms-reaction-chip:hover { background: rgba(37,99,235,0.14); transform: scale(0.96); }
@keyframes chip-pop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.next-badge {
  position: absolute;
  bottom: -12px; right: -10px;
  background: #fff; border: 1px solid #e2e5eb;
  border-radius: 10px; padding: 7px 12px;
  font-size: 0.72rem; font-weight: 600; color: #6b7280;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  white-space: nowrap;
}
.next-badge strong { color: #2563eb; }
@media (max-width: 920px) { .next-badge { display: none; } }

/* ── Shared Section Container ── */
.lp-section { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.lp-section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #2563eb;
  text-align: center; margin-bottom: 0.5rem;
}

/* ── Plans Grid ── */
.plans-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
@media (max-width: 820px) { .plans-grid { grid-template-columns: 1fr; } }
.plan-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 20px; padding: 2rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.06);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(37,99,235,0.1);
}
.plan-card.featured {
  border-color: rgba(37,99,235,0.3);
  background: rgba(239,246,255,0.65);
  box-shadow: 0 8px 36px rgba(37,99,235,0.1);
}
.plan-badge {
  display: inline-block; background: #2563eb; color: #fff;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.22rem 0.65rem;
  border-radius: 5px; margin-bottom: 0.75rem;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; color: var(--color-text-gray);
  margin-bottom: 0.4rem;
}
.plan-desc {
  font-size: 0.88rem; color: var(--color-medium-gray);
  margin-bottom: 1.4rem; line-height: 1.6;
}
/* ── Plan feature checklist ── */
.plan-features {
  list-style: none;
  margin: 0 0 1.4rem;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.1rem;
}
.plan-feat {
  display: flex; align-items: baseline; gap: 9px;
  font-size: 0.85rem; color: #475569;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.plan-feat:last-child { border-bottom: none; }
.plan-feat em { color: #9ca3af; font-style: normal; font-size: 0.8rem; }
.pf-icon {
  flex-shrink: 0;
  font-size: 0.72rem; font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.pf-yes  { background: rgba(22,163,74,0.1);  color: #16a34a; }
.pf-cross{ background: rgba(0,0,0,0.05);      color: #d1d5db; }
.pf-star { background: rgba(234,88,12,0.12);  color: #ea580c; }
.pf-row--no      { color: #b0b8c4; }
.pf-row--no em   { color: #c9d0d8; }
.pf-row--premium { color: #111827; font-weight: 600; }
.pf-row--premium em { color: #ea580c; }

/* ── Plan tools grid ── */
.plan-tools-label {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #9ca3af;
  margin-bottom: 0.65rem;
}
.plan-tools-grid {
  display: grid; gap: 6px;
}
.plan-tools-grid--3 { grid-template-columns: repeat(3, 1fr); }
.plan-tools-grid--4 { grid-template-columns: repeat(4, 1fr); }

.plan-tool {
  display: flex; flex-direction: row; align-items: center;
  gap: 7px; padding: 7px 10px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 9px;
  font-size: 0.75rem; font-weight: 600; color: #475569;
  transition: border-color 0.15s, background 0.15s;
}
.plan-tool img { width: 18px; height: 18px; flex-shrink: 0; }
.plan-tool--new {
  border-color: rgba(13,148,136,0.2);
  background: rgba(204,251,241,0.3);
  color: #0d9488;
}
.plan-tool--copilot {
  grid-column: span 3;
  justify-content: center;
  border-color: rgba(13,148,136,0.3);
  background: rgba(204,251,241,0.45);
  color: #0d9488; font-weight: 700;
}

/* ── Steps ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
@media (max-width: 780px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 16px; padding: 1.5rem 1.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,99,235,0.1);
}
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(37,99,235,0.1);
  border: 1.5px solid rgba(37,99,235,0.2);
  color: #2563eb; font-size: 0.9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-family: var(--font-display);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--color-text-gray);
}
.step-card p { font-size: 0.85rem; color: var(--color-medium-gray); line-height: 1.6; }

/* ── Tipp-Bibliothek CTA ── */
.tipp-bib-cta {
  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 2px solid rgba(37,99,235,0.15);
  border-radius: 24px; padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(13,148,136,0.08), 0 0 0 1px rgba(255,255,255,0.5);
  position: relative; overflow: hidden;
}
.tipp-bib-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(13,148,136,0.07) 0%,
    rgba(37,99,235,0.04) 50%,
    rgba(13,148,136,0.06) 100%);
  pointer-events: none;
}
.tipp-bib-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 0.75rem; color: var(--color-text-gray);
}
.tipp-bib-cta p {
  color: var(--color-medium-gray); font-size: 1.05rem;
  margin-bottom: 2rem; max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.btn-teal {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #0d9488; color: #fff; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 12px;
  font-size: 1rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}
.btn-teal:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,148,136,0.4);
  color: #fff;
}
.btn-teal svg { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.btn-teal:hover svg { transform: translateX(4px); }

/* ── Weitere Services ── */
.also-divider {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.also-divider::before, .also-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.09);
}
.also-divider span {
  font-size: 0.7rem; font-weight: 700; color: #9ca3af;
  letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
}
.also-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
@media (max-width: 620px) { .also-grid { grid-template-columns: 1fr; } }
.also-card {
  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 16px; padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.also-card:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: 0 6px 24px rgba(37,99,235,0.06);
}
.also-service-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #9ca3af; margin-bottom: 0.4rem;
}
.also-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--color-text-gray);
}
.also-card p { font-size: 0.85rem; color: var(--color-medium-gray); line-height: 1.6; margin-bottom: 0.9rem; }
.also-card ul { list-style: none; margin-bottom: 1rem; }
.also-card ul li {
  font-size: 0.82rem; color: var(--color-medium-gray);
  padding: 0.2rem 0; display: flex; align-items: center; gap: 7px;
}
.also-card ul li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: #d1d5db; flex-shrink: 0;
}
.also-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: #2563eb; font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: gap 0.15s;
}
.also-link:hover { gap: 9px; }
