*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  /* font-family: 'Inter', sans-serif; */
  color: #fbe7cf;
  background-color: #210804;
  background-image: linear-gradient(to bottom,
      rgba(15, 3, 0, 0.9),
      rgba(10, 2, 0, 0.98)),
    url("./Material/Background.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

/* h3 {
  font-weight: normal;
} */

.page {
  max-width: 460px;
  margin: 0 auto;
  padding: 16px 16px 180px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 0;
  width: 100%;
  overflow: hidden;
}

.top-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 6px 0 12px;
}

.top-links a {
  color: #f7d7b4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}


/* blog section styling */
.blog .section-inner {
  position: relative;
  text-align: center;
}

.blog h2,
.blog p,
.blog ul {
  text-align: left;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
}

.blog-bild {
  max-width: 140px;
  width: 25%;
  height: auto;
}

.blog-heading {
  margin: 0;
  font-size: 1.5rem;
  color: #ffe9c7;
}

.blog-subline {
  margin: 10px 0 0;
  font-size: 1.1rem;
  color: #f7d7b4;
  text-align: center !important;
}

.blog-button {
  display: inline-block;
  margin-top: 12px;
}

.blog-button .blog-icon {
  max-width: 100%;
  height: auto;
}

.posts-grid {
  display: grid;
  gap: 18px;
}

.post-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.post-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.post-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.post-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-content {
  padding: 18px 18px 22px;
}

.post-card-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd8a8;
}

.post-card-content h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #fff4dd;
}

.post-card-excerpt {
  margin: 0;
  line-height: 1.7;
  color: #f1d8b4;
}

@media (min-width: 700px) {
  .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.article-header-figure {
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 18px;
}

.article-header-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.article-header-figure figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #f7d7b4;
  text-align: center;
}

/* responsive tweaks mirroring video section */
@media (max-width: 519px) {
  .blog .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
  }

  .blog-header {
    flex-direction: row;
  }

  .blog-bild {
    position: static;
    transform: none;
    margin-right: 10px;
    max-width: 80px;
  }

  .blog-heading {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .blog-subline {
    margin-top: 8px;
    order: 3;
  }

  .blog-button {
    order: 4;
  }
}

.logo {
  max-width: 200px;
  width: 50%;
  height: auto;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.65));
}

main {
  background: radial-gradient(circle at top, #5e2610 0, #2b0c03 55%, #160402 100%);
  border-radius: 24px;
  padding: 12px 10px 16px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}

.section {
  position: relative;
}

.section+.section {
  margin-top: 18px;
}

.section-inner {
  padding: 12px 14px 14px;
  background: radial-gradient(circle at top, #7d3a1c 0, #3a1205 55%, #1b0501 100%);
  border-radius: 20px;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 210, 164, 0.18);
  position: relative;
  overflow: hidden;
}

.hero .section-inner {
  padding-top: 18px;
  /* display: grid; */
  grid-template-columns: minmax(140px, 180px) 1fr;
  gap: 18px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.hero-logo-wrapper {
  display: flex;
  justify-content: flex-start;
  margin: 0;
}

.hero-logo-wrapper .logo {
  width: 140px;
  max-width: 100%;
  height: auto;
}

.eyebrow {
  text-align: left;
  /* font-size: 0.86rem; */
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffe5c2;
  margin: 0;
}

.eyebrow-highlight {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-right {
  display: grid;
  gap: 14px;
}

.hero-title {
  font-family: "Playfair Display", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem;
  text-align: left;
  color: #ffe5c2;
  margin: 0;
  font-weight: 100;
}

.hero-subtitle {
  text-align: left;
  font-size: 1rem;
  margin: 0;
  color: #fbd9b5;
}

.hero .section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.05;
  text-align: left;
  width: 100%;
  max-width: none;
}

.hero-form-section {
  width: 85%;
  margin-bottom: 12px;
  margin-left: 0;
}

@media (max-width: 520px) {
  .hero-form-section {
    width: 100%;
  }
}

.hero-form-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffe9c7;
  margin: 0;
  text-align: left;
  margin-bottom: 8px;
}

.social-proof-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* .social-proof-title { */
/* font-size: 1rem; */
/* font-weight: 700; */
/* color: #ffe9c7; */
/* margin: 0 0 12px; */
/* text-align: center; */
/* } */

.testimonials {
  display: grid;
  gap: 12px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
}

.testimonial-text {
  margin: 0;
  color: #f7d7b4;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
}

.facts-section {
  padding: 20px 0;
}

.facts-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.fact-icon-card {
  /* background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; */
  padding: 14px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.fact-icon-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto;
}

.fact-icon-card strong {
  color: #ffe9c7;
  font-size: 0.95rem;
  display: block;
}

.fact-icon-card p {
  margin: 0;
  color: #f5d1a9;
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hero-copy p {
  margin: 0;
  color: #f7d7b4;
  font-size: 1rem;
  line-height: 1.7;
  padding-right: 130px;
}

.hero-bullet-list,
.hero-assurance-list {
  display: none;
}

.hero-form {
  gap: 12px;
}

.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 16px 6px;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 1;
  width: 100%;
  min-width: 0;
}

.badge-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 16px;
  background: #3a1a0f;
  border: 1px solid rgba(255, 210, 164, 0.3);
  border-radius: 12px;
  margin-left: auto;
  max-width: 100%;
  min-width: 0;
}

.badge-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd58c;
  text-align: right;
  line-height: 1.2;
  overflow-wrap: anywhere;
  white-space: normal;
}

