/* ============================================================
   SIGMA Reden-Generator — Statische Startseite
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --c-dark:      #1a1a2e;
  --c-darker:    #0d1020;
  --c-light:     #f9f7f4;
  --c-orange:    #ee8018;
  --c-orange-dk: #d06a10;
  --c-white:     #ffffff;
  --c-text:      #444444;
  --c-muted:     #666666;
  --c-border:    rgba(255,255,255,0.12);

  --font-sans:   system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;

  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.25);

  --max-w:       1160px;
  --gap:         2rem;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* --- Typography helpers --- */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--c-orange);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 640px;
  margin-top: 0.75rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: none;
  line-height: 1;
}

.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--c-orange);
  color: var(--c-white);
}
.btn-primary:hover { background: var(--c-orange-dk); }

.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }

.btn-outline {
  background: transparent;
  color: var(--c-orange);
  border: 2px solid var(--c-orange);
}
.btn-outline:hover { background: var(--c-orange); color: var(--c-white); }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-darker);
  border-bottom: 1px solid var(--c-border);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo .logo-main {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-white);
}
.nav-logo .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--c-white); }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--c-darker);
  border-top: 1px solid var(--c-border);
}
.nav-mobile a {
  display: block;
  padding: 0.9rem 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.15s;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.05); }
.nav-mobile .btn { margin: 1rem 1.5rem; }

/* ============================================================
   HERO  — Vollbild-Hintergrund, Text rechts
   ============================================================ */
#hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 7rem;
  position: relative;
  /* Bild rechts, Gradient läuft von Dunkelblau links nahtlos ins Bild */
  background:
    linear-gradient(to right,
      var(--c-dark)          0%,
      var(--c-dark)          38%,
      rgba(26,26,46,0.82)    52%,
      rgba(26,26,46,0.25)    68%,
      transparent            82%
    ),
    url('img/hero-wolken.png') right center / 62% auto no-repeat;
  background-color: var(--c-dark);
}

/* Unterer Übergang: Hero (#1a1a2e) → Trust (#0d1020) */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--c-darker));
  pointer-events: none;
}

.hero-text {
  max-width: 520px;
}

.hero-text .label { margin-bottom: 1rem; }

.hero-h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--c-orange);
}

.hero-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   TRUST / AUTOR  — bg: #0d1020
   ============================================================ */
#trust {
  background: var(--c-darker);
  padding: 4rem 0 3.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.trust-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-orange);
  flex-shrink: 0;
}

.trust-info .trust-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-white);
}
.trust-info .trust-title {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-stats > div {
  padding: 1rem 0.75rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-stats > div:last-child { border-right: none; }

.trust-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-orange);
  line-height: 1;
}
.trust-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
}

.trust-link {
  color: var(--c-orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.trust-link:hover { gap: 0.55rem; }

/* ============================================================
   STATS-LEISTE  — bg: #ee8018 (orange)
   ============================================================ */
#stats {
  background: var(--c-orange);
  padding: 2.75rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
}
.stat-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.4rem;
}

/* ============================================================
   WIE ES FUNKTIONIERT  — bg: #f9f7f4 (cremeweiß)
   ============================================================ */
#how {
  background: var(--c-light);
}

.how-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.how-header .section-title { color: var(--c-darker); }
.how-header .section-sub   { color: var(--c-muted); margin: 0.75rem auto 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.step-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  border-color: rgba(238,128,24,0.35);
  transform: translateY(-2px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-darker);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ============================================================
   DIFFERENZ  — bg: #0d1020
   ============================================================ */
#diff {
  background: var(--c-darker);
}

.diff-header {
  text-align: center;
  margin-bottom: 3rem;
}
.diff-header .section-title { color: var(--c-white); }
.diff-header .section-sub   { color: rgba(255,255,255,0.55); margin: 0.75rem auto 0; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.diff-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
}

.diff-card-bad {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.diff-card-good {
  background: rgba(238,128,24,0.1);
  border: 1px solid rgba(238,128,24,0.35);
}

.diff-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.diff-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.diff-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
}

.diff-card-bad .diff-card-title  { color: rgba(255,255,255,0.6); }
.diff-card-good .diff-card-title { color: var(--c-orange); }

.diff-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.diff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.diff-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.diff-card-bad  .diff-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.diff-card-good .diff-tag { background: rgba(238,128,24,0.2);   color: var(--c-orange); }

/* ============================================================
   SEO-TEXTBLOCK  — bg: #f9f7f4 (hell)
   ============================================================ */
#seo {
  background: var(--c-light);
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.seo-left .section-title { color: var(--c-darker); }
.seo-left .section-sub   { color: var(--c-muted); }

.seo-cta { margin-top: 2rem; }

.seo-right p {
  color: var(--c-text);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.seo-right p:last-child { margin-bottom: 0; }

/* ============================================================
   ANLÄSSE  — bg: #1a1a2e
   ============================================================ */
#anlaesse {
  background: var(--c-dark);
}

