/* ==============================================================
   LANDING PAGE – design-geschenke.shop
   Version für VersaCommerce (mit Theme-Header/Footer)
   CI-Farben: #d6b9b1 (Altrosé) · #dfdacf (Beige) · #34383b (Anthrazit)
   ============================================================== */

/* ==============================================================
   GLOBAL-OVERRIDES FÜR DIE LANDINGPAGE
   Greifen NUR, wenn auf der Seite .dg-lp existiert.
   Moderne Browser: :has()-Selektor.
   Falls :has() nicht unterstützt wird, kann zusätzlich über das
   Snippet eine Body-Klasse gesetzt werden.
============================================================== */

/* Header + Body beige einfärben + Abstand oben entfernen */
body:has(.dg-lp),
html:has(.dg-lp) body {
  background: #dfdacf !important;
}

/* Alle wahrscheinlichen Wrapper des Theme-Headers/Logos/Navigation */
body:has(.dg-lp) .header,
body:has(.dg-lp) .header-wrapper,
body:has(.dg-lp) header,
body:has(.dg-lp) .site-header,
body:has(.dg-lp) .main-header,
body:has(.dg-lp) #header,
body:has(.dg-lp) .navigation,
body:has(.dg-lp) .top-bar,
body:has(.dg-lp) .logo-wrapper,
body:has(.dg-lp) .logo {
  background: #dfdacf !important;
  background-color: #dfdacf !important;
}

/* Content-Container-Padding oben entfernen, damit kein Leerraum
   zwischen Header und Trust-Bar entsteht */
body:has(.dg-lp) .content,
body:has(.dg-lp) .main,
body:has(.dg-lp) main,
body:has(.dg-lp) #content,
body:has(.dg-lp) .page,
body:has(.dg-lp) .container,
body:has(.dg-lp) .page-wrapper,
body:has(.dg-lp) .main-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Landingpage selbst randlos an Header angrenzen */
body:has(.dg-lp) .dg-lp {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Alle Styles sind auf .dg-lp gescopet, damit sie nicht mit
   deinem VersaCommerce-Theme kollidieren. */

.dg-lp {
  /* --- CI-Farben --- */
  --dg-ink:     #34383b;                  /* Anthrazit – Text, dunkle Flächen */
  --dg-ink-60:  rgba(52, 56, 59, .65);
  --dg-ink-30:  rgba(52, 56, 59, .3);
  --dg-ink-10:  rgba(52, 56, 59, .1);

  --dg-cream:   #dfdacf;                  /* Beige – Seitenhintergrund */
  --dg-cream-d: #d3cdc0;                  /* Beige etwas dunkler für Trust-Bar */

  --dg-sand:    #d6b9b1;                  /* Altrosé – Hauptakzent */
  --dg-sand-l:  #e8d4ce;                  /* Altrosé hell – zarte Akzente */

  --dg-white:   #faf7f2;                  /* warmes Off-White für Cards */
  --dg-accent:  #b8928a;                  /* Altrosé dunkler – für Hover */

  /* --- Typografie --- */
  --dg-font-display: 'Cormorant Garamond', Georgia, serif;
  --dg-font-body:    'DM Sans', system-ui, sans-serif;

  /* --- Layout --- */
  --dg-max-w: 1100px;
  --dg-r-sm: 6px;
  --dg-r-md: 12px;
  --dg-r-lg: 20px;

  --dg-ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* --- Basis --- */
  background: var(--dg-cream);
  color: var(--dg-ink);
  font-family: var(--dg-font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.dg-lp *,
.dg-lp *::before,
.dg-lp *::after { box-sizing: border-box; }

.dg-lp img { max-width: 100%; display: block; }
.dg-lp a { color: inherit; text-decoration: none; }

/* Container */
.dg-lp {
  width: 100%;
}
.dg-lp .dg-container {
  max-width: var(--dg-max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 100%;
}

/* Fade-in-Animation komplett deaktiviert – sorgt auf manchen
   Themes für Darstellungsprobleme. Elemente sind immer sofort sichtbar. */
.dg-lp .reveal,
.dg-lp.dg-lp-js-active .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ===========================
   BUTTONS
=========================== */
.dg-lp .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dg-font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: var(--dg-r-sm);
  padding: 13px 28px;
  cursor: pointer;
  transition: all .25s var(--dg-ease-out);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.dg-lp .btn-primary {
  background: var(--dg-ink);
  color: var(--dg-white);
}
.dg-lp .btn-primary:hover {
  background: var(--dg-accent);
  color: var(--dg-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(52,56,59,.18);
}
.dg-lp .btn-outline {
  background: transparent;
  color: var(--dg-ink);
  border: 1px solid var(--dg-ink-30);
}
.dg-lp .btn-outline:hover {
  border-color: var(--dg-ink);
  background: var(--dg-ink);
  color: var(--dg-white);
}
.dg-lp .btn-sand {
  background: var(--dg-sand);
  color: var(--dg-white);
}
.dg-lp .btn-sand:hover {
  background: var(--dg-accent);
  color: var(--dg-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(214,185,177,.35);
}

.dg-lp .arrow {
  display: inline-block;
  font-style: normal;
  transition: transform .25s var(--dg-ease-out);
}
.dg-lp .btn:hover .arrow { transform: translateX(4px); }

/* ===========================
   HERO
   (kein eigenes nav-Padding – Theme liefert Header)
=========================== */
.dg-lp .hero {
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--dg-cream);
}

.dg-lp .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero-Text-Spalte sauber links */
.dg-lp .hero-content {
  position: relative;
  z-index: 3;
}

.dg-lp .hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dg-accent) !important;
  margin-bottom: 20px;
}
.dg-lp .hero-h1 {
  font-family: var(--dg-font-display) !important;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 24px;
  color: var(--dg-ink) !important;
}
.dg-lp .hero-h1 em {
  font-style: italic;
  color: var(--dg-accent) !important;
}
.dg-lp .hero-lead {
  font-size: 1rem;
  color: var(--dg-ink-60) !important;
  max-width: 440px;
  margin: 0 0 36px;
  line-height: 1.75;
}
.dg-lp .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.dg-lp .hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.dg-lp .hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--dg-ink-60) !important;
}
.dg-lp .hero-trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dg-sand);
  flex-shrink: 0;
}

