/* DSGVO: keine externen Fonts/CDNs — nur System-Schriften, alles self-hosted auf montagehub.de */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body.seo-page {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #111827;
  background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.seo-container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.seo-container-narrow {
  max-width: 56rem;
}

.seo-container-content {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.seo-container-cta {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Navigation — gleiche Struktur wie LandingNavigation.jsx */
.seo-nav {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.seo-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.seo-nav-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .seo-nav-left {
    gap: 0.75rem;
  }
}

.seo-brand {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  min-width: 0;
  color: inherit;
}

@media (min-width: 768px) {
  .seo-brand {
    gap: 0.5rem;
  }
}

.seo-brand img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  object-fit: contain;
}

@media (min-width: 768px) {
  .seo-brand img {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.seo-brand-name {
  font-weight: 700;
  font-size: 1.125rem;
  background: linear-gradient(135deg, #9333ea, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .seo-brand-name {
    font-size: 1.5rem;
  }
}

.seo-nav-home {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  border-left: 1px solid #e5e7eb;
  padding-left: 0.5rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .seo-nav-home {
    padding-left: 0.75rem;
  }
}

.seo-nav-home:hover {
  color: #9333ea;
}

.seo-nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  font-weight: 500;
  color: #374151;
}

.seo-nav-links a:not(.seo-nav-cta) {
  color: #374151;
}

.seo-nav-links a:not(.seo-nav-cta):hover {
  color: #9333ea;
}

.seo-nav-links a.seo-nav-cta {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 600;
  background: #9333ea;
  -webkit-text-fill-color: #fff;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.seo-nav-links a.seo-nav-cta:hover {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: #7e22ce;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.seo-nav-mobile {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

.seo-nav-mobile-login {
  padding: 0.375rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}

.seo-nav-mobile a.seo-nav-mobile-cta {
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  background: #9333ea;
  -webkit-text-fill-color: #fff;
  white-space: nowrap;
}

.seo-nav-mobile a.seo-nav-mobile-cta:hover {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: #7e22ce;
}

@media (min-width: 768px) {
  .seo-nav-links {
    display: flex;
  }

  .seo-nav-mobile {
    display: none;
  }
}

/* Hero — React: pt-20 pb-16, gradient-to-r */
.seo-hero {
  background: linear-gradient(to right, #9333ea, #2563eb);
  color: #fff;
  padding: 5rem 1rem 4rem;
}

.seo-hero.seo-hero-blue {
  background: linear-gradient(to right, #2563eb, #0891b2);
}

.seo-hero.seo-hero-green {
  background: linear-gradient(to right, #16a34a, #059669);
}

.seo-hero.seo-hero-indigo {
  background: linear-gradient(to right, #9333ea, #4338ca);
  padding: 5rem 1rem 4rem;
}

.seo-hero.seo-hero-indigo h1 {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.seo-hero.seo-hero-indigo .seo-hero-lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.seo-hero.seo-hero-indigo .seo-hero-grid {
  gap: 3rem;
}

.seo-hero.seo-hero-indigo .seo-hero-badge--pill {
  margin-bottom: 1.5rem;
}

.seo-hero.seo-hero-indigo .seo-btn.seo-btn-white {
  gap: 0.5rem;
  color: #7e22ce;
}

.seo-hero.seo-hero-indigo .seo-btn-arrow-icon {
  margin-left: 0;
}

.seo-hero.seo-hero-indigo .seo-hero-figure--glass {
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .seo-hero.seo-hero-indigo .seo-hero-figure--glass {
    padding: 2rem;
  }

  .seo-hero.seo-hero-indigo h1 {
    font-size: 3rem;
  }
}

/* Suite-Heroes (Küche, Lager, Facility) — React text-5xl / text-xl */
.seo-hero.seo-hero-blue,
.seo-hero.seo-hero-green,
.seo-hero.seo-hero-facility {
  padding: 5rem 1rem 4rem;
}

.seo-hero.seo-hero-facility {
  background: linear-gradient(to right, #9333ea, #2563eb);
}

.seo-hero.seo-hero-blue .seo-hero-grid,
.seo-hero.seo-hero-green .seo-hero-grid,
.seo-hero.seo-hero-facility .seo-hero-grid {
  gap: 3rem;
}

.seo-hero.seo-hero-blue h1,
.seo-hero.seo-hero-green h1,
.seo-hero.seo-hero-facility h1 {
  font-size: 3rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.seo-hero.seo-hero-blue .seo-hero-lead,
.seo-hero.seo-hero-green .seo-hero-lead,
.seo-hero.seo-hero-facility .seo-hero-lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.seo-hero.seo-hero-blue .seo-btn.seo-btn-white,
.seo-hero.seo-hero-green .seo-btn.seo-btn-white,
.seo-hero.seo-hero-facility .seo-btn.seo-btn-white {
  gap: 0.5rem;
}

.seo-hero.seo-hero-blue .seo-btn-arrow-icon,
.seo-hero.seo-hero-green .seo-btn-arrow-icon,
.seo-hero.seo-hero-facility .seo-btn-arrow-icon {
  margin-left: 0;
}

.seo-hero.seo-hero-blue .seo-hero-badge--pill,
.seo-hero.seo-hero-green .seo-hero-badge--pill,
.seo-hero.seo-hero-facility .seo-hero-badge--pill {
  margin-bottom: 1.5rem;
}

.seo-hero.seo-hero-blue .seo-hero-figure,
.seo-hero.seo-hero-green .seo-hero-figure,
.seo-hero.seo-hero-facility .seo-hero-figure {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.seo-hero.seo-hero-blue .seo-hero-figure img,
.seo-hero.seo-hero-green .seo-hero-figure img,
.seo-hero.seo-hero-facility .seo-hero-figure img {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.seo-hero.seo-hero-blue .seo-hero-figure figcaption,
.seo-hero.seo-hero-green .seo-hero-figure figcaption,
.seo-hero.seo-hero-facility .seo-hero-figure figcaption {
  margin-top: 0.75rem;
  opacity: 0.8;
}

@media (max-width: 639px) {
  .seo-hero.seo-hero-blue h1,
  .seo-hero.seo-hero-green h1,
  .seo-hero.seo-hero-facility h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 640px) {
  .seo-hero.seo-hero-blue .seo-hero-figure,
  .seo-hero.seo-hero-green .seo-hero-figure,
  .seo-hero.seo-hero-facility .seo-hero-figure {
    padding: 1rem;
  }
}

.seo-btn-white-blue {
  color: #2563eb;
}

.seo-btn-white-green {
  color: #16a34a;
}

.seo-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #ede9fe;
  color: #7c3aed;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.seo-callout {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.75rem;
  padding: 1.25rem;
  font-size: 0.875rem;
  color: #78350f;
  max-width: 48rem;
  margin: 2rem auto 0;
}

.seo-anchor-target {
  scroll-margin-top: 7rem;
}

.seo-hero-mock {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: #fff;
}

.seo-hero-mock-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.seo-hero-mock-label .seo-card-icon-svg {
  width: 1rem;
  height: 1rem;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.seo-hero-mock-time {
  margin: 0;
  font-size: 1.5rem;
  font-family: ui-monospace, monospace;
  font-weight: 600;
}

.seo-hero-mock-ok {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: #86efac;
}

.seo-hero-mock-caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.seo-hero-figure .seo-hero-mock-caption {
  margin-top: 1rem;
}

.seo-hero-mock-inner {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.85);
}

.seo-hero-mock-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.seo-hero-mock-icon {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(168, 85, 247, 0.3);
  font-size: 0;
  line-height: 0;
  display: inline-flex;
}

.seo-hero-mock-icon .seo-card-icon-svg {
  width: 2rem;
  height: 2rem;
  color: #e9d5ff;
}

.seo-hero-mock-day {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.6;
}

.seo-hero-mock-stats {
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
  font-size: 0.875rem;
}

.seo-hero-mock-stats li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.seo-hero-mock-stats .seo-hero-mock-mono,
.seo-hero-mock-stats .seo-hero-mock-overtime {
  font-family: ui-monospace, monospace;
}

.seo-hero-mock-stats .seo-hero-mock-overtime {
  color: #fde68a;
}

.seo-hero-note a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

.seo-story-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
}

.seo-story-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.seo-story-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
}

.seo-story-icon {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: #f3e8ff;
  color: #7c3aed;
  margin-bottom: 1rem;
  line-height: 0;
}

.seo-story-icon .seo-card-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #7c3aed;
}

.seo-section--gray-50 {
  background: #f9fafb;
  border-top: none;
  border-bottom: none;
}

.seo-step-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.seo-step-card .seo-step-num-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #9333ea;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.seo-step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.seo-step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
}

.seo-persona-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
}

.seo-persona-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #7c3aed;
}

.seo-persona-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.seo-persona-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: #7c3aed;
}

.seo-persona-icon .seo-card-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #7c3aed;
}

.seo-list--check-flex {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-list--check-flex li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
}

.seo-list--check-flex li:last-child {
  margin-bottom: 0;
}

.seo-check-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #10b981;
}

.seo-grid-persona {
  gap: 1.5rem;
}

.seo-section--purple-tint {
  background: linear-gradient(135deg, #faf5ff, #eef2ff);
  border-top: none;
  border-bottom: none;
}

.seo-datev-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #f3e8ff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .seo-datev-panel {
    flex-direction: row;
    gap: 2rem;
  }
}

.seo-datev-icon {
  flex-shrink: 0;
  width: auto;
  height: auto;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f3e8ff;
  color: #9333ea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
}

.seo-datev-icon .seo-card-icon-svg {
  width: 2rem;
  height: 2rem;
  color: #9333ea;
}

.seo-datev-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.seo-datev-panel p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

.seo-callout--legal {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: none;
  margin-top: 2rem;
  padding: 1.25rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.75rem;
}

.seo-callout--legal .seo-callout-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #d97706;
  line-height: 0;
}

.seo-callout--legal .seo-callout-icon .seo-card-icon-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #d97706;
}

