@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-VariableFont_wght.otf);
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif";
  src: url(../fonts/NotoSerif-VariableFont_wdth\,wght.ttf);
  font-display: swap;
}

/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== FUNNELISH COMPATIBILITY FIX ========== */
.main_wrapper_main.desktop_grid,
.main_wrapper_main.mobile_grid {
  display: none !important;
}

/* ========== BASE STYLES (Whitespace-Optimiert v3.4) ========== */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #303030;
  background: #fff;
}

/* ========== LAYOUT ========== */
.wrapper {
  max-width: 1170px;
  margin: 0 auto;
  padding: 25px 20px;
  display: flex;
  gap: 40px;
}

.content {
  flex: 1;
  max-width: 720px;
}

.sidebar-space {
  width: 320px;
  flex-shrink: 0;

}

/* ========== IMAGES (CLS-OPTIMIERT) ========== */
.content-img {
  margin: 24px 0;
}

.content-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #f0f0f0;
}

.img-row {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

.img-row img {
  flex: 1;
  width: 50%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}

/* ========== STICKY SIDEBAR (Desktop) ========== */
.sticky-box {
  position: fixed;
  top: 25px;
  right: calc((100vw - 1170px) / 2 + 20px);
  width: 300px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  z-index: 100;
}

@media (max-width: 1200px) {
  .sticky-box {
    right: 20px;
  }
}

.sticky-box__header {
  text-align: center;
  margin-bottom: 12px;
}

.sticky-box__label {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.sticky-box__stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 6px 0;
}

.sticky-box__reviews {
  font-size: 13px;
  color: #666;
}

.sticky-box__img {
  margin: 14px 0;
  position: relative;
}

.sticky-box__img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #f0f0f0;
}

.sticky-box__features {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.sticky-box__feature {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.45;
  align-items: flex-start;
}

.sticky-box__icon {
  width: 24px;
  height: 24px;
  background: #4CAF50;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.sticky-box__feature-text {
  flex: 1;
  color: #000;
}

.sticky-box__feature strong {
  color: #000;
}

.sticky-box__feature:last-child {
  margin-bottom: 16px;
}

.sticky-box__cta {
  display: block;
  width: 100%;
  background: #FB162B;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.sticky-box__cta:hover {
  background: #e0101f;
}

/* ========== STICKY BOTTOM BAR (Mobile) ========== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

.sticky-bar__cta {
  display: block;
  width: 100%;
  background: #FB162B;
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.sticky-bar__cta:hover {
  background: #e0101f;
}

/* ========== TYPOGRAPHY ========== */
h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  line-height: 42px;
  color: #000;
  margin-bottom: 14px;
  font-weight: 700;
}

.meta {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 13px;
  color: #858383;
  margin-bottom: 16px;
}

.meta span {
  margin: 0 6px;
}

.subheadline {
  font-size: 20px;
  line-height: 30px;
  color: #000;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #000;
  margin: 2.2em 0 0.75em;
  line-height: 1.35;
  font-weight: 700;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 1.6em 0 0.5em;
  line-height: 30px;
}

p {
  margin-bottom: 1.5em;
  color: #000;
}

strong {
  color: #000;
}

blockquote {
  font-style: italic;
  font-size: 18px;
  color: #000;
  border-left: 3px solid #666;
  padding: 14px 18px;
  margin: 20px 0;
  background: #f8f9fa;
  border-radius: 0 6px 6px 0;
}

/* ========== LISTS ========== */
.check-list {
  list-style: none;
  margin: 16px 0;
}

.check-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

/* ========== COMPARISON TABLE ========== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 16px;
}

.compare-table th {
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.compare-table th.bad {
  background: #ffebee;
  color: #FB162B;
}

.compare-table th.good {
  background: #e8f5e9;
  color: #2E7D32;
}

.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e5e5;
}

.compare-table td.bad {
  background: #fff5f5;
}

.compare-table td.good {
  background: #f5fff5;
}

/* ========== CTA BOX ========== */
.cta-box {
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 30px;
  margin: 2.5em 0;
  text-align: center;
}

.cta-box__headline {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.cta-box__sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 0;
}

.cta-box__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FB162B;
  color: #fff;
  padding: 20px;
  border-radius: 9px;
  text-decoration: none;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 0.28px;
  margin: 40px 30px;
}

.cta-box__btn:hover {
  background: #e0101f;
}

.cta-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  color: #666;
}

/* ========== HIGHLIGHT ========== */
.highlight-box {
  background: #FFF9C4;
  color: #000;
  font-weight: 600;
  text-align: center;
  padding: 16px 20px;
  border-radius: 6px;
  margin: 24px 0;
  border: 1px solid #F0E68C;
}