/* Hero visual card */
.dg-lp .hero-visual { position: relative; }
.dg-lp .hero-card {
  background: var(--dg-white);
  border-radius: var(--dg-r-lg);
  padding: 32px;
  box-shadow: 0 4px 40px rgba(52,56,59,.08), 0 1px 0 var(--dg-ink-10);
  position: relative;
}
.dg-lp .hero-card-tag {
  display: inline-block;
  background: var(--dg-cream);
  color: var(--dg-ink-60);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.dg-lp .hero-card-title {
  font-family: var(--dg-font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0 0 20px;
  color: var(--dg-ink);
}
.dg-lp .shortlist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--dg-ink-10);
}
.dg-lp .shortlist-item:last-child { border-bottom: none; }
.dg-lp .shortlist-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--dg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6875rem;
  font-weight: 500;
  color: var(--dg-accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.dg-lp .shortlist-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--dg-ink);
  line-height: 1.3;
}
.dg-lp .shortlist-desc {
  font-size: .75rem;
  color: var(--dg-ink-60);
  margin-top: 2px;
}
.dg-lp .hero-badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--dg-ink);
  color: var(--dg-white);
  font-size: .6875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ===========================
   TRUST BAR
=========================== */
.dg-lp .trust-bar {
  background: var(--dg-cream-d);
  border-top: 1px solid var(--dg-ink-10);
  border-bottom: 1px solid var(--dg-ink-10);
  padding: 22px 0;
}
.dg-lp .trust-bar-inner {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.dg-lp .trust-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  color: var(--dg-ink-60);
  white-space: nowrap;
}
.dg-lp .trust-signal-icon { font-size: 1rem; line-height: 1; }

/* ===========================
   SECTION BASE
=========================== */
.dg-lp .dg-section { padding: clamp(72px, 10vw, 120px) 0; }
.dg-lp .section-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dg-accent);
  margin: 0 0 14px;
}
.dg-lp .section-title {
  font-family: var(--dg-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--dg-ink);
  margin: 0;
}
.dg-lp .section-title em { font-style: italic; color: var(--dg-accent); }
.dg-lp .section-lead {
  font-size: 1rem;
  color: var(--dg-ink-60);
  max-width: 520px;
  margin: 16px 0 0;
  line-height: 1.75;
}

/* ===========================
   PAIN SECTION
=========================== */
.dg-lp .pain-section { background: var(--dg-white); }
.dg-lp .pain-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.dg-lp .pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.dg-lp .pain-card {
  background: var(--dg-cream);
  border-radius: var(--dg-r-md);
  padding: 24px;
  border: 1px solid transparent;
  transition: border-color .3s, transform .3s;
}
.dg-lp .pain-card:hover {
  border-color: var(--dg-sand-l);
  transform: translateY(-2px);
}
.dg-lp .pain-icon { font-size: 1.25rem; margin-bottom: 12px; line-height: 1; }
.dg-lp .pain-card-title {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--dg-ink);
  margin: 0 0 6px;
}
.dg-lp .pain-card-text {
  font-size: .8125rem;
  color: var(--dg-ink-60);
  line-height: 1.6;
  margin: 0;
}