.seo-callout--legal p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #78350f;
}

.seo-btn-white-indigo {
  color: #7c3aed;
}

.seo-btn-arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.25rem;
  flex-shrink: 0;
}

.seo-hero .seo-btn-outline {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.seo-hero .seo-btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.seo-hero-grid > div > h1 {
  max-width: none;
}

.seo-cta.seo-cta-indigo {
  background: linear-gradient(to right, #9333ea, #4338ca);
}

.seo-cta.seo-cta-indigo .seo-btn {
  border-radius: 0.75rem;
}

.seo-cta.seo-cta-indigo p {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.seo-cta .seo-link-light {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .seo-hero,
  .seo-hero.seo-hero-indigo,
  .seo-hero.seo-hero-blue,
  .seo-hero.seo-hero-green,
  .seo-hero.seo-hero-facility {
    padding: 5rem 1rem 4rem;
  }
}

.seo-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.seo-hero-badge--pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
}

.seo-hero-badge--pill .seo-card-icon-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.seo-hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 56rem;
}

.seo-hero-lead {
  margin: 0 0 2.5rem;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.92);
}

.seo-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .seo-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-hero-grid .seo-hero-lead {
    max-width: none;
  }
}

.seo-hero-figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 0.75rem;
}

.seo-hero-figure--glass {
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.seo-hero-figure img {
  display: block;
  width: 100%;
  border-radius: 0.75rem;
}

.seo-hero-figure figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.seo-hero-list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.seo-hero-list li {
  margin-bottom: 0.75rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.95);
}

