/* ==============================================================
   LANDING PAGE – design-geschenke.shop
   Version 3 – passend zum Shop-CI
   - Hintergrund: Weiß (Theme-Standard)
   - Headlines: Open Sans Condensed (wie im Shop)
   - Text: Merriweather (wie im Shop)
   - Akzent: Altrosé #d6b9b1
   ============================================================== */

/* ==============================================================
   GLOBAL-OVERRIDES – greifen NUR auf der LP (.dg-lp existiert)
============================================================== */

/* Theme-Wrapper-Anpassungen: Padding entfernen + Floats clearen */
body:has(.dg-lp) .sixteen.columns {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-top: 0 !important;
  width: 100% !important;
  float: none !important;
  clear: both !important;
  overflow: hidden !important;
}

body:has(.dg-lp) .container,
body:has(.dg-lp) #container,
body:has(.dg-lp) .row {
  padding-top: 0 !important;
}

/* ==============================================================
   SCOPED LANDINGPAGE STYLES
============================================================== */

.dg-lp {
  /* --- CI-Farben --- */
  --dg-ink:        #34383b;
  --dg-ink-70:     rgba(52, 56, 59, .78);
  --dg-ink-60:     rgba(52, 56, 59, .65);
  --dg-ink-30:     rgba(52, 56, 59, .3);
  --dg-ink-10:     rgba(52, 56, 59, .12);

  --dg-bg:         #ffffff;
  --dg-bg-soft:    #faf8f5;
  --dg-bg-soft2:   #f3ede8;

  --dg-accent:     #d6b9b1;
  --dg-accent-l:   #ecdcd6;
  --dg-accent-d:   #b8928a;

  --dg-line:       #ece6df;

  /* --- Typografie (an Shop-CI angelehnt) --- */
  --dg-font-display: 'Open Sans Condensed', 'Arial Narrow', sans-serif;
  --dg-font-body:    'Merriweather', Georgia, serif;
  --dg-font-ui:      'PT Sans Narrow', 'Arial Narrow', sans-serif;

  /* --- Layout --- */
  --dg-max-w: 1100px;
  --dg-r-sm: 4px;
  --dg-r-md: 8px;
  --dg-r-lg: 14px;

  --dg-ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* --- Basis --- */
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--dg-bg);
  color: var(--dg-ink);
  font-family: var(--dg-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.dg-lp *,
.dg-lp *::before,
.dg-lp *::after { box-sizing: border-box; }

.dg-lp,
.dg-lp * { max-width: 100%; }

.dg-lp section { overflow-x: hidden; }

.dg-lp img { max-width: 100%; display: block; }
.dg-lp a { color: inherit; text-decoration: none; }

/* Container */
.dg-lp .dg-container {
  max-width: var(--dg-max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 100%;
}

/* Reveal-Animation deaktiviert (Theme-Probleme) */
.dg-lp .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ===========================
   BUTTONS – im Stil der Shop-Buttons (PT Sans Narrow, Uppercase)
=========================== */
.dg-lp .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dg-font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--dg-r-sm);
  padding: 14px 28px;
  cursor: pointer;
  transition: all .25s var(--dg-ease);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.dg-lp .btn-primary {
  background: var(--dg-ink);
  color: #fff;
}
.dg-lp .btn-primary:hover {
  background: var(--dg-accent-d);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px 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: #fff;
}
.dg-lp .btn-accent {
  background: var(--dg-accent);
  color: #fff;
}
.dg-lp .btn-accent:hover {
  background: var(--dg-accent-d);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(214,185,177,.45);
}

.dg-lp .arrow {
  display: inline-block;
  font-style: normal;
  transition: transform .25s var(--dg-ease);
}
.dg-lp .btn:hover .arrow { transform: translateX(4px); }

/* ===========================
   TRUST BAR
=========================== */
.dg-lp .trust-bar {
  background: var(--dg-bg-soft);
  border-bottom: 1px solid var(--dg-line);
  padding: 16px 0;
  width: 100%;
  display: block;
}
.dg-lp .trust-bar-inner {
  display: flex;
  flex-direction: row !important;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.dg-lp .trust-signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--dg-font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dg-ink-60);
  white-space: nowrap;
  flex: 0 0 auto;
}
.dg-lp .trust-signal-icon { font-size: 16px; line-height: 1; }