/* ===========================
   PROCESS SECTION
=========================== */
.dg-lp .process-section { background: var(--dg-cream); }
.dg-lp .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.dg-lp .process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--dg-sand-l);
  z-index: 0;
}
.dg-lp .process-step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}
.dg-lp .process-num-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--dg-white);
  border: 1px solid var(--dg-sand-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background .3s, border-color .3s;
}
.dg-lp .process-step:hover .process-num-wrap {
  background: var(--dg-sand);
  border-color: var(--dg-sand);
}
.dg-lp .process-num {
  font-family: var(--dg-font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dg-accent);
  transition: color .3s;
}
.dg-lp .process-step:hover .process-num { color: var(--dg-white); }
.dg-lp .process-title {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--dg-ink);
  margin: 0 0 8px;
}
.dg-lp .process-text {
  font-size: .8125rem;
  color: var(--dg-ink-60);
  line-height: 1.6;
  margin: 0;
}

/* ===========================
   PRICING SECTION
=========================== */
.dg-lp .pricing-section {
  background: var(--dg-ink);
  color: var(--dg-white);
}
.dg-lp .pricing-section .section-eyebrow { color: var(--dg-sand); }
.dg-lp .pricing-section .section-title { color: var(--dg-white); }
.dg-lp .pricing-section .section-lead { color: rgba(250,247,242,.6); }
.dg-lp .pricing-header { margin-bottom: 56px; }
.dg-lp .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.dg-lp .pkg {
  background: rgba(250,247,242,.05);
  border: 1px solid rgba(250,247,242,.1);
  border-radius: var(--dg-r-lg);
  padding: 32px;
  transition: border-color .3s, transform .3s;
  position: relative;
}
.dg-lp .pkg:hover {
  border-color: rgba(214,185,177,.5);
  transform: translateY(-4px);
}
.dg-lp .pkg.featured {
  background: var(--dg-white);
  border-color: transparent;
  color: var(--dg-ink);
  transform: translateY(-8px);
}
.dg-lp .pkg.featured:hover { transform: translateY(-12px); }
.dg-lp .pkg-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dg-sand);
  color: var(--dg-ink);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.dg-lp .pkg-name {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dg-sand);
  margin: 0 0 6px;
}
.dg-lp .pkg.featured .pkg-name { color: var(--dg-accent); }
.dg-lp .pkg-subtitle {
  font-size: .8125rem;
  opacity: .6;
  margin: 0 0 24px;
}
.dg-lp .pkg.featured .pkg-subtitle { opacity: .7; color: var(--dg-ink); }
.dg-lp .pkg-price {
  font-family: var(--dg-font-display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: var(--dg-white);
  margin: 0 0 4px;
}
.dg-lp .pkg.featured .pkg-price { color: var(--dg-ink); }
.dg-lp .pkg-price-note {
  font-size: .75rem;
  opacity: .5;
  margin: 0 0 28px;
}
.dg-lp .pkg.featured .pkg-price-note { opacity: .55; color: var(--dg-ink); }
.dg-lp .pkg-divider {
  height: 1px;
  background: rgba(250,247,242,.12);
  margin-bottom: 24px;
}
.dg-lp .pkg.featured .pkg-divider { background: var(--dg-ink-10); }
.dg-lp .pkg-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dg-lp .pkg-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .8125rem;
  color: rgba(250,247,242,.75);
  line-height: 1.5;
}
.dg-lp .pkg.featured .pkg-feature { color: var(--dg-ink-60); }
.dg-lp .pkg-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(214,185,177,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: .5rem;
  color: var(--dg-sand);
}
.dg-lp .pkg.featured .pkg-check {
  background: rgba(214,185,177,.35);
  color: var(--dg-accent);
}
.dg-lp .pkg-note {
  font-size: .75rem;
  color: rgba(250,247,242,.4);
  text-align: center;
  margin-top: 40px;
}

/* Buttons in dunkler Pricing-Sektion: Outline-Variante invertieren */
.dg-lp .pricing-section .btn-outline {
  color: rgba(250,247,242,.8);
  border-color: rgba(250,247,242,.25);
}
.dg-lp .pricing-section .btn-outline:hover {
  background: var(--dg-white);
  color: var(--dg-ink);
  border-color: var(--dg-white);
}