.seo-hero-list li::before {
  content: "✓ ";
  color: #86efac;
  font-weight: 700;
}

.seo-hero-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.seo-price-suite {
  margin-bottom: 3rem;
}

.seo-price-suite h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: #111827;
}

.seo-price-suite > p {
  margin: 0 0 1.5rem;
  color: #4b5563;
}

.seo-price-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .seo-price-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-price-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
}

.seo-price-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.seo-price-card .seo-price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #7c3aed;
  margin: 0 0 0.25rem;
}

.seo-price-card .seo-price-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1rem;
}

.seo-price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: #374151;
}

.seo-price-card li {
  margin-bottom: 0.35rem;
}

.seo-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .seo-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.seo-trust-item strong {
  display: block;
  font-size: 1.5rem;
  color: #2563eb;
  margin-bottom: 0.25rem;
}

.seo-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .seo-hero-actions {
    flex-direction: row;
  }
}

.seo-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.seo-btn-white {
  background: #fff;
  color: #6d28d9;
}

.seo-btn-white:hover {
  background: #f3f4f6;
}

.seo-btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.seo-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Sections */
.seo-section {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .seo-section {
    padding: 5rem 1rem;
  }
}

.seo-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
}

.seo-section-lead {
  margin: 0 auto 3rem;
  max-width: 48rem;
  text-align: center;
  font-size: 1.125rem;
  color: #4b5563;
}

.seo-mb-lg {
  margin-bottom: 2.5rem;
}

.seo-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .seo-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 1024px) {
  .seo-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.seo-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.seo-card p {
  margin: 0 0 1rem;
  color: #4b5563;
}

.seo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: #374151;
}

.seo-list li {
  margin-bottom: 0.5rem;
}

.seo-list--check li {
  padding-left: 1.25rem;
  position: relative;
}

.seo-list--check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

/* Suite feature cards – React parity (gradient icon + shadow) */
.seo-card.seo-feature-card {
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
}

.seo-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.seo-card-icon--purple {
  background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.seo-card-icon--blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.seo-card-icon--green {
  background: linear-gradient(135deg, #22c55e, #10b981);
}

.seo-card-icon-svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
  fill: none;
  stroke: currentColor;
}

.seo-feature-card h3 {
  font-size: 1.5rem;
  margin-top: 0;
}

.seo-feature-card > p {
  margin-bottom: 1.5rem;
}

.seo-datev-icon .seo-card-icon-svg {
  width: 2rem;
  height: 2rem;
  color: #7c3aed;
}

.seo-pain-card {
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
}

.seo-pain-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.seo-pain-head h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.seo-pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
}

.seo-pain-icon .seo-card-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.seo-pain-icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.seo-pain-icon--green {
  background: #dcfce7;
  color: #16a34a;
}