/* ===========================
   SECTION BASE
=========================== */
.dg-lp .dg-section { padding: clamp(40px, 6vw, 72px) 0; }

.dg-lp .section-eyebrow {
  font-family: var(--dg-font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dg-accent-d);
  margin: 0 0 14px;
}
.dg-lp .section-title {
  font-family: var(--dg-font-display);
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--dg-ink);
  margin: 0;
}
.dg-lp .section-title em {
  font-style: normal;
  color: var(--dg-accent-d);
}
.dg-lp .section-lead {
  font-family: var(--dg-font-body);
  font-size: 14px;
  color: var(--dg-ink-70);
  max-width: 520px;
  margin: 16px 0 0;
  line-height: 1.85;
}

/* ===========================
   PAIN SECTION
=========================== */
.dg-lp .pain-section { background: var(--dg-bg-soft); }
.dg-lp .pain-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}
.dg-lp .pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.dg-lp .pain-card {
  background: #fff;
  border: 1px solid var(--dg-line);
  border-radius: var(--dg-r-md);
  padding: 26px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.dg-lp .pain-card:hover {
  border-color: var(--dg-accent-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52,56,59,.06);
}
.dg-lp .pain-icon { font-size: 22px; margin-bottom: 12px; line-height: 1; }
.dg-lp .pain-card-title {
  font-family: var(--dg-font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dg-ink);
  margin: 0 0 8px;
}
.dg-lp .pain-card-text {
  font-family: var(--dg-font-body);
  font-size: 13px;
  color: var(--dg-ink-70);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   PROCESS SECTION
=========================== */
.dg-lp .process-section { background: #fff; }
.dg-lp .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.dg-lp .process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--dg-accent-l);
  z-index: 0;
}
.dg-lp .process-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}
.dg-lp .process-num-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--dg-accent-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-accent);
  border-color: var(--dg-accent);
}
.dg-lp .process-num {
  font-family: var(--dg-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dg-accent-d);
  transition: color .3s;
}
.dg-lp .process-step:hover .process-num { color: #fff; }
.dg-lp .process-title {
  font-family: var(--dg-font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dg-ink);
  margin: 0 0 8px;
}
.dg-lp .process-text {
  font-family: var(--dg-font-body);
  font-size: 13px;
  color: var(--dg-ink-70);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   PRICING SECTION (dunkel)
=========================== */
.dg-lp .pricing-section {
  background: var(--dg-ink);
  color: #fff;
}
.dg-lp .pricing-section .section-eyebrow { color: var(--dg-accent); }
.dg-lp .pricing-section .section-title { color: #fff; }
.dg-lp .pricing-section .section-title em { color: var(--dg-accent); }
.dg-lp .pricing-section .section-lead { color: rgba(255,255,255,.65); }
.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(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--dg-r-lg);
  padding: 30px;
  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: #fff;
  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-accent);
  color: #fff;
  font-family: var(--dg-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.dg-lp .pkg-name {
  font-family: var(--dg-font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dg-accent);
  margin: 0 0 6px;
}
.dg-lp .pkg.featured .pkg-name { color: var(--dg-accent-d); }
.dg-lp .pkg-subtitle {
  font-family: var(--dg-font-body);
  font-size: 13px;
  opacity: .65;
  margin: 0 0 24px;
}
.dg-lp .pkg.featured .pkg-subtitle { opacity: .75; color: var(--dg-ink); }
.dg-lp .pkg-price {
  font-family: var(--dg-font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 0 0 4px;
}
.dg-lp .pkg.featured .pkg-price { color: var(--dg-ink); }
.dg-lp .pkg-price-note {
  font-family: var(--dg-font-body);
  font-size: 12px;
  opacity: .5;
  margin: 0 0 24px;
}
.dg-lp .pkg.featured .pkg-price-note { opacity: .55; color: var(--dg-ink); }
.dg-lp .pkg-divider {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin-bottom: 22px;
}
.dg-lp .pkg.featured .pkg-divider { background: var(--dg-ink-10); }
.dg-lp .pkg-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dg-lp .pkg-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--dg-font-body);
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.dg-lp .pkg.featured .pkg-feature { color: var(--dg-ink-70); }
.dg-lp .pkg-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(214,185,177,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 10px;
  color: var(--dg-accent);
}
.dg-lp .pkg.featured .pkg-check {
  background: var(--dg-accent-l);
  color: var(--dg-accent-d);
}
.dg-lp .pkg-note {
  font-family: var(--dg-font-body);
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: 36px;
}

/* Buttons in dunkler Pricing-Sektion */
.dg-lp .pricing-section .btn-outline {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.25);
}
.dg-lp .pricing-section .btn-outline:hover {
  background: #fff;
  color: var(--dg-ink);
  border-color: #fff;
}

/* ===========================
   TESTIMONIALS
=========================== */
.dg-lp .testimonials-section { background: var(--dg-bg-soft); }
.dg-lp .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.dg-lp .testimonial {
  background: #fff;
  border-radius: var(--dg-r-lg);
  padding: 30px;
  border: 1px solid var(--dg-line);
  transition: box-shadow .3s, transform .3s;
}
.dg-lp .testimonial:hover {
  box-shadow: 0 12px 32px rgba(52,56,59,.08);
  transform: translateY(-3px);
}
.dg-lp .testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.dg-lp .star { color: var(--dg-accent); font-size: 14px; }
.dg-lp .testimonial-quote {
  font-family: var(--dg-font-body);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--dg-ink);
  line-height: 1.7;
  margin: 0 0 22px;
}
.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-accent-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dg-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--dg-accent-d);
  flex-shrink: 0;
}
.dg-lp .author-name {
  font-family: var(--dg-font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dg-ink);
}
.dg-lp .author-role {
  font-family: var(--dg-font-body);
  font-size: 12px;
  color: var(--dg-ink-60);
  margin-top: 2px;
}

