@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- RESET & BASIS ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.5;
  overflow-x: clip;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Layout – 2 Spalten (Desktop) */
.two-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .two-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .main-content {
    flex: 1;
    max-width: 980px;
  }

  .sidebar-sticky {
    width: 268px;
    flex-shrink: 0;
  }
}

.sidebar-sticky .border-grey,
.sidebar-sticky .border-grey > div {
  min-width: 0;
  max-width: 100%;
}

.sidebar-product-head {
  text-align: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.sidebar-product-title {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-all;
  word-wrap: break-word;
  line-break: anywhere;
  hyphens: none;
  white-space: normal;
}

@media (max-width: 1023px) {
  .break-letters-mobile,
  h2.break-letters-mobile,
  .feature-row > div,
  .feature-row > div h3,
  .feature-row > div p,
  .feature-row > div blockquote,
  .sidebar-product-title,
  .checklist-row span,
  .step-row > div:last-child,
  .btn-gold {
    overflow-wrap: anywhere;
    word-break: break-all;
    hyphens: auto;
  }

  .checklist-row span,
  .step-row > div:last-child {
    flex: 1;
    min-width: 0;
  }

  .checklist-row,
  .step-row {
    align-items: flex-start;
  }
}

/* sticky sidebar */
.sticky-top {
  position: sticky;
  top: 2rem;
}

/* gemeinsame Boxen */
.section-box {
  padding: 1.25rem 0.625rem;
}

.flex-between {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.block-link {
  display: block;
  cursor: pointer;
}

.block-link.promo-row,
.block-link.trust-block,
.block-link.steps-block {
  display: flex;
  flex-direction: column;
}

.block-link.feature-row {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-row img {
  width: 400px;
  height: 400px;
  max-width: 400px;
  flex-shrink: 0;
  object-fit: cover;
}

.feature-row > div {
  flex: 1;
  min-width: 0;
}

.promo-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promo-row img {
  width: 100%;
  display: block;
}

@media (min-width: 1024px) {
  .promo-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .promo-row img {
    flex: 1;
    min-width: 0;
  }
}

.trust-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .trust-block {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem 2rem;
  }

  .trust-block > .flex-between:first-child,
  .trust-block > h3,
  .trust-block > p {
    flex: 1 1 100%;
  }

  .trust-block .checklist-row {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    justify-content: flex-start;
  }
}

.steps-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.steps-block-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.steps-block-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.steps-block-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .steps-block-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .steps-block-list {
    order: 1;
    flex: 1;
  }

  .steps-block-img {
    order: 2;
    width: 400px;
    max-width: 400px;
  }
}

.cta-row-content {
  text-align: center;
}

.cta-row-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  margin: 1rem 0;
  width: auto;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .cta-row .cta-row-content {
    text-align: left;
  }
}

@media (max-width: 1023px) {
  .block-link.feature-row {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-row img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .feature-row > div {
    min-width: 0;
  }
}

.btn-gold {
  background-color: #c7a445;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0.375rem;
  transition: opacity 0.2s;
  display: inline-block;
  width: 100%;
}

.btn-gold:hover {
  opacity: 0.9;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.star-icon {
  width: 1rem;
  height: 1rem;
  background-color: #facc15;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.border-grey {
  border: 1px solid #d9d9d9;
}

.bg-soft {
  background-color: #f0f2f1;
}

.bg-cream {
  background-color: #faf6ee;
}

/* Testimonial quote style */
blockquote {
  border-left: 2px solid #7e8c8d;
  padding-left: 1rem;
  margin: 0.75rem 0;
}

/* video / review grid */
.video-grid-horizontal {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.5rem;
}

.video-card {
  flex: 0 0 240px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
  cursor: pointer;
}

.video-card .aspect {
  position: relative;
  padding-bottom: 172.41%;
}

.video-card .inner-abs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

@media (min-width: 768px) {
  .grid-2-cols {
    gap: 1.25rem;
  }
}

.btn-play {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  cursor: pointer;
  z-index: 2;
}

/* counter timer */
.countdown {
  color: #dc2626;
  font-weight: 700;
}

/* fixed CTA bar (main page) */
.fixed-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0.75rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
  z-index: 1000;
  text-align: center;
}

.fixed-cta-bar .fixed-cta-inner {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  box-sizing: border-box;
}

.fixed-cta-bar .btn-gold {
  padding: 0.65rem 0.5rem;
  font-size: clamp(0.8125rem, 3.2vw, 1.25rem);
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: anywhere;
}

body.has-fixed-cta {
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 767px) {
  .fixed-cta-bar {
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
  }

  body.has-fixed-cta {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }
}

/* footer */
.footer-bg {
  background-color: #f5f5f5;
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 2fr 1fr;
    align-items: start;
  }
}

.footer-col b {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-col p {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
}

.footer-col a {
  color: #374151;
  text-decoration: underline;
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: #111827;
}

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

.footer-nav li + li {
  margin-top: 0.5rem;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #6b7280;
  text-decoration: underline;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #374151;
}

/* legal pages */
.wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.wrapper h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.wrapper p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.wrapper b {
  font-weight: 600;
}

.legal-content {
  word-break: break-word;
}

/* ad-badge */
.header-ad {
  display: flex;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.ad-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  background: #f3f4f6;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* responsive video */
.video-responsive {
  position: relative;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}

.video-responsive iframe,
.video-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  max-width: 500px;
  width: 90%;
  background: black;
  border-radius: 1rem;
  position: relative;
}

.close-modal {
  position: absolute;
  top: -2rem;
  right: 0;
  background: white;
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}