.seo-section-alt {
  background: #f9fafb;
  border-top: none;
  border-bottom: none;
}

.seo-section-blue {
  background: #eff6ff;
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
}

.seo-section-alt p,
.seo-section-blue p {
  color: #4b5563;
}

.seo-text-center {
  text-align: center;
}

.seo-hero-lead-center {
  margin-left: auto;
  margin-right: auto;
}

.seo-mt {
  margin-top: 1.5rem;
}

.seo-fine-print {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.seo-cta .seo-btn-white {
  display: inline-flex;
}

.seo-link {
  color: #7c3aed;
  font-weight: 600;
}

.seo-link:hover {
  text-decoration: underline;
}

.seo-check-grid {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
  text-align: left;
  color: #1f2937;
}

@media (min-width: 640px) {
  .seo-check-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-check-grid li {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.seo-check-mark {
  color: #7c3aed;
  font-weight: 700;
}

/* CTA block */
.seo-cta {
  background: linear-gradient(to right, #9333ea, #2563eb);
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.seo-cta h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.seo-cta p {
  margin: 0 0 2rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.seo-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .seo-cta-actions {
    flex-direction: row;
  }
}

/* Suite-Detailseiten: Pain Points, Workflow, Pricing, ROI */
.seo-pain-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.seo-pain-bad {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.seo-pain-bad--no {
  background: #fee2e2;
  color: #dc2626;
}

.seo-pain-bad--yes {
  background: #dcfce7;
  color: #16a34a;
}

.seo-pain-before {
  color: #4b5563;
}

.seo-pain-after {
  color: #1f2937;
  font-weight: 500;
}

.seo-workflow-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .seo-workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-workflow-step {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.seo-workflow-step--highlight {
  box-shadow: 0 0 0 2px #f97316, 0 8px 20px rgba(249, 115, 22, 0.15);
}

.seo-workflow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, #60a5fa, #3b82f6);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.seo-workflow-num--gray {
  background: linear-gradient(to bottom right, #9ca3af, #6b7280);
}

.seo-workflow-num--blue {
  background: linear-gradient(to bottom right, #60a5fa, #3b82f6);
}

.seo-workflow-num--yellow {
  background: linear-gradient(to bottom right, #facc15, #eab308);
}

.seo-workflow-num--purple {
  background: linear-gradient(to bottom right, #c084fc, #a855f7);
}

.seo-workflow-num--orange {
  background: linear-gradient(to bottom right, #fb923c, #f97316);
}

.seo-workflow-num--pink {
  background: linear-gradient(to bottom right, #f472b6, #ec4899);
}

.seo-workflow-num--green {
  background: linear-gradient(to bottom right, #4ade80, #22c55e);
}

.seo-workflow-num--teal {
  background: linear-gradient(to bottom right, #2dd4bf, #14b8a6);
}

.seo-workflow-num--red {
  background: linear-gradient(to bottom right, #f87171, #ef4444);
}

.seo-workflow-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.seo-workflow-step p {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
}

.seo-info-box {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
}

.seo-info-box h3 {
  margin: 0 0 0.5rem;
  color: #1e3a8a;
  font-size: 1.125rem;
}

.seo-info-box p {
  margin: 0;
  color: #1e40af;
}

.seo-info-box--blue h3,
.seo-info-box--blue p {
  color: inherit;
}

.seo-use-case {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  border: 1px solid #bfdbfe;
}

.seo-use-case h3 {
  margin-top: 0;
}

.seo-use-case-stats {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: #374151;
}

.seo-use-case-stats li {
  margin-bottom: 0.35rem;
  padding-left: 1rem;
  position: relative;
}

.seo-use-case-stats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: #2563eb;
}

.seo-pricing-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.seo-pricing-card--featured {
  border: 2px solid #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.seo-pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.seo-pricing-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.seo-pricing-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
}

.seo-pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
}

.seo-pricing-users {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1.5rem;
}

.seo-pricing-card .seo-list {
  margin-bottom: 1.5rem;
}

.seo-btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.seo-btn-block:hover {
  opacity: 0.95;
}

.seo-roi-panel {
  background: linear-gradient(to bottom right, #2563eb, #0891b2);
  color: #fff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.seo-roi-panel h2 {
  text-align: center;
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

.seo-roi-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .seo-roi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-roi-panel h3 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.seo-roi-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-roi-panel li {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.seo-roi-panel li::before {
  content: "✓";
  color: #86efac;
  font-weight: 700;
}

.seo-roi-sum {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.seo-roi-stat {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.seo-roi-stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.seo-roi-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.seo-roi-stat--highlight {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.seo-roi-footnote {
  text-align: center;
  font-size: 1.125rem;
  margin: 0;
  opacity: 0.95;
}

.seo-cta.seo-cta-blue {
  background: linear-gradient(to right, #2563eb, #0891b2);
}

.seo-section--blue-tint {
  background: linear-gradient(180deg, #eff6ff, #fff);
}

.seo-section--green-tint {
  background: linear-gradient(180deg, #ecfdf5, #fff);
}

.seo-workflow-process-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .seo-workflow-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seo-workflow-process-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.seo-workflow-process-card .seo-workflow-num {
  background: linear-gradient(135deg, #22c55e, #059669);
}

.seo-workflow-process-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
}

.seo-workflow-process-card > p {
  margin: 0 0 1.25rem;
  color: #4b5563;
  font-size: 0.9375rem;
}

.seo-workflow-process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-workflow-process-steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
}

.seo-workflow-process-steps li span:first-child {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
}

.seo-integration-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .seo-integration-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-integration-grid h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.seo-integration-intro {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: #4b5563;
}

.seo-integration-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.seo-integration-item h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.seo-integration-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: #4b5563;
}

.seo-integration-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.seo-integration-panel {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  border-radius: 1rem;
  padding: 2rem;
}

.seo-integration-panel h3 {
  margin: 0 0 1.5rem;
  font-size: 1.375rem;
}

.seo-integration-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-integration-panel li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  color: #374151;
}

.seo-integration-panel li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}

.seo-roi-panel--green {
  background: linear-gradient(135deg, #16a34a, #059669);
}

.seo-stats-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .seo-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.seo-stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.seo-stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.seo-stat-desc {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0;
}

.seo-stats-footnote {
  margin: 2rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  font-size: 1.125rem;
}

.seo-pricing-card--featured-green {
  border-color: #16a34a;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.12);
}

.seo-pricing-badge--green {
  background: #16a34a;
}

.seo-btn-block--green {
  background: linear-gradient(135deg, #22c55e, #059669);
}

.seo-link--green {
  color: #16a34a;
}

.seo-cta.seo-cta-green {
  background: linear-gradient(to right, #16a34a, #059669);
}

.seo-btn-white-purple {
  color: #9333ea;
}

.seo-integration-icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.seo-ideal-panel {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.seo-ideal-panel h3 {
  margin: 0 0 1.5rem;
  font-size: 1.375rem;
}

.seo-ideal-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-ideal-panel li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  color: #374151;
}

.seo-ideal-panel li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}

.seo-pricing-card--featured-purple {
  border-color: #9333ea;
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.12);
}

.seo-pricing-badge--purple {
  background: #9333ea;
}

.seo-btn-block--purple {
  background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.seo-link--purple {
  color: #9333ea;
}

.seo-cta.seo-cta-purple {
  background: linear-gradient(to right, #9333ea, #2563eb);
}

.seo-hero.seo-hero-mieterportal {
  background: linear-gradient(to bottom right, #9333ea, #7e22ce, #2563eb);
  padding: 5rem 1rem 4rem;
}

.seo-hero-mieterportal .seo-check-mark {
  color: #86efac;
}

.seo-cta .seo-demo-form .seo-hero-footnote {
  margin-top: 1rem;
}

.seo-hero-badge-free {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.seo-hero-badge-free::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #4ade80;
}

.seo-hero-list {
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.seo-hero-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.seo-hero-footnote {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

.seo-portal-mock-wrap {
  position: relative;
}

.seo-portal-mock {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.seo-portal-mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f3f4f6;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  margin: -1rem -1rem 0;
}

.seo-portal-mock-dots {
  display: flex;
  gap: 0.375rem;
}

.seo-portal-mock-dots span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
}

.seo-portal-mock-dots span:nth-child(1) { background: #f87171; }
.seo-portal-mock-dots span:nth-child(2) { background: #fbbf24; }
.seo-portal-mock-dots span:nth-child(3) { background: #4ade80; }

.seo-portal-mock-url {
  flex: 1;
  background: #fff;
  border-radius: 0.25rem;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

.seo-portal-mock-body {
  background: linear-gradient(135deg, #eff6ff, #fff);
  padding: 1.5rem;
}

.seo-portal-mock-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  color: #111827;
}

.seo-portal-mock-body > p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.seo-portal-notice {
  background: #fefce8;
  border: 1px solid #fde047;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.seo-portal-notice strong {
  display: block;
  color: #111827;
  margin-bottom: 0.25rem;
}

.seo-portal-docs {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
}

.seo-portal-docs h4 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #111827;
}

.seo-portal-doc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: #111827;
}

.seo-portal-badge-float {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: #22c55e;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  transform: rotate(12deg);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.seo-trust-bar {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3rem 1rem;
}

.seo-trust-bar .seo-trust-grid {
  max-width: 80rem;
  margin: 0 auto;
}

.seo-trust-bar .seo-trust-item strong {
  font-size: 1.875rem;
}

.seo-compare-card {
  border-radius: 1rem;
  padding: 2rem;
}

.seo-compare-card--bad {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.seo-compare-card--good {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.seo-compare-card h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
}

.seo-compare-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.seo-compare-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.seo-compare-item h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.seo-compare-item p {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
}

.seo-compare-bad {
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0;
}

.seo-compare-good {
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}

.seo-mieter-feature {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
}

.seo-mieter-feature h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.seo-mieter-feature > p {
  margin: 0 0 1rem;
  color: #4b5563;
}

.seo-section-dark {
  background: #111827;
  color: #fff;
  padding: 5rem 1rem;
}

.seo-section-dark h2 {
  color: #fff;
}

.seo-section-dark .seo-section-lead {
  color: #d1d5db;
}

.seo-security-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .seo-security-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.seo-security-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
}

.seo-security-icon .seo-card-icon-svg {
  width: 2.25rem;
  height: 2.25rem;
  color: #fff;
}

.seo-security-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #fff;
}

.seo-security-grid p {
  margin: 0;
  font-size: 0.9375rem;
  color: #9ca3af;
}

.seo-security-callout {
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}

@media (min-width: 768px) {
  .seo-security-callout {
    flex-direction: row;
  }
}

.seo-security-callout h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #fff;
}

.seo-security-callout > div > p {
  color: #d1d5db;
  margin: 0 0 1rem;
}

.seo-security-callout .seo-list--check li {
  color: #d1d5db;
}

.seo-faq details {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  background: #f9fafb;
  overflow: hidden;
}

.seo-faq summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  list-style: none;
}

.seo-faq summary::-webkit-details-marker {
  display: none;
}

.seo-faq details[open] summary {
  border-bottom: 1px solid #e5e7eb;
  background: #f3f4f6;
}

.seo-faq details p {
  margin: 0;
  padding: 1rem 1.25rem;
  background: #fff;
  color: #4b5563;
  line-height: 1.6;
}

.seo-demo-form {
  max-width: 42rem;
  margin: 0 auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
}

.seo-demo-form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
}

.seo-demo-form input,
.seo-demo-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-sizing: border-box;
}

.seo-demo-form-row {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .seo-demo-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.seo-demo-form-privacy {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
}

.seo-demo-form-privacy a {
  color: #fde047;
  text-decoration: underline;
}

.seo-btn-yellow {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  background: #facc15;
  color: #111827;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 0.5rem;
}

.seo-btn-yellow:hover {
  background: #fde047;
}

.seo-demo-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

.seo-demo-trust-row span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.seo-pricing-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .seo-pricing-cta-row {
    flex-direction: row;
  }
}

.seo-btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
}

.seo-btn-gray {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #f3f4f6;
  color: #111827;
  font-weight: 600;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.seo-grid-mieter-features {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .seo-grid-mieter-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .seo-grid-mieter-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Features-Seite */
.seo-hero.seo-hero-features {
  background: linear-gradient(to bottom right, #0f172a, #172554, #0f172a);
  padding: 6rem 1rem 3rem;
}

.seo-hero-features .seo-hero-lead {
  color: #bfdbfe;
}

.seo-features-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .seo-features-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.seo-features-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.seo-features-stat strong {
  display: block;
  font-size: 1.5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .seo-features-stat strong {
    font-size: 2rem;
  }
}

.seo-features-stat span {
  display: block;
  font-size: 0.875rem;
  color: #bfdbfe;
  font-weight: 500;
}

.seo-features-stat small {
  display: block;
  font-size: 0.75rem;
  color: #93c5fd;
  margin-top: 0.25rem;
}

.seo-features-subnav {
  position: sticky;
  top: 4rem;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.seo-features-subnav-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  overflow-x: auto;
}

.seo-features-subnav a {
  flex-shrink: 0;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  background: transparent;
}

.seo-features-subnav a:hover {
  background: #f3f4f6;
}

.seo-features-subnav a.is-active {
  background: #2563eb;
  color: #fff;
}

.seo-feature-section {
  padding: 5rem 1rem;
  scroll-margin-top: 7rem;
}

.seo-feature-section--alt {
  background: #f9fafb;
}

.seo-feature-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.seo-feature-icon {
  padding: 0.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.seo-feature-icon--purple { background: #f3e8ff; color: #7c3aed; }
.seo-feature-icon--blue { background: #dbeafe; color: #2563eb; }
.seo-feature-icon--green { background: #d1fae5; color: #059669; }
.seo-feature-icon--orange { background: #ffedd5; color: #ea580c; }
.seo-feature-icon--slate { background: #f1f5f9; color: #475569; }
.seo-feature-icon--cyan { background: #cffafe; color: #0891b2; }

.seo-feature-icon .seo-card-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: currentColor;
}

.seo-card-icon--compact {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
}

.seo-card-icon--compact .seo-card-icon-svg {
  width: 1.35rem;
  height: 1.35rem;
}

.seo-fm-icon {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 0;
}

.seo-fm-icon--orange { background: #ffedd5; color: #ea580c; }
.seo-fm-icon--red { background: #fee2e2; color: #dc2626; }
.seo-fm-icon--green { background: #d1fae5; color: #059669; }
.seo-fm-icon--blue { background: #dbeafe; color: #2563eb; }

.seo-fm-icon .seo-card-icon-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: currentColor;
}

.seo-mieter-feature .seo-card-icon--compact {
  margin-bottom: 1rem;
}

.seo-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}

.seo-badge--blue { background: #dbeafe; color: #1d4ed8; border-color: #bfdbfe; }
.seo-badge--green { background: #d1fae5; color: #047857; border-color: #a7f3d0; }
.seo-badge--purple { background: #f3e8ff; color: #7e22ce; border-color: #e9d5ff; }
.seo-badge--orange { background: #ffedd5; color: #c2410c; border-color: #fed7aa; }
.seo-badge--red { background: #fee2e2; color: #b91c1c; border-color: #fecaca; }

.seo-feature-section h2 {
  text-align: left;
  margin: 0 0 0.25rem;
  font-size: 1.875rem;
}

.seo-feature-intro {
  margin: 0 0 2.5rem 4rem;
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
}

@media (max-width: 640px) {
  .seo-feature-intro {
    margin-left: 0;
  }
}

.seo-feature-columns {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .seo-feature-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-feature-columns h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
}

.seo-check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.seo-check-list li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
}

.seo-feature-highlight {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .seo-feature-highlight {
    flex-direction: row;
    align-items: flex-start;
  }
}

.seo-feature-highlight--purple {
  background: linear-gradient(90deg, #faf5ff, #eff6ff);
  border: 1px solid #e9d5ff;
}

.seo-feature-highlight--emerald {
  background: #ecfdf5;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #a7f3d0;
}

.seo-feature-cards-3 {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .seo-feature-cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-feature-mini-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.seo-feature-mini-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  text-align: left;
}

.seo-dot-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.seo-dot-list li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: #60a5fa;
  margin-top: 0.5em;
  flex-shrink: 0;
}

.seo-order-num-banner {
  background: #2563eb;
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .seo-order-num-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.seo-order-num-banner code {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.seo-order-num-sample {
  font-family: ui-monospace, monospace;
  font-size: 2.25rem;
  font-weight: 700;
  color: #93c5fd;
}

.seo-fm-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .seo-fm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .seo-fm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-fm-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.seo-fm-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  text-align: left;
}

.seo-fm-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
}

.seo-dguv-box {
  background: linear-gradient(90deg, #fff7ed, #fef2f2);
  border: 1px solid #ffedd5;
  border-radius: 1rem;
  padding: 1.5rem;
}

.seo-compliance-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .seo-compliance-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-compliance-item {
  display: flex;
  gap: 1rem;
}

.seo-compliance-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  text-align: left;
}

.seo-compliance-item p {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
}

.seo-compliance-summary {
  background: #0f172a;
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
}

.seo-compliance-summary h3 {
  margin: 0 0 1rem;
  color: #fff;
  text-align: left;
}

.seo-compliance-summary-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .seo-compliance-summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-compliance-summary-grid > div {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
}

.seo-compliance-summary-grid strong {
  display: block;
  margin-bottom: 0.25rem;
}

.seo-pwa-banner {
  background: #0891b2;
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  margin-top: 2.5rem;
}

.seo-pwa-banner h3 {
  margin: 0 0 0.5rem;
  color: #fff;
}

.seo-pwa-banner p {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.875rem;
  color: #cffafe;
}

.seo-cta.seo-cta-features {
  background: linear-gradient(to bottom right, #0f172a, #172554, #0f172a);
}

.seo-btn-white-slate {
  color: #1e3a8a;
}

.seo-section-divider {
  border: none;
  border-top: 1px solid #f3f4f6;
  margin: 0 2rem;
}

/* Use Cases */
.seo-hero.seo-hero-usecases {
  background: linear-gradient(to right, #9333ea, #2563eb);
  padding: 5rem 1rem 4rem;
}

.seo-usecase-card {
  border-radius: 0.75rem;
  padding: 2rem;
  border: 2px solid;
}

.seo-usecase-card--blue {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  border-color: #bfdbfe;
}

.seo-usecase-card--green {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-color: #bbf7d0;
}

.seo-usecase-card--purple {
  background: linear-gradient(135deg, #faf5ff, #eff6ff);
  border-color: #e9d5ff;
}

.seo-usecase-card h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  text-align: left;
}

.seo-usecase-card > p {
  margin: 0 0 1.5rem;
  color: #374151;
}

.seo-usecase-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}

.seo-usecase-link--blue { color: #2563eb; }
.seo-usecase-link--green { color: #16a34a; }
.seo-usecase-link--purple { color: #9333ea; }

/* Integrationen */
.seo-hero.seo-hero-integrations {
  background: linear-gradient(to right, #4f46e5, #9333ea);
  padding: 5rem 1rem 4rem;
}

.seo-hero-integrations .seo-hero-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.seo-integration-section {
  padding: 4rem 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.seo-integration-section:last-of-type {
  border-bottom: none;
}

.seo-integration-section-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.seo-integration-section-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.seo-integration-section-icon--purple {
  background: #f3e8ff;
  color: #9333ea;
}

.seo-integration-section-icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.seo-integration-section-icon--green {
  background: #d1fae5;
  color: #16a34a;
}

.seo-integration-section-head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.875rem;
  text-align: left;
}

.seo-integration-section-head p {
  margin: 0;
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
}

.seo-integration-card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .seo-integration-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .seo-integration-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-integration-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid;
  display: flex;
  flex-direction: column;
}

.seo-integration-card--purple {
  background: linear-gradient(135deg, #faf5ff, #eff6ff);
  border-color: #e9d5ff;
}

.seo-integration-card--blue {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  border-color: #bfdbfe;
}

.seo-integration-card--green {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-color: #bbf7d0;
}

.seo-integration-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.seo-integration-card-head h3 {
  margin: 0;
  font-size: 1.25rem;
}

.seo-integration-card > p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: #374151;
}

.seo-integration-card ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.seo-integration-card li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

.seo-integration-card li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}

.seo-integration-card-foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.seo-integration-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.seo-integration-card-link--purple { color: #9333ea; }
.seo-integration-card-link--blue { color: #2563eb; }
.seo-integration-card-link--green { color: #16a34a; }

.seo-badge--gray {
  background: #f3f4f6;
  color: #374151;
  border-color: #e5e7eb;
}

.seo-integration-note {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.seo-integration-note h2 {
  margin: 0 0 1rem;
  font-size: 1.875rem;
}

.seo-integration-note p {
  margin: 0 0 0.5rem;
  color: #4b5563;
  font-size: 1.125rem;
}

.seo-integration-note .seo-footnote {
  font-size: 0.875rem;
  color: #6b7280;
}

.seo-stats-gradient {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #9333ea, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.seo-hero.seo-hero-pricing {
  background: linear-gradient(to right, #9333ea, #2563eb);
  padding: 5rem 1rem 4rem;
}

.seo-billing-note {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.seo-suite-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.seo-suite-label--blue { background: #dbeafe; color: #2563eb; }
.seo-suite-label--green { background: #d1fae5; color: #059669; }
.seo-suite-label--purple { background: #f3e8ff; color: #9333ea; }

.seo-section--green-tint-pricing {
  background: linear-gradient(180deg, #ecfdf5, #fff);
}

.seo-bundle-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .seo-bundle-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-bundle-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.seo-bundle-card--highlight {
  border: 2px solid #9333ea;
}

.seo-bundle-discount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #9333ea;
  margin: 0.5rem 0 1.5rem;
}

.seo-bundle-example {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.seo-pricing-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

.seo-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}

.seo-pricing-table caption {
  caption-side: top;
  text-align: left;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0 0 1rem;
  color: #111827;
}

.seo-pricing-table th,
.seo-pricing-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.seo-pricing-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}

.seo-pricing-table tr:last-child td {
  border-bottom: none;
}

.seo-pricing-table .seo-price-total {
  font-weight: 700;
  color: #9333ea;
}

.seo-pricing-table .seo-price-save {
  color: #16a34a;
  font-weight: 600;
}

.seo-kleinunternehmer-hint {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  margin-top: 1rem;
}

.seo-trust-pricing {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .seo-trust-pricing {
    grid-template-columns: repeat(4, 1fr);
  }
}

.seo-trust-pricing h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.seo-trust-pricing p {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
}

/* Footer — gleiche Struktur wie LandingFooter.jsx (React) */
.seo-footer {
  background: #111827;
  color: #9ca3af;
  font-size: 0.875rem;
  padding: 3rem 1rem;
}

.seo-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.seo-footer-cols {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .seo-footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.seo-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}

.seo-footer-brand-row img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.seo-footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.seo-footer h3 {
  color: #fff;
  font-weight: 600;
  margin: 0 0 1rem;
  font-size: 1rem;
}

.seo-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-footer li {
  margin-bottom: 0.5rem;
}

.seo-footer a {
  color: inherit;
}

.seo-footer a:hover {
  color: #fff;
}

.seo-footer-copy {
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  text-align: center;
  font-size: 0.875rem;
}