/* ===========================
   FAQ
=========================== */
.dg-lp .faq-section { background: #fff; }
.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-line);
}
.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-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dg-ink);
  transition: color .2s;
}
.dg-lp .faq-btn:hover { color: var(--dg-accent-d); }
.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: 12px;
  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: #fff;
  transform: rotate(45deg);
}
.dg-lp .faq-answer {
  font-family: var(--dg-font-body);
  font-size: 13px;
  color: var(--dg-ink-70);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--dg-ease), padding .3s;
}
.dg-lp .faq-item.open .faq-answer {
  max-height: 320px;
  padding-bottom: 22px;
}

/* ===========================
   FINAL CTA
=========================== */
.dg-lp .cta-section {
  background: var(--dg-bg-soft2);
  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 32px; text-align: center; }
.dg-lp .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.dg-lp .cta-micro {
  font-family: var(--dg-font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dg-ink-30);
  margin: 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1000px) {
  .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; }
}

@media (max-width: 680px) {
  .dg-lp .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .dg-lp .process-step { padding: 0; }
  .dg-lp .pain-grid { grid-template-columns: 1fr; }
  .dg-lp .cta-actions { flex-direction: column; align-items: center; }
  .dg-lp .cta-actions .btn { justify-content: center; width: 100%; max-width: 320px; }
  .dg-lp .trust-bar-inner { gap: 14px; flex-direction: column; }
  .dg-lp .trust-signal { white-space: normal; text-align: center; }
  .dg-lp .pricing-grid { gap: 12px; }
  .dg-lp .pkg { padding: 24px; }
  .dg-lp .section-title {
    font-size: clamp(22px, 7vw, 32px);
    word-break: break-word;
  }
  .dg-lp .section-lead { font-size: 13px; }
  .dg-lp .cta-section .section-title,
  .dg-lp .cta-section .section-lead { padding: 0 8px; }
  .dg-lp .dg-container { padding: 0 16px; }
}