/* ========== VERIFIED REVIEWS (Card Design) ========== */
.reviews-grid {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
  align-items: flex-start;
}

.review-card:first-child {
  padding-top: 0;
}

.review-card:last-child {
  border-bottom: none;
}

.review-card__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f0f0;
}

.review-card__body {
  flex: 1;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.review-card__name {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

.review-card__verified {
  font-size: 12px;
  color: #2E7D32;
  background: #e8f5e9;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.review-card__stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: #303030;
  margin-bottom: 0;
  font-style: italic;
}

.review-card__text p {
  margin-bottom: 0;
  font-size: 16px;
}

.reviews-summary {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 20px;
}

.reviews-summary__stars {
  color: #F5A623;
  font-size: 24px;
  letter-spacing: 2px;
}

.reviews-summary__text {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
  margin-bottom: 0;
}

/* ========== URGENCY ========== */
.urgency-section {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.urgency-line {
  font-size: 15px;
  color: #000;
  margin: 0;
  padding: 14px 18px;
  background: #fff5f5;
  border: 1px solid #fce0e0;
  border-radius: 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.45;
}

.urgency-line .urgency-icon {
  flex-shrink: 0;
  line-height: 1;
}

.urgency-line .urgency-text {
  flex: 1;
}

/* ========== FAQ (CSS-Only Accordion) ========== */
.faq {
  margin: 20px 0 30px;
}

.faq details {
  border-bottom: 1px solid #e5e5e5;
}

.faq details:first-of-type {
  border-top: 1px solid #e5e5e5;
}

.faq details summary {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding: 18px 40px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}

.faq details summary::-webkit-details-marker {
  display: none;
}

.faq details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: #666;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details .faq-answer {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.65;
  color: #303030;
}

.faq details .faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
  color: #303030;
}

/* ========== DISCLAIMER ========== */
.disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
  font-size: 12px;
  color: #999;
  line-height: 1.55;
}

.disclaimer a {
  color: #666;
  margin-right: 16px;
}

/* ========================================== */
/* ========== MOBILE RESPONSIVE ========== */
/* ========================================== */
@media (max-width: 900px) {
  .sticky-box {
    display: none;
  }

  .sidebar-space {
    display: none;
  }

  .sticky-bar {
    display: block;
  }

  body {
    padding-bottom: max(90px, calc(70px + env(safe-area-inset-bottom)));
  }

  .wrapper {
    padding: 20px 16px;
  }

  .content {
    max-width: 100%;
  }

  body {
    font-size: 16px;
    line-height: 1.65;
  }

  h1 {
    font-size: 24px;
    line-height: 32px;
  }

  h2 {
    font-size: 20px;
    margin: 2em 0 0.7em;
  }

  h3 {
    font-size: 18px;
    margin: 1.5em 0 0.5em;
  }

  .subheadline {
    font-size: 17px;
    line-height: 27px;
  }

  .cta-box {
    padding: 20px;
  }

  .cta-box__btn {
    margin: 30px 0;
    padding: 16px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* Compare table → stacked cards on mobile */
  .compare-table thead {
    display: none;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table tr {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
  }

  .compare-table td {
    padding: 12px 16px;
    font-size: 15px;
    border-bottom: none;
  }

  .compare-table td.bad {
    background: #fff5f5;
    color: #999;
    font-size: 14px;
    position: relative;
    padding-left: 30px;
  }

  .compare-table td.bad::before {
    content: "✗ ";
    color: #FB162B;
    font-weight: 700;
    position: absolute;
    left: 14px;
  }

  .compare-table td.good {
    background: #f0faf0;
    font-size: 15px;
    position: relative;
    padding-left: 30px;
  }

  .compare-table td.good::before {
    content: "✓ ";
    color: #2E7D32;
    font-weight: 700;
    position: absolute;
    left: 14px;
  }

  .urgency-line {
    font-size: 14px;
    padding: 12px 14px;
  }

  .meta {
    font-size: 12px;
  }

  .meta span {
    margin: 0 4px;
  }

  .cta-box__headline {
    font-size: 18px;
  }

  .cta-box__sub {
    font-size: 14px;
  }

  /* Review cards mobile */
  .review-card__img {
    width: 60px;
    height: 60px;
  }

  .review-card__name {
    font-size: 15px;
  }

  .review-card__text {
    font-size: 15px;
  }

  .review-card {
    gap: 14px;
    padding: 20px 0;
  }

  /* FAQ mobile */
  .faq details summary {
    font-size: 16px;
    padding: 16px 36px 16px 0;
  }
}