/* ===========================
   TESTIMONIALS
=========================== */
.dg-lp .testimonials-section { background: var(--dg-cream-d); }
.dg-lp .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.dg-lp .testimonial {
  background: var(--dg-white);
  border-radius: var(--dg-r-lg);
  padding: 32px;
  border: 1px solid var(--dg-ink-10);
  transition: box-shadow .3s, transform .3s;
}
.dg-lp .testimonial:hover {
  box-shadow: 0 12px 40px rgba(52,56,59,.08);
  transform: translateY(-3px);
}
.dg-lp .testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.dg-lp .star { color: var(--dg-sand); font-size: .875rem; }
.dg-lp .testimonial-quote {
  font-family: var(--dg-font-display);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dg-ink);
  line-height: 1.55;
  margin: 0 0 24px;
}
.dg-lp .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dg-lp .author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dg-font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dg-accent);
  flex-shrink: 0;
}
.dg-lp .author-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--dg-ink);
}
.dg-lp .author-role {
  font-size: .75rem;
  color: var(--dg-ink-60);
  margin-top: 2px;
}

/* ===========================
   FAQ
=========================== */
.dg-lp .faq-section { background: var(--dg-white); }
.dg-lp .faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.dg-lp .faq-item {
  border-bottom: 1px solid var(--dg-ink-10);
}
.dg-lp .faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--dg-font-body);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--dg-ink);
  transition: color .2s;
}
.dg-lp .faq-btn:hover { color: var(--dg-accent); }
.dg-lp .faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--dg-ink-30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: all .25s;
  color: var(--dg-ink-60);
}
.dg-lp .faq-item.open .faq-icon {
  background: var(--dg-ink);
  border-color: var(--dg-ink);
  color: var(--dg-white);
  transform: rotate(45deg);
}
.dg-lp .faq-answer {
  font-size: .875rem;
  color: var(--dg-ink-60);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--dg-ease-out), padding .3s;
}
.dg-lp .faq-item.open .faq-answer {
  max-height: 320px;
  padding-bottom: 20px;
}

/* ===========================
   FINAL CTA
=========================== */
.dg-lp .cta-section {
  background: var(--dg-cream);
  text-align: center;
}
.dg-lp .cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.dg-lp .cta-section .section-title { margin-bottom: 16px; }
.dg-lp .cta-section .section-lead { margin: 0 auto 36px; text-align: center; }
.dg-lp .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.dg-lp .cta-micro {
  font-size: .75rem;
  color: var(--dg-ink-30);
  letter-spacing: .02em;
  margin: 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1000px) {
  .dg-lp .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .dg-lp .hero-visual { max-width: 500px; }
  .dg-lp .pain-header { grid-template-columns: 1fr; gap: 32px; }
  .dg-lp .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .dg-lp .process-steps::before { display: none; }
  .dg-lp .pricing-grid { grid-template-columns: 1fr; }
  .dg-lp .pkg.featured { transform: none; }
  .dg-lp .pkg.featured:hover { transform: translateY(-4px); }
  .dg-lp .testimonials-grid { grid-template-columns: 1fr; }
  .dg-lp .faq-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Mobile-Fixes ===== */
@media (max-width: 680px) {
  /* Process-Steps 1-spaltig statt 2-spaltig – sonst zu gequetscht */
  .dg-lp .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dg-lp .process-step { padding: 0; }

  /* Pain-Cards einspaltig */
  .dg-lp .pain-grid { grid-template-columns: 1fr; }

  /* Hero-Action-Buttons untereinander */
  .dg-lp .hero-actions { flex-direction: column; }
  .dg-lp .hero-actions .btn { justify-content: center; width: 100%; }

  /* CTA-Buttons untereinander und zentriert */
  .dg-lp .cta-actions { flex-direction: column; align-items: center; }
  .dg-lp .cta-actions .btn { justify-content: center; width: 100%; max-width: 320px; }

  /* Trust-Bar darf stacken */
  .dg-lp .trust-bar-inner { gap: 16px; flex-direction: column; }
  .dg-lp .trust-signal { white-space: normal; text-align: center; }

  /* Pricing enger */
  .dg-lp .pricing-grid { gap: 12px; }
  .dg-lp .pkg { padding: 24px; }

  /* Section-Titel auf Mobile etwas kleiner und mit Wortumbruch */
  .dg-lp .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    word-break: break-word;
  }
  .dg-lp .section-lead { font-size: .9375rem; }

  /* CTA-Section horizontal absichern */
  .dg-lp .cta-section .section-title,
  .dg-lp .cta-section .section-lead { padding: 0 8px; }

  /* Inner-Padding reduzieren, damit keine Überhänge entstehen */
  .dg-lp .dg-container { padding: 0 16px; }
}

/* Globaler Overflow-Schutz: nichts ragt aus dem Viewport */
.dg-lp,
.dg-lp * {
  max-width: 100%;
  box-sizing: border-box;
}
.dg-lp section,
.dg-lp .trust-bar {
  overflow-x: hidden;
}