@media (max-width: 760px) {
  .badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 480px) {
  .badge-text {
    font-size: 0.55rem;
  }
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #f7d7b4;
}

.feature-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.assurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  /* border-radius: 999px;
  background: rgba(255, 255, 255, 0.08); */
  color: #ffdeb3;
  font-size: 0.9rem;
}

.assurance-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.hero-consent {
  margin: 0;
  font-size: 0.88rem;
  color: #f5e1c6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-consent input {
  margin-top: 0.2em;
}

.highlight .variety-image {
  margin-top: 14px;
}

.facts-section .fact-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.fact-card {
  display: none;
}

.fact-card-image {
  display: none;
}

.fact-card strong {
  display: none;
  font-size: 1rem;
  display: block;
}

.fact-card p {
  margin: 0;
  color: #f5d1a9;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .hero-form-row {
    grid-template-columns: 1fr;
  }

  .hero-header {
    justify-content: space-between;
    padding: 12px 16px;
  }

  .header-left,
  .header-right {
    flex: 0 0 auto;
  }

  .badge-text {
    font-size: 0.65rem;
    max-width: 90px;
  }

  .hero-features,
  .hero-assurance,
  .hero-consent {
    text-align: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-assurance {
    justify-content: center;
  }

  .hero-consent {
    justify-content: center;
  }

  .sticky-cta-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sticky-cta-col-1,
  .sticky-cta-col-2,
  .sticky-cta-col-3 {
    grid-column: 1;
  }

  .sticky-cta-col-3 .btn {
    width: 100%;
  }

  .sticky-cta-bottom {
    grid-column: 1;
  }
}