.anlaesse-header {
  text-align: center;
  margin-bottom: 3rem;
}
.anlaesse-header .section-title { color: var(--c-white); }
.anlaesse-header .section-sub   { color: rgba(255,255,255,0.55); margin: 0.75rem auto 0; }

.anlaesse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.anlass-category {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}

.anlass-cat-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 1.1rem;
}

.anlass-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.anlass-list li:last-child { border-bottom: none; }

.anlass-check {
  color: var(--c-orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.anlaesse-footer {
  text-align: center;
}

/* ============================================================
   PREISE  — bg: #f9f7f4 (hell)
   ============================================================ */
#preise {
  background: var(--c-light);
}

.preise-header {
  text-align: center;
  margin-bottom: 1rem;
}
.preise-header .section-title { color: var(--c-darker); }

.preise-intro {
  text-align: center;
  color: var(--c-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0.75rem auto 3rem;
}

.preise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.preis-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.preis-card:hover { border-color: rgba(238,128,24,0.4); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.preis-card.featured {
  background: var(--c-white);
  border: 2px solid var(--c-orange);
  position: relative;
  box-shadow: 0 4px 24px rgba(238,128,24,0.15);
}

.preis-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}

.preis-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 0.75rem;
}

.preis-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-darker);
  line-height: 1;
}

.preis-unit {
  font-size: 0.82rem;
  color: var(--c-muted);
  margin-bottom: 1.25rem;
  margin-top: 0.25rem;
}

.preis-features {
  margin-bottom: 1.75rem;
  flex: 1;
}

.preis-features li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--c-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.preis-features li:last-child { border-bottom: none; }
.preis-features li::before {
  content: '✓';
  color: var(--c-orange);
  font-size: 0.75rem;
  flex-shrink: 0;
  font-weight: 700;
}

.preis-card .btn { width: 100%; justify-content: center; }

.preise-extras {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.preise-extra-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--c-muted);
}
.preise-extra-item .icon {
  font-size: 1.1rem;
  color: var(--c-orange);
}

.preise-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(0,0,0,0.35);
}

/* ============================================================
   NEWSLETTER  — bg: #1a1a2e (dunkel)
   ============================================================ */
#newsletter {
  background: var(--c-dark);
  padding: 4rem 0;
}

.newsletter-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box .section-title { color: var(--c-white); margin-bottom: 0.6rem; }
.newsletter-box .section-sub   { color: rgba(255,255,255,0.55); margin: 0 auto 2rem; }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: var(--c-white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--c-orange); }

/* ============================================================
   BLOG  — bg: #f9f7f4 (hell)
   ============================================================ */
#blog {
  background: var(--c-light);
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}
.blog-header .section-title { color: var(--c-darker); }
.blog-header .section-sub   { color: var(--c-muted); margin: 0.75rem auto 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.blog-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-color: rgba(238,128,24,0.3);
  transform: translateY(-3px);
}

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--c-dark);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-darker);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  flex: 1;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.blog-card-link:hover { gap: 0.55rem; }

.blog-footer {
  text-align: center;
}

/* ============================================================
   FAQ  — bg: #f9f7f4 (hell)
   ============================================================ */
#faq {
  background: var(--c-light);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-header .section-title { color: var(--c-darker); }
.faq-header .section-sub   { color: var(--c-muted); margin: 0.75rem auto 0; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  color: var(--c-darker);
  font-weight: 600;
  font-size: 0.98rem;
  gap: 1rem;
  user-select: none;
}

.faq-icon {
  color: var(--c-orange);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--c-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FOOTER  — bg: #0d1020
   ============================================================ */
#footer {
  background: var(--c-darker);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  line-height: 1.65;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--c-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--c-white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .preise-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }

  #hero {
    min-height: auto;
    padding: 4rem 0 5rem;
    background:
      linear-gradient(rgba(26,26,46,0.92), rgba(26,26,46,0.92)),
      url('img/hero-wolken.png') center center / cover no-repeat;
    background-color: var(--c-dark);
  }
  .hero-text { max-width: 100%; }

  .trust-grid       { grid-template-columns: 1fr; text-align: center; }
  .trust-photo      { margin: 0 auto; }
  .trust-stats      { justify-content: center; }

  .stats-grid       { grid-template-columns: 1fr; }
  .stat-item        { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child { border-bottom: none; }

  .diff-grid        { grid-template-columns: 1fr; }
  .seo-grid         { grid-template-columns: 1fr; gap: 2rem; }
  .anlaesse-grid    { grid-template-columns: 1fr; }
  .preise-grid      { grid-template-columns: 1fr; }
  .blog-grid        { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: 1fr 1fr; }

  .footer-top       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; }

  .newsletter-form  { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  .preise-extras    { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}