@media (min-width: 800px) {
  .facts-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {

  .hero-left,
  .hero-right {
    align-items: center;
  }

  .hero-subtitle,
  .eyebrow {
    text-align: center;
  }

  .sticky-cta-description {
    display: none;
  }

  .sticky-cta-proof-icon {
    display: none;
  }

  .highlight-badge {
    display: none;
  }
}

h2 {
  font-family: "Playfair Display", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  /* color: #ffe9c7; */
  margin: 0 0 6px;
}

.subtitle {
  text-align: center;
  font-size: 0.9rem;
  margin: 0 0 10px;
  color: #f7d7b4;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lead-form-inline {
  margin-top: 8px;
}

.lead-form input[type="email"] {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 204, 153, 0.85);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #3b1405;
  background: linear-gradient(to bottom, #ffe9c9, #ffd6a2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(0, 0, 0, 0.55);
}

.lead-form input[type="email"]::placeholder {
  color: #9d6a39;
}

.lead-form input[type="email"]:focus {
  outline: 2px solid #ffbf66;
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  box-shadow:
    0 3px 0 #7b2512,
    0 8px 16px rgba(0, 0, 0, 0.8);
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease,
    filter 0.1s ease;
}

.btn-primary {
  background: linear-gradient(to bottom, #ffb75e, #ff7b39);
  color: #4b1403;
}

.btn-cta {
  background: linear-gradient(to bottom, #ffb95f, #f74b2b);
  color: #3c0b02;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(2px);
  box-shadow:
    0 1px 0 #7b2512,
    0 4px 10px rgba(0, 0, 0, 0.8);
}

.form-note {
  margin: 0;
  font-size: 0.78rem;
  color: #f5d2ab;
}

.form-message {
  min-height: 1.1em;
  font-size: 0.8rem;
  margin: 0;
}

.form-message--success {
  color: #b5ffb0;
}

.form-message--error {
  color: yellow;
}

.variety-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 230, 200, 0.2);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

.step {
  text-align: center;
  padding: 8px 8px 10px;
  /* border-radius: 16px;
  background: radial-gradient(circle at top, #7b3a1d 0, #3c1306 55%, #1a0502 100%);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 210, 164, 0.12); */
}

.step h3 {
  font-size: 0.95rem;
  margin: 6px 0 4px;
  color: #ffe7c4;
}

.step p {
  margin: 0;
  font-size: 0.8rem;
  color: #f6d3b0;
}

.step-image {
  display: block;
  width: 90px;
  height: auto;
  margin: 0 auto;
  /* border-radius: 50%;
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.85),
    0 0 0 3px rgba(255, 222, 188, 0.4); */
}

.step-arrow {
  display: flex;
  justify-content: center;
}

.step-arrow-image {
  width: 32px;
  height: auto;
}

@media (max-width: 760px) {
  .step-arrow-image {
    transform: rotate(90deg);
    transform-origin: center;
  }
}

.price-card {
  text-align: center;
  margin: 10px auto 6px;
  padding: 10px 10px 12px;
  max-width: 320px;
  border-radius: 18px;
  background: linear-gradient(to bottom, #ffddac, #f3b673);
  color: #3a1403;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.9),
    0 0 0 2px rgba(125, 62, 26, 0.5);
}

.price-title {
  margin: 0 0 4px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a3a13;
}

.price-amount {
  margin: 0 0 2px;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.3rem;
}

.price-subline {
  margin: 0;
  font-size: 0.86rem;
  color: #6a3512;
}

.disclaimer {
  margin: 6px 0 0;
  font-size: 0.78rem;
  text-align: center;
  color: #f8d4ae;
}

.footer-layout {
  display: block;
}

.page-footer {
  text-align: center;
  margin-top: 10px;
  font-size: 0.75rem;
  color: #f1cda8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.site-footer {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(248, 207, 163, 0.35);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 6px;
}

.site-footer a {
  color: #f7d7b4;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.site-footer a:hover {
  color: #ffb75e;
  background: rgba(0, 0, 0, 0.25);
}

.site-footer__copy {
  display: block;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 460px);
  background: linear-gradient(180deg, rgba(61, 21, 11, 0.98), rgba(22, 8, 4, 0.98));
  border: 0 solid transparent;
  border-radius: 28px;
  padding: 0;
  margin-top: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  z-index: 900;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.3s ease-in-out, opacity 0.25s ease-in-out;
}

.sticky-cta.show {
  border: 2px solid #ffb95f;
  padding: 10px;
  margin-top: 10px;
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta.hide-near-footer {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  border-width: 0;
  padding: 0;
  margin-top: 0;
}

.sticky-cta__inner {
  display: grid;
  gap: 12px;
}

.sticky-cta__copy {
  display: none !important;
}

.sticky-cta__eyebrow {
  display: none !important;
}

.sticky-cta__title {
  display: none !important;
}

.sticky-cta__proof {
  display: none !important;
}

.sticky-cta-assurance {
  margin: 10px 0 0;
  color: #f7d7b4;
  font-size: 0.95rem;
  line-height: 1.4;
}

.sticky-cta-form {
  display: block;
}

.sticky-cta-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sticky-cta-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta-left {
  text-align: left;
}

.sticky-cta-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cta-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.sticky-cta-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffe9c7;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.sticky-cta-title-icon {
  width: 64px;
}

.sticky-cta-description {
  font-size: 0.85rem;
  color: #f7d7b4;
  margin: 0;
  line-height: 1.4;
}

.sticky-cta-middle {
  text-align: center;
}

.sticky-cta-proof-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto;
}

.sticky-cta-proof {
  font-size: 0.9rem;
  color: #f7d7b4;
  line-height: 1.4;
  margin: 0;
}

.sticky-cta-right {
  text-align: left;
}

.sticky-cta-form-group {
  display: grid;
  gap: 8px;
}

.sticky-cta-form-group input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 16px;
  font-size: 0.9rem;
  background: linear-gradient(to bottom, #ffe9c9, #ffd6a2);
  color: #3b1405;
}

.sticky-cta-form-group input::placeholder {
  color: #9d6a39;
}

.sticky-cta-form-group .btn {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.sticky-cta-footer-content {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta-consent {
  margin: 0;
  font-size: 0.78rem;
  color: #f5e1c6;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.sticky-cta-consent input {
  margin-top: 0.25em;
  flex-shrink: 0;
}

.sticky-cta-consent a {
  color: #ffd58c;
}

.sticky-cta-consent a:hover {
  color: #ffb75e;
}

.sticky-cta-assurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  color: #f7d7b4;
}

.sticky-cta-footer-message,
.sticky-cta-footer-closure {
  text-align: center;
  font-size: 0.9rem;
  color: #f7d7b4;
  line-height: 1.4;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  .sticky-cta {
    width: min(calc(100% - 32px), 460px);
  }

  .sticky-cta-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sticky-cta-form-group input {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .sticky-cta-form-group .btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

@media (min-width: 520px) {
  .sticky-cta {
    width: min(calc(100% - 36px), 520px);
  }
}

@media (min-width: 768px) {
  .sticky-cta {
    width: min(calc(100% - 36px), 760px);
  }
}

@media (min-width: 1001px) {
  .sticky-cta-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    align-items: center;
  }

  /* .sticky-cta-left {
    padding-right: 20px;
  } */

  .sticky-cta-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1); */

  }

  .sticky-cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sticky-cta-form-group {
    display: grid;
    gap: 8px;
  }

  .sticky-cta-form-group input {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .sticky-cta-form-group .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .sticky-cta-footer-content {
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .sticky-cta {
    width: calc(100% - 20px);
    border-radius: 18px 18px 0 0;
  }

  .sticky-cta.show {
    padding: 8px 10px 9px;
    max-height: 190px;
  }

  .sticky-cta__inner,
  .sticky-cta-content,
  .sticky-cta-right {
    gap: 6px;
  }

  .sticky-cta-header {
    gap: 8px;
  }

  .sticky-cta-title-icon {
    width: 34px;
  }

  .sticky-cta-title {
    font-size: 0.95rem;
    line-height: 1.1;
  }

  .sticky-cta-description,
  .sticky-cta-middle,
  .sticky-cta-footer-closure {
    display: none;
  }

  .sticky-cta-form-group {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 6px;
  }

  .sticky-cta-form-group input {
    min-width: 0;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .sticky-cta-form-group .btn {
    width: auto;
    padding: 9px 11px;
    font-size: 0.72rem;
    line-height: 1;
    white-space: nowrap;
  }

  .sticky-cta-footer-content {
    gap: 4px;
    padding-top: 4px;
  }

  .sticky-cta-consent {
    font-size: 0.68rem;
    line-height: 1.22;
    gap: 5px;
  }

  .sticky-cta-consent input {
    width: 14px;
    height: 14px;
    margin-top: 0.05em;
  }

  .sticky-cta-footer-message {
    min-height: 0;
    font-size: 0.74rem;
    line-height: 1.15;
  }
}

.exit-popup-overlay {
  display: none !important;
}

.exit-popup-overlay[hidden] {
  display: none !important;
}

.exit-popup {
  display: none;
  width: min(460px, 100%);
  background: rgba(30, 12, 6, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 28px 26px;
}

.exit-popup__close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: none;
  background: transparent;
  color: #fbe7cf;
  font-size: 1.4rem;
  cursor: pointer;
}

.exit-popup__tag {
  margin: 0 0 12px;
  color: #ffd58c;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.exit-popup h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.exit-popup__text {
  margin: 0 0 18px;
  color: #f1d8b4;
  line-height: 1.6;
}

.exit-popup-form {
  display: grid;
  gap: 10px;
}

.exit-popup-form input[type="email"] {
  width: 100%;
}

.gift-idea .section-inner,
.explorers .section-inner {
  text-align: left;
}

.feature-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.feature-list li {
  position: relative;
  /* background: rgba(255, 255, 255, 0.06); */
  /* border: 1px solid rgba(255, 255, 255, 0.14); */
  /* border-radius: 18px; */
  padding: 0px 18px 0px 38px;
  color: #f7d7b4;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd58c;
  font-weight: 700;
}

.feature-card strong {
  font-size: 1.5rem;
}

@media (max-width: 680px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* DSGVO Cookie-Banner (analog Beispielseite) */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: radial-gradient(circle at top, #5b2110 0, #3b1307 55%, #2a0c05 100%);
  color: #fbe7cf;
  border-top: 1px solid rgba(248, 207, 163, 0.35);
  box-shadow: 0 -8px 24px rgba(43, 30, 24, 0.3);
}

.cookie-banner__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.78rem;
  color: #f7d7b4;
}

.cookie-banner__text a {
  color: #ffb75e;
}

.cookie-banner__actions {
  display: inline-flex;
  gap: 8px;
}

.cookie-btn {
  background: linear-gradient(to bottom, #ffb95f, #f74b2b);
  color: #3c0b02;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn.secondary {
  background: #e9ded5;
  color: #3b1405;
}

.consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 4px 0;
  /* font-size: 0.78rem; */
  color: #f7d7b4;
}

.consent a {
  color: #ffb75e;
}

a,
a:visited {
  color: #ffb75e;
}

/* base layout for announcement box */
.youtube .section-inner {
  position: relative;
  text-align: center;
  /* fallback */
}

.youtube-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
}

.youtube-bild {
  max-width: 140px;
  width: 25%;
  height: auto;
}

.youtube-heading {
  margin: 0;
  font-size: 1.5rem;
  color: #ffe9c7;
}

.youtube-subline {
  margin: 10px 0 0;
  font-size: 1.1rem;
  color: #f7d7b4;
}

.youtube-button {
  display: inline-block;
  margin-top: 12px;
}

.youtube-button .youtube-icon {
  max-width: 100%;
  height: auto;
}

/* responsive tweaks for small screens */
@media (max-width: 519px) {
  .youtube .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
  }

  .youtube-header {
    /* keep image and heading side-by-side */
    flex-direction: row;
  }

  .youtube-bild {
    position: static;
    transform: none;
    margin-right: 10px;
    max-width: 80px;
  }

  .youtube-heading {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .youtube-subline {
    margin-top: 8px;
    order: 3;
  }

  .youtube-button {
    order: 4;
  }
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 520px) {
  .page {
    max-width: 520px;
    padding: 0 18px 40px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-inner {
    padding-inline: 20px;
  }

  .steps {
    grid-template-columns: 1.6fr 0.5fr 1.6fr 0.5fr 1.6fr;
  }

  .step {
    padding-inline: 10px;
  }
}

@media (min-width: 768px) {
  body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .page {
    /* margin-top: 32px; */
    max-width: 760px;
  }
}

/* video page styles */
.video-page h1 {
  margin-top: 0;
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.video-item iframe {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border: 0;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.fact {
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 228, 195, 0.1);
  font-size: 1.3em;
}

.fact span {
  display: block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

/* .fact strong {
  font-size: 1rem;
  color: var(--text);
} */

/* New section variants and styling for redesigned layout */

.badge-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero-underline {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  /* margin-top: 8px; */
}

/* Hero fullbleed variant - extends outside the box */
.hero--fullbleed .section-inner {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 12px 0 14px;
}

/* Section background variants - light and dark alternatives */

.section-inner.light,
.testimonials-section .section-inner,
.facts-section--light .section-inner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 210, 164, 0.12);
  border-radius: 20px;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 210, 164, 0.1);
}

.highlight--dark .section-inner {
  background: radial-gradient(circle at top, #5c2a14 0, #2d1308 55%, #120501 100%);
  border-radius: 20px;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 210, 164, 0.15);
}

.highlight--light .section-inner {
  background: radial-gradient(circle at top, #f8e2cb 0, #f5d7b7 55%, #d28347 100%);
  border-radius: 20px;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 210, 164, 0.15);
  color: #5c2a14;
}

.section-inner.transparent {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Highlight section content and badge positioning */
.highlights-content {
  display: grid;
  /* gap: 12px; */
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.highlights-card {
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.highlights-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.highlights-card strong {
  display: block;
  color: #5c2a14;
  font-size: 0.95rem;
  margin: 4px 0;
}

.highlights-card p {
  margin: 0;
  color: #5c2a14;
  font-size: 0.85rem;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .highlights-card {
    padding: 14px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .highlights-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .highlights-card strong,
  .highlights-card p {
    text-align: left;
  }
}

.highlight-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 120px;
  height: auto;
  max-width: 100%;
}

.highlight--dark {
  position: relative;
}

/* Facts section header */
.facts-header {
  margin-bottom: 24px;
  text-align: center;
}

/* .facts-header h2 {
  font-size: 1.8rem;
  margin: 0 0 8px;
  color: #2d1308;
} */

/* .facts-header p {
  margin: 0;
  color: #5c2a14;
  font-size: 0.95rem;
} */

/* Variations Carousel Styling */
.variations-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  position: relative;
}

.variations-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.variation-item {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.variation-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.variation-item p {
  margin: 0 0 14px;
  color: #f7d7b4;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.variations-nav {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.variations-arrow {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.variations-nav:hover .variations-arrow {
  opacity: 1;
}

.variations-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.variations-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.variations-dot {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0;
}

.variations-dot.variations-dot-active {
  background: #ffd58c;
}

.variations-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 520px) {
  .variations-carousel {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .variations-wrapper {
    flex: 0 0 100%;
    order: 1;
  }

  .variations-nav {
    order: 2;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
  }

  .variations-nav-next {
    order: 3;
  }

  .variations-arrow {
    width: 20px;
    height: 20px;
  }

  /* .variations-nav-prev .variations-arrow {
    transform: rotate(90deg);
    transform-origin: center;
  }

  .variations-nav-next .variations-arrow {
    transform: rotate(90deg);
    transform-origin: center;
  } */

  .variation-item p {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .variation-item .variety-image {
    width: 100%;
    max-width: 100%;
    max-height: 42vh;
    object-fit: cover;
    border-radius: 16px;
  }

  .variations-dots {
    margin-top: 10px;
  }
}

@media (max-width: 380px) {
  .variation-item .variety-image {
    max-height: 36vh;
  }
}

/* Testimonials section styling */
.testimonials-section {
  margin-top: 18px;
}

/* .testimonials-section .social-proof-title {
  color: #5c2a14;
  margin-bottom: 16px;
} */

.testimonials-section .testimonial {
  background: rgba(93, 42, 20, 0.08);
  border: 1px solid rgba(255, 210, 164, 0.15);
  color: #3a1205;
}

.testimonials-section .testimonial-text {
  color: #5c2a14;
}

.testimonials-section .testimonial p {
  color: #3a1205;
  font-weight: 600;
}
.club-wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.club-wordmark__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50% 45% 55% 42%;
  background: #f06f55;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.club-header__status {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
}
