
/* ============================================================
   style.css – Page Specific Styles (Index)
   Aufbau:
   1) Hero Section
   2) Grids & Layout
   3) Feature Cards
   4) Responsive Anpassungen
   ============================================================ */

:root {
  --hero-gap: clamp(2.3rem, 1.5vw, 1.2rem);
}

/* GLOBAL PAGE BACKGROUND FIX */
html, body {
  background: var(--bg-2) !important;
}



/* ====================================
   HERO BASE
==================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100svh - var(--header-height));
  margin-top: 65px;
  overflow: hidden;
  background: transparent;
}


.hero-active {
  color: var(--brand); /* dein gelb/grün */
}

.hero-blob-layer {
  position: absolute;
  top: calc(var(--header-height) + 400px); /* optisch feinjustieren */
  right: 35%;
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 0; /* liegt unter Hero-Inhalt */

  background: radial-gradient(
    circle at center,
    rgba(184, 204, 100, 0.25) 0%,
    rgba(184, 204, 100, 0.15) 40%,
    rgba(184, 204, 100, 0.05) 70%,
    rgba(184, 204, 100, 0) 100%
  );

  filter: blur(120px);
}

/* ====================================
   IMAGE SLIDER – FIXED LAYER
==================================== */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s linear;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
  border-radius: inherit;
}

/* ====================================
   DARK OVERLAY
==================================== */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
  z-index: 2;
  border-radius: inherit;
}

/* ====================================
   CONTENT AREA – FIXED, NO REFLOW
==================================== */
.hero-content {
  position: absolute;
  z-index: 3;
  bottom: 50%;
  left: clamp(3.1rem, 11vw, 15rem);
  transform: translateY(-50%);
  width: 100%;
  max-width: 780px;
  color: #fff;
}

.hero-content-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .4s ease, transform .4s ease;
}

.hero-content-slide.active {
  opacity: 1;
  transform: translateX(0);
}

/* TEXT */
.hero-eyebrow {
  color: var(--brand);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: .85;
}

/* ====================================
   RIGHT WIDGETS
==================================== */
.hero-widgets {
  position: absolute;
  bottom: 17%;
  right: clamp(2rem, 6vw, 8rem);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}







/* HERO RIGHT WIDGETS */
.hero-right-widgets {
  position: absolute;
  bottom: calc(55% + 20px);
  right: clamp(2rem, 6vw, 8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(1rem, 2vw, 1.6rem);
  z-index: 3;
}

.hero-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-social-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.9;
}

.hero-social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

/* OCCUPANCY WIDGET */
.hero-occupancy {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: .9rem 1.2rem;
  border-radius: 14px;
  width: 180px;
  display: none;
  flex-direction: column;
  gap: .6rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.occ-label {
  font-size: .85rem;
  color: var(--ink-2);
}

.occ-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
  Margin-bottom: 8px;
}

.occ-fill {
  height: 100%;
  background: var(--brand);
  transition: width .4s ease;
}

.occ-status {
  font-size: .85rem;
  color: var(--ink-2);
}

.hero-quicklinks {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: .9rem 1.2rem;
  width: 180px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.ql-label {
  margin: 0 0 .4rem 0;
  font-size: .9rem;
  font-weight: 600;
  color: #B8CC64 !important;
}

.ql-item {
  font-size: .85rem;
  color: #fff;
  text-decoration: none;
  padding: .4rem .6rem;
  border-radius: 8px;
  transition: background .25s ease;
}

.ql-item:hover {
  background: rgba(255,255,255,0.15);
}


.hero-quicklinks {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);           /* match occupancy */
  padding: .9rem 1.2rem;                 /* match occupancy */
  border-radius: 14px;                  /* match occupancy */
  width: 180px;                         /* match occupancy */
  display: flex;
  flex-direction: column;
  gap: .6rem;
  border: 1px solid rgba(255,255,255,0.15); /* match occupancy */
}

.ql-label {
  font-size: .85rem;                    /* match occ-label */
  color: var(--ink-2);                  /* match occupancy label */
}

.ql-item {
  font-size: .85rem;
  color: var(--ink-2);                  /* match occ-status */
  text-decoration: none;
  padding: .3rem 0;                     /* cleaner, wie textual list */
  border-radius: 6px;
  transition: opacity .25s ease;
}

.ql-item:hover {
  opacity: .8;
}
/* slider toggle */
.hero-slider-toggle {
  margin-top: 1rem;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.hero-slider-toggle:hover {
  opacity: .9;
  transform: translateY(-3px);
}




@media (max-width: 480px) {

  .hero {
    position: relative;
    width: 100%;
    margin: 0;
    margin-top: 50px;
    min-height: 100svh;
    border-radius: 0;
    overflow: hidden;
    left: auto;
    transform: none;
  }

  .hero-content {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    max-width: 92%;
  }

  .hero-content-slide {
    width: 100%;
    max-width: 100%;
  }

  .hero-slider,
  .hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Widgets unten links nebeneinander */
.hero-widgets {
  position: absolute;
  bottom: 10%;
  left: 62%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  width: auto;
  z-index: 20;
}
.ql-label {
  display: none;
}

  /* OCCUPANCY → Social Icons oben drauf */
  .hero-occupancy {
    width: 150px;
    min-width: 150px;
    padding: .6rem .8rem;
    border-radius: 14px;
    position: relative;
  }

  .hero-social {
    position: absolute;
    bottom: 100px !important;
    right: -20px !important;
    gap: .4rem;
  }


  /* Pause-Button direkt neben die Social Icons */
  .hero-slider-toggle {
    position: absolute;
    bottom: 100px !important;
    right: -72px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-size: 1.1rem;
  }

  /* QUICKLINKS rechts neben Occupancy */
  .hero-quicklinks {
    width: 150px;
    min-width: 150px;
    padding: .1rem .9rem;
    border-radius: 14px;
  }

  /* Textverkleinerung */
  .occ-status,
  .occ-label,
  .ql-item {
    font-size: .82rem;
    line-height: 1;
  }
}

@media (min-width: 480px) and (max-width: 768px) {

  .hero {
    position: relative;
    overflow: hidden;
  }

  .hero-right-widgets {
    position: absolute;
    bottom: 6%;
    left: 6%;
    display: flex;
    flex-direction: row !important;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1rem;
    width: auto;
    z-index: 20;
  }

  /* OCCUPANCY → Social Icons oben drauf */
  .hero-occupancy {
    width: 160px;
    min-width: 160px;
    padding: .6rem .85rem;
    border-radius: 14px;
    position: relative;
  }

  .hero-social {
    position: absolute;
    top: -24px;
    left: 0;
    gap: .4rem;
  }

  /* Pause Button */
  .hero-slider-toggle {
    position: absolute;
    top: -28px;
    left: 80px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transform: none;
  }

  /* QUICKLINKS rechts neben Occupancy */
  .hero-quicklinks {
    width: 160px;
    min-width: 160px;
    padding: .6rem .85rem;
    border-radius: 14px;
  }
}


@media (min-width: 768px) and (max-width: 1200px) {

  .hero-right-widgets {
    position: absolute;
    bottom: 20%;
    right: 4%;
    transform: none;
    display: none;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
  }

  .hero-occupancy,
  .hero-quicklinks {
    width: 150px;
    padding: .6rem .85rem;
  }

  .hero-slider-toggle {
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 480px) and (max-width: 899px) {

  /* HERO BASE */
  .hero {
    min-height: 100svh;
  }

  /* HERO CONTENT */
  .hero-content {
    left: 6%;
    max-width: 520px;
    width: calc(100% - 340px);
    bottom: 52%;
  }


  /* HERO WIDGETS */
  .hero-right-widgets {
    bottom: 14%;
    right: 6%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
  }

  .hero-occupancy,
  .hero-quicklinks {
    width: 150px;
    padding: .6rem .85rem;
  }



}
@media (min-width: 900px) and (max-width: 1280px) {

  /* HERO CONTENT */
  .hero-content {
    left: clamp(4rem, 8vw, 7rem);
    max-width: 520px;
    width: calc(100% - 360px);
    bottom: 50%;
  }


  /* HERO WIDGETS */
  .hero-right-widgets {
    bottom: 28%;
    right: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }

  .hero-occupancy,
  .hero-quicklinks {
    width: 160px;
    padding: .7rem .9rem;
  }
}


/* ============================================================
   2) GLOBAL PAGE LAYOUT (specific for this page)
   ============================================================ */

.page-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.page-section-sm {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.page-section-lg {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}


/* Max width wrappers */
.wrapper {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--section-pad);
}

/* Wide wrapper (Hero, Big grids, etc.) */
.wrapper-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}


/* ============================================================
   3) FEATURE GRID
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
}


/* ============================================================
   4) GENERAL IMAGE / MEDIA BEHAVIOUR
   ============================================================ */

img.fullwidth {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}


/* ============================================================
   5) RESPONSIVE TWEAKS
   ============================================================ */

@media (max-width: 900px) {

  .hero {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .features-grid {
    gap: var(--space-4);
  }
}


@media (max-width: 600px) {

  .hero {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
  }

  .hero p {
    margin-bottom: var(--space-5);
  }
}

/* ============================================================
   PARTNER SECTION — REBUILT FROM ZERO (CENTERED, CONTROLLED GAPS)
   ============================================================ */

.partner-section {
  width: 100%;
  background: transparent;
  padding-top: 150px;
  padding-bottom: clamp(4rem, 6vw, 6rem);
}

.partner-container {
  width: 100%;
  max-width: 1800px;
  margin-inline: auto;
  padding-left: clamp(3.1rem, 11vw, 15rem);
  padding-right: clamp(3.1rem, 11vw, 15rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-title {
  font-size: var(--fs-h1);
  font-weight: 600;
  color: var(--ink-1);
  text-align: center;
  width: 100%;
  margin-bottom: clamp(3rem,2vw,1.6rem);
}
.partner-footnote {
  text-align: left !important;
  width: 100%;
  margin-left: 0;
  margin-top: clamp(1.6rem,2vw,2rem);
  font-size: var(--fs-body);
  color: var(--ink-2);
  opacity: .85;
}
/* CATEGORIES */
.partner-categories {
  display: flex;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 3rem);
  width: 100%;
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: var(--fs-body);
  color: var(--brand);
}

/* DIVIDER */
.partner-divider {
  width: 100%;
  height: 1px;
  background: var(--line-1);
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

/* GRID — NEW MATH */
.partner-grid {
  width: 100%;
  display: grid;
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(5, 1fr);
  column-gap: clamp(1rem, 1.4vw, 1.8rem);
  row-gap: clamp(1rem, 1.4vw, 1.8rem);
}

/* CARDS — FIXED HEIGHT & RESPONSIVE WIDTH */
.partner-card {
  width: 100%;
  max-width: 230px;
  background: var(--bg-3);
  border-radius: var(--radius-md);
  padding: clamp(.9rem, 1.2vw, 1.4rem);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  transition: transform .25s ease, background .25s ease;
}

.partner-card img {
  width: clamp(120px, 11vw, 160px);
  height: auto;
  max-height: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.partner-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
}

/* TABLET */
@media (max-width: 1200px) {
  .partner-grid {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
  }

  .partner-card {
    max-width: 200px;
    height: 100px;
  }

  .partner-card img {
    width: clamp(100px, 14vw, 130px);
    max-height: 36px;
  }

  .partner-container {
    padding-left: clamp(2rem, 6vw, 8rem);
    padding-right: clamp(2rem, 6vw, 8rem);
  }
}

/* MOBILE — 2 COLUMNS */
@media (max-width: 600px) {
  .partner-container {
    width: 94%;
    padding-inline: 0;
  }
  /* CATEGORIES */
.partner-categories {
  display: flex;
  justify-content: space-between;
  gap: clamp(.5rem, .8vw, .7rem);
  width: 100%;
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 12px;
  color: var(--brand);
}

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: .8rem;
    row-gap: .8rem;
  }

  .partner-card {
    max-width: none;
    width: 100%;
    height: 90px;
    padding: .6rem .5rem;
  }

  .partner-card img {
    width: clamp(70px, 26vw, 100px);
    max-height: 90px;
  }
}

/* ============================================================
   OFFERS SECTION — Horizontal Scroll Gallery (Apple Style)
   ============================================================ */

.offers-section {
  padding: clamp(4rem, 6vw, 7rem) 0;
  background: var(--bg-2);
  position: relative;
}



/* -----------------------------
   INTRO ROW
----------------------------- */

.offers-intro {
  width: 100%;
  padding-left: clamp(3.1rem, 11vw, 15rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  gap: 2rem;
}

.offers-intro-left {
  max-width: 780px;
}

.offers-intro-right {
  display: flex;
  align-items: center;
  height: 100%;
}

.intro-cta {
  font-size: var(--fs-body);
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  transition: opacity .25s ease;
}

.intro-cta:hover {
  opacity: .7;
}

.offers-eyebrow {
  color: var(--brand);
  font-size: clamp(.9rem, 1vw, 1rem);
  letter-spacing: .5px;
}

.offers-title {
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.2;
  margin: 0.4rem 0 1rem 0;
  color: var(--ink-1);
}

.offers-sub {
  color: var(--ink-2);
  font-size: var(--fs-lead);
  line-height: 1.6;
  opacity: .85;
}



/* -----------------------------
   SCROLL GALLERY
----------------------------- */

.offers-gallery {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-left: clamp(3.1rem, 11vw, 15rem);
  padding-right: clamp(3.1rem, 11vw, 15rem);
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}

.offers-gallery::-webkit-scrollbar {
  display: none;
}



/* -----------------------------
   OFFER CARDS
----------------------------- */

.offer-card {
  flex: 0 0 auto;
  background: var(--bg-3);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  scroll-snap-align: center;
  transition: transform .25s ease, opacity .25s ease;
  padding-bottom: 1.8rem;
}

.offer-card:hover {
  transform: translateY(-4px);
  opacity: .98;
}


/* WIDTH VARIANTS */
.offer-card.narrow {
  width: clamp(350px, 38vw, 420px);
}

.offer-card.wide {
  width: clamp(420px, 55vw, 620px);
}


/* IMAGE */
.offer-img {
  width: 100%;
  height: clamp(180px, 28vw, 300px);
  object-fit: cover;
  display: block;
}

/* META LABEL */
.offer-meta {
  display: block;
  margin-top: 1.2rem;
  font-size: .85rem;
  color: var(--brand);
  letter-spacing: .4px;
  padding-inline: 1.2rem;
}

/* TEXT BLOCK */
.offer-text {
  padding-inline: 1.2rem;
  margin-top: .5rem;
}

.offer-text h3 {
  color: var(--ink-1);
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  margin-bottom: .6rem;
}

.offer-text p {
  color: var(--ink-2);
  font-size: calc(var(--fs-body) - 0.1rem);
  font-weight: 300;
  line-height: 1.5;
}



/* -----------------------------
   SCROLL ARROWS
----------------------------- */

.offers-arrow {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, opacity .25s ease;
}

.offers-arrow:hover {
  background: rgba(255,255,255,0.18);
  opacity: .9;
}

.offers-arrow.left {
  left: clamp(1rem, 3vw, 2rem);
}

.offers-arrow.right {
  right: clamp(1rem, 3vw, 2rem);
}



/* -----------------------------
   FOOTER + CTA
----------------------------- */

.offers-footer {
  text-align: left;
  margin-top: clamp(2rem, 4vw, 5rem);
  padding-left: clamp(3.1rem, 11vw, 15rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.offers-footnote {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  opacity: .85;
  max-width: 750px;
  margin: 0 0 1.6rem 0;
  line-height: 1.6;
  
}

.offers-main-cta {
  display: inline-block;
  padding: .9rem 2.4rem;
  background: var(--brand);
  color: #111;
  border-radius: 999px;
  text-decoration: none;
  font-size: var(--fs-body);
  font-weight: 500;
  transition: opacity .25s ease, transform .25s ease;
}

.offers-main-cta:hover {
  opacity: .85;
  transform: translateY(-2px);
}

.offers-second-cta {
  display: inline-block;
  padding: .9rem 2.4rem;
  background: transparent;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: var(--fs-body);
  font-weight: 500;
  border: 2px solid #fff;
  margin-left: 1rem;
  transition: opacity .25s ease, transform .25s ease, background .25s ease, color .25s ease;
}

.offers-second-cta:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}



/* -----------------------------
   RESPONSIVE
----------------------------- */

@media (max-width: 900px) {

  .offers-intro {
    flex-direction: column;
    text-align: left;
    gap: 1rem;
  }

  .intro-cta {
    margin-top: 1rem;
  }

  .offers-arrow {
    display: none;
  }
}

@media (max-width: 600px) {
  .offer-card.narrow,
  .offer-card.wide {
    width: 96% !important;
    max-width: 96% !important;
    flex: 0 0 96% !important;
    height: auto !important; /* height stays unchanged */
  }

  /* Disable Reveal for Offer Cards on Mobile */
  .offer-card,
  .offer-card.reveal,
  .offer-card.reveal-up,
  .offer-card.reveal-visible {
    opacity: 1 !important;
    transform: none !important;
  }
  .kurse-card.narrow {
    width: clamp(340px, 44vw, 420px);
  }

  /* --- OFFER CARDS BREITER MACHEN (AUTO APPLIED) --- */
  .offer-card {
    width: 92% !important;
    max-width: 92% !important;
    flex: 0 0 92% !important;
  }
}

@media (max-width: 600px) {
  .offers-intro-left {
    max-width: 92%;
    padding-left: 0;
  }
  .offers-intro {
    padding-left: clamp(1.4rem,4vw,1.8rem);
    padding-right: clamp(1.4rem,4vw,1.8rem);
  }
  .offers-title,
  .offers-sub {
    max-width: 92%;
  }
  .offers-footer {
    padding-left: clamp(1.4rem,4vw,1.8rem);
    padding-right: clamp(1.4rem,4vw,1.8rem);
    text-align: left;
  }
  .offers-main-cta,
  .offers-second-cta {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-bottom: 0.8rem;
    text-align: center;
  }
  .offer-img {
    height: 200px !important;
    object-fit: cover !important;
  }
  .offer-text h3 {
    font-size: 1.2rem !important;
  }
  .offer-text p {
    font-size: 0.95rem !important;
  }
}




/* ============================================================
   WHY-US SECTION — USP, Vertrauen & Kompetenz
   ============================================================ */

.whyus-section {
  margin-top: 100px;
  background: var(--bg-2);
  padding: clamp(4rem, 6vw, 7rem) 0;
}

.whyus-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  padding-left: clamp(3.1rem, 11vw, 15rem);
  padding-right: clamp(3.1rem, 11vw, 15rem);
  align-items: flex-start;
}


/* ----------------------------
   LEFT COLUMN
---------------------------- */

.whyus-eyebrow {
  color: var(--brand);
  font-size: clamp(.9rem, 1vw, 1rem);
  letter-spacing: .5px;
  margin-bottom: 1rem;
  display: block;
}

.whyus-title {
  color: var(--ink-1);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  max-width: 680px;
}


.whyus-sub {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  line-height: 1.6;
  opacity: .85;
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
}

/* Divider between text and rating */
.whyus-divider {
  width: 100%;
  max-width: 680px;
  height: 2px;
  background: var(--brand);
  margin: 1.6rem 0 2rem 0;
  opacity: .9;
  border-radius: 999px;
}


/* ----------------------------
   GOOGLE RATING
---------------------------- */

 .whyus-rating {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: none;
  border: none;
  padding: 0;
}

.rating-value {
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  color: var(--ink-1);
  font-weight: 600;
}

.rating-stars-inline {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 1.3rem;
}

.star-full {
  color: #f8d05a;
}

.star-half {
  color: #f8d05a;
  position: relative;
}

.star-half::before {
  content: "★";
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #f8d05a;
}

.star-half::after {
  content: "★";
  color: rgba(255,255,255,0.2);
}
.rating-count-inline {
  color: var(--ink-3);
  font-size: .95rem;
  opacity: .85;
  margin-left: .4rem;
}

.rating-value {
  font-size: clamp(2.4rem, 3vw, 3rem);
  color: var(--ink-1);
  font-weight: 600;
}

.rating-stars {
  color: #f8d05a;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.rating-count {
  color: var(--ink-3);
  font-size: .9rem;
  opacity: .8;
}



/* ----------------------------
   RIGHT COLUMN — GRID
---------------------------- */

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  padding-top: .6rem;
}

/* WHY US — HIGHLIGHT CARD */
.whyus-card.highlight {
  background: var(--brand); /* FCH Brand (#B8CC64) */
  border: 1px solid rgba(255,255,255,0.15);
  transform: rotate(-0deg) !important;
  color: #111;
  position: relative;
  z-index: 2; /* Damit sie sauber über anderen Elementen liegt */
  min-height: 170px;
}

/* Textfarben innerhalb der Highlight-Karte */
.whyus-card.highlight h3,
.whyus-card.highlight p,
.whyus-card.highlight .whyus-number {
  color: #111 !important;
}

/* Optional: etwas stärkerer Shadow für Premium-Feeling */
.whyus-card.highlight {
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* USP CARDS */

.whyus-card {
  background: var(--bg-3);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: clamp(1.2rem, 1.6vw, 1.8rem);
  min-height: 170px;
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
}

.whyus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.4);
  opacity: .90;
}

.whyus-number {
  font-size: .9rem;
  font-weight: 500;
  color: var(--brand);
  opacity: .7;
  margin-bottom: .6rem;
  display: block;
}

.whyus-card h3 {
  color: var(--ink-1);
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  margin-bottom: .4rem;
  font-weight: 500;
}

.whyus-card p {
  color: var(--ink-2);
  font-size: calc(var(--fs-body) - 0.1rem);
  font-weight: 300;
  opacity: .85;
  line-height: 1.5;
}


@media (max-width: 600px) {

  .whyus-wrapper {
    width: 94% !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: -150px;
  }

  .whyus-eyebrow,
  .whyus-title,
  .whyus-sub,
  .whyus-divider,
  .whyus-rating {
    width: 94% !important;
    margin-inline: auto !important;
  }

  .whyus-grid {
    width: 94% !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* WHY-US CARD MOBILE LAYOUT FIX */
  .whyus-card,
  .whyus-card.highlight {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .whyus-number {
    margin-bottom: auto !important;
  }

  .whyus-card h3,
  .whyus-card p {
    margin-top: auto !important;
  }

  .whyus-eyebrow {
    margin-top: 1rem;
  margin-bottom: -1rem;
}

.whyus-title {
  margin-bottom: -2rem !important;
}


.whyus-sub {
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
}

}

/* ----------------------------
   RESPONSIVE
---------------------------- */

@media (max-width: 1100px) {
  .whyus-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 800px) {
  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .whyus-rating {
    width: 100%;
  }
}




/* ============================================================
   SECTION 6 — Social Proof / Rezensionen (Apple-Style)
============================================================ */

.socialproof-section {
  background: var(--bg-2);
  padding: clamp(4rem, 6vw, 7rem) 0;
  position: relative;
}


@media (max-width: 900px) {
  .socialproof-section {
    padding-top: 2rem !important;
    margin-top: 0 !important;
  }
}



/* ===========================
   WHY-US REVAMP – PARALLAX
=========================== */

.whyus-revamp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  padding-left: clamp(3rem, 10vw, 14rem);
  padding-right: clamp(3rem, 10vw, 14rem);
  align-items: center;
}

/* LEFT BUBBLE ZONE */
.whyus-bubbles {
  position: relative;
  min-height: 480px;
  width: 100%;
}

.whyus-bubbles::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-image:
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,0.05) 0px,
      rgba(255,255,255,0.05) 1px,
      transparent 1px,
      transparent 70px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.05) 0px,
      rgba(255,255,255,0.05) 1px,
      transparent 1px,
      transparent 70px
    );
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
  z-index: 0;
  pointer-events: none;
}

/* BUBBLE BASE STYLE */
.whyus-bubble {
  position: absolute;
  z-index: 2;
  width: 260px;
  padding: 1.4rem 1.2rem;
  padding-top: 2.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink-1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translate3d(0,0,0) rotate(-4deg);
  transition: transform .35s ease, opacity .35s ease;
  position: absolute;
  z-index: 2;
}

.whyus-bubble span {
  display: block;
  margin-top: .6rem;
  color: var(--brand);
  font-size: 1rem;
}

/* PIN STYLING */
.bubble-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #d5d5d5 60%, #888 100%);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.35);
  z-index: 3;
}

/* PIN POSITIONS — corrected to match HTML classes */
.bubble-pin.pin-top-left { 
  top: 6px; 
  left: 14px; 
}

.bubble-pin.pin-top-right { 
  top: 6px; 
  right: 14px; 
}

.bubble-pin.pin-top-center { 
  top: 4px; 
  left: 50%; 
  transform: translateX(-50%); 
}

/* INITIAL POSITIONS (tight cluster) */
.bubble-1 { top: 28%; left: 25%; }
.bubble-2 { top: 10%; left: 30%; }
.bubble-3 { top: 34%; left: 20%; }
.bubble-4 { top: 30%; left: 23%; }
.bubble-5 { top: 40%; left: 29%; }

/* ACTIVE PARALLAX POSITIONS — via JS */
.whyus-bubble.parallax-active {
  opacity: 1;
}

/* RIGHT TEXT BLOCK */
/* RIGHT TEXT BLOCK — improved spacing */
.whyus-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
}

.whyus-right .whyus-eyebrow {
  color: var(--brand);
  font-size: clamp(.9rem,1vw,1rem);
}

.whyus-right .whyus-title {
  font-size: var(--fs-h1);
  font-weight: 600;
  margin-bottom: .6rem;     /* small spacing under title */
}

.whyus-right .whyus-sub {
  font-size: var(--fs-lead);
  opacity: .85; 
  margin-top: 100px;   /* spacing before divider */
}

.whyus-right .whyus-divider {
  width: 100%;
  height: 2px;
  background: var(--brand);
  margin: 1rem 0 1.2rem 0;   /* spacing above and below divider */
  border-radius: 999px;
  margin-top: -40px;
}

/* Rating block formatting */
.whyus-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  color: var(--ink-2);
  margin-top: -1rem;
}

.rating-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand);
}

.rating-stars {
  color: var(--brand);
  font-size: 1rem;
}

.rating-count {
  font-size: .9rem;
  opacity: .7;
}

/* Farbklecks eindeutig zugeordnet */
.whyus-blob::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 14%;
  width: 500px;
  height: 500px;

  background: radial-gradient(
    circle at center,
    rgba(184, 204, 100, 0.15) 0%,
    rgba(184, 204, 100, 0.1) 40%,
    rgba(184, 204, 100, 0.05) 70%,
    rgba(184, 204, 100, 0) 100%
  );

  z-index: 0;
  pointer-events: none;
  transform: rotate(15deg);
}
.whyus-blob::before {
  filter: blur(120px);
}

/* ================================
   WHY US – REVIEW CTA
================================ */

.whyus-review-cta {
  margin-top: 1.6rem;
}

.whyus-review-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.4rem;
  font-weight: 600;
  font-size: .95rem;
  color: #111;
  background: var(--accent, #b8cc64);
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whyus-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  background: #cde27a;
}

/* ===========================
   WHY-US MOBILE — TRUE PARALLAX
=========================== */

@media (max-width: 480px) {

  .whyus-revamp {
    grid-template-columns: 1fr !important;
    width: 94% !important;
    margin-inline: auto !important;
    padding: 0 !important;
    gap: 2rem !important;
  }

  .whyus-bubbles {
    min-height: 180px !important;
    position: relative;
    overflow: visible !important;
    font-size: 0.6rem;
  }

  /* Bubbles – smaller + spaced apart (no parallax stacking) */
  .whyus-bubble {
    width: 54% !important;
    padding: 0.9rem 0.8rem !important;
    border-radius: 14px !important;
    opacity: 1 !important;
    transform: rotate(-4deg) !important;
  }

  .bubble-content p {
  font-size: 0.75rem !important;
  line-height: 1.35 !important;
  margin-top: 15px;
}
  .whyus-bubble span {
  display: block;
  margin-top: .9rem;
  color: var(--brand);
  font-size: 0.6rem;
}

  /* new static positions */
  .bubble-1 { top: -15% !important; left: 0% !important; }
  .bubble-2 { top: 5% !important; left: 48% !important; }
  .bubble-3 { top: 44% !important; left: 8% !important; }
  .bubble-4 { top: 80% !important; left: 48% !important; }
  .bubble-5 { top: 98% !important; left: 0% !important; }

  .whyus-bubble.parallax-active {
    transform: rotate(-4deg) !important;
  }

  .whyus-right {
    width: 94% !important;
    margin-inline: auto !important;
    text-align: left !important;
    margin-top: 100px;
  }
  .whyus-right .whyus-sub {
  font-size: var(--fs-lead);
  opacity: .85; 
  margin-top: 30px;   /* spacing before divider */
}
}


@media (min-width: 480px) and (max-width: 768px) {

  .whyus-revamp {
    grid-template-columns: 1fr !important;
    width: 92% !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 2.6rem !important;
  }

  .whyus-bubbles {
    min-height: 360px !important;
    position: relative;
  }

    .whyus-bubble span {
  display: block;
  margin-top: .9rem;
  color: var(--brand);
  font-size: 0.6rem;
}

  .bubble-content p {
  font-size: 0.75rem !important;
  line-height: 1.35 !important;
  margin-top: 25px;
}
  .whyus-bubble span {
  display: block;
  margin-top: .9rem;
  color: var(--brand);
  font-size: 0.6rem;
}

  .whyus-bubble {
    width: 42% !important;
    padding: 1rem 0.9rem !important;
    border-radius: 16px !important;
    opacity: 1 !important;
    transform: rotate(-4deg) !important;
  }

 .whyus-bubble span {
  font-size: 1rem;
}

  /* spaced static layout */
  .bubble-1 { top: 10% !important; left: 18% !important; }
  .bubble-2 { top: 15% !important; left: 54% !important; }
  .bubble-3 { top: 46% !important; left: 22% !important; }
  .bubble-4 { top: 62% !important; left: 48% !important; }
  .bubble-5 { top: 78% !important; left: 28% !important; }

  .whyus-bubble.parallax-active {
    transform: rotate(-4deg) !important;
  }

  .whyus-right {
    width: 92% !important;
    margin-inline: auto !important;
  }
}


@media (min-width: 768px) and (max-width: 1200px) {

  .whyus-revamp {
    grid-template-columns: 1fr !important;
    width: 92% !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 3rem !important;
  }

  .whyus-bubbles {
    min-height: 440px !important;
    position: relative;
  }

  .whyus-bubble {
    width: 38% !important;
    padding: 1rem 1rem !important;
    border-radius: 16px !important;
    opacity: 1 !important;
    transform: rotate(-4deg) !important;
  }

  .bubble-1 { top: 5% !important; left: 5% !important; }
  .bubble-2 { top: 15% !important; left: 52% !important; }
  .bubble-3 { top: 48% !important; left: 20% !important; }
  .bubble-4 { top: 72% !important; left: 50% !important; }
  .bubble-5 { top: 78% !important; left: 10% !important; }

  .whyus-bubble.parallax-active {
    transform: rotate(-4deg) !important;
  }

  .whyus-right {
    width: 92% !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 1200px) {
  .whyus-revamp,
  .whyus-bubbles {
    overflow-x: visible !important;
    overflow-y: visible !important;
  }
}







/* ============================================
   SOCIAL PROOF — 2 MARQUEE ROWS
=============================================== */

.reviews-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    rgba(0,0,0,1) 100px,
    rgba(0,0,0,1) calc(100% - 100px),
    transparent 100%
  );
}

/* ROW */
.reviews-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

/* TRACK */
.reviews-track {
  display: flex;
  gap: 2rem;
  width: max-content;
}

/* MARQUEE DIRECTIONS */
.marquee-left .reviews-track {
  animation: marquee-left 65s linear infinite;
}
.marquee-right .reviews-track {
  animation: marquee-right 75s linear infinite;
}

.marquee-left .reviews-track:hover,
.marquee-right .reviews-track:hover {
  animation-play-state: paused;
}

/* ============================================
   REVIEW CARD
=============================================== */
.review-card {
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 340px);

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 1.2rem;
  border-radius: 18px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: transform .25s ease, background .25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.10);
}

.review-author {
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand);
  margin-bottom: .4rem;
}

.review-text {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-1);
  opacity: .9;
  margin-bottom: .6rem;
}

.review-stars {
  color: var(--brand);
  font-size: 1rem;
  letter-spacing: .1rem;
}

/* ============================================
   ANIMATIONS
=============================================== */

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ============================================
   RESPONSIVE
=============================================== */

@media (max-width: 700px) {
  .review-card {
    width: 74vw;
  }

  .reviews-track {
    gap: 1.2rem;
  }

  .reviews-wrapper {
    mask-image: linear-gradient(
      to right,
      transparent 0,
      rgba(0,0,0,1) 40px,
      rgba(0,0,0,1) calc(100% - 40px),
      transparent 100%
    );
  }

  .marquee-left .reviews-track {
    animation-duration: 55s;
  }
  .marquee-right .reviews-track {
    animation-duration: 60s;
  }
}






/* ============================================================
   SECTION 7 — Finaler CTA (Hybrid Hero Style)
============================================================ */

.finalcta-section {
  margin-top: 120px;
  padding: clamp(4rem, 6vw, 7rem) 0;
  background: var(--bg-2);
  position: relative;
}

/* Farbklecks eindeutig zugeordnet */
.cta-blob::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -15%;
  width: 450px;
  height: 450px;

  background: radial-gradient(
    circle at center,
    rgba(184, 204, 100, 0.25) 0%,
    rgba(184, 204, 100, 0.15) 40%,
    rgba(184, 204, 100, 0.05) 70%,
    rgba(184, 204, 100, 0) 100%
  );

  z-index: 0;
  pointer-events: none;
  transform: rotate(15deg);
}
.cta-blob::before {
  filter: blur(120px);
}
/* -----------------------------------
   MEDIA WRAPPER (wie Hero)
----------------------------------- */

.finalcta-media-wrapper {
  position: relative;
  width: 100%; 
  margin-inline: auto;
  padding-left: clamp(3.1rem, 11vw, 15rem);
  padding-right: clamp(3.1rem, 11vw, 15rem);
  border-radius: 30px;
  overflow: hidden;
  height: 80vh;
}

.finalcta-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 25px;
}

/* -----------------------------------
   OVERLAY CARD
----------------------------------- */

.finalcta-card {
  position: absolute;
  top: 15%;
  right: clamp(14rem, 6.5vw, 12rem);
  height: 70%;
  width: min(650px, 48vw);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(22px);
  padding: clamp(1.6rem, 2vw, 2.2rem);
  padding-top: clamp(2rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: space-between;
}

/* -----------------------------------
   TEXT
----------------------------------- */

.finalcta-title {
  font-size: var(--fs-h1);
  color: var(--ink-1);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: .2rem;
}

.finalcta-sub {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  line-height: 1.6;
  opacity: .85;
  max-width: 520px;
  margin-bottom: .4rem;
}

/* -----------------------------------
   BUTTONS
----------------------------------- */

.finalcta-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.finalcta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .9rem 2rem;
  border-radius: 999px;
  font-size: var(--fs-body);
  font-weight: 500;
  text-decoration: none;
  transition: background .3s ease, color .3s ease, transform .25s ease;
}

/* PRIMARY */
.finalcta-btn.primary {
  background: var(--brand);
  color: #111;
}

.finalcta-btn.primary:hover {
  background: color-mix(in srgb, var(--brand) 90%, white);
  transform: translateY(-2px);
}

/* SECONDARY */
.finalcta-btn.secondary {
  border: 2px solid var(--ink-1);
  color: var(--ink-1);
  background: transparent;
}

.finalcta-btn.secondary:hover {
  background: var(--ink-1);
  color: #000;
  transform: translateY(-2px);
}


/* -----------------------------------
   RESPONSIVE — MOBILE
----------------------------------- */

@media (max-width: 760px) {
  .finalcta-media-wrapper {
    height: 52vh;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .finalcta-media {
    border-radius: 22px;
  }

  .finalcta-card {
    position: relative;
    top: 0;
    right: 0;
    transform: none;

    width: 90%;
    max-width: none;
    margin-inline: auto;
    margin-top: -3.2rem;

    border-radius: 22px;
  }

  .finalcta-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================================
   FINAL CTA — iPad 11"
   768px – 1023px
============================================================ */

@media (min-width: 768px) and (max-width: 1023px) {

  .finalcta-media-wrapper {
    height: 68vh;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .finalcta-media {
    border-radius: 24px;
  }

  .finalcta-card {
    position: absolute;
    top: 100px;
    bottom: 20px;
    right: 80px;
    left: auto;

    width: 80%;
    height: 77%;

    margin: 0;
    transform: none;

    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .finalcta-sub {
    max-width: 100%;
  }

  .finalcta-btns {
    flex-direction: column;
    align-items: stretch;
  }
}


@media (min-width: 1024px) and (max-width: 1366px) {

  .finalcta-media-wrapper {
    height: 75vh;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .finalcta-media {
    border-radius: 26px;
  }

  .finalcta-card {
    position: absolute;
    top: 115px;
    bottom: 24px;
    right: 92px;
    left: auto;

    width: 82%;
    height: 73%;

    margin: 0;
    transform: none;

    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .finalcta-sub {
    max-width: 100%;
  }
}


/* ============================================================
   FCH — FAQ Section (Dark, Clean, Apple-Style)
============================================================ */

.fch-faq {
  padding: clamp(4rem, 6vw, 7rem) 0;
  background: var(--bg-2);
}

.fch-faq__wrap {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-left: clamp(3.1rem, 11vw, 15rem);
  padding-right: clamp(3.1rem, 11vw, 15rem);
}


/* Eyebrow */
.fch-faq__eyebrow {
  color: var(--brand);
  font-size: clamp(.9rem,1vw,1rem);
  letter-spacing: .12em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.fch-faq__eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* Title */
.fch-faq__title {
  font-size: var(--fs-h1);
  color: var(--ink-1);
  font-weight: 600;
  line-height: 1.15;
  margin: 1rem 0 2.2rem;
  max-width: 760px;
}

/* List */
.fch-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fch-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Question Button */
.fch-faq__question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: clamp(16px, 2vw, 22px) 0;
  font-size: var(--fs-body);
  color: var(--ink-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform .22s ease, color .22s ease;
}
.fch-faq__question:hover {
  transform: translateX(6px);
  color: var(--brand);
}

/* Icon */
.fch-faq__icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  position: relative;
  transition: background .2s ease;
}
.fch-faq__icon::before,
.fch-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: var(--ink-1);
  transform: translate(-50%, -50%);
}
.fch-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.fch-faq__question[aria-expanded="true"] .fch-faq__icon::after {
  opacity: 0; /* Minus */
}
.fch-faq__question[aria-expanded="true"] .fch-faq__icon {
  background: rgba(184,204,100,0.18);
}

/* Answer */
.fch-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .28s ease;
}
.fch-faq__answer p {
  margin: 0 0 1rem;
  color: var(--ink-2);
  opacity: .85;
  line-height: 1.6;
  max-width: 720px;
}

/* Footnote */
.fch-faq__footnote {
  margin-top: clamp(2rem,4vw,3rem);
  color: var(--ink-2);
  opacity: .85;
  font-size: .95rem;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 200px !important;
}

@media (min-width: 600px) and (max-width: 1200px) {
  .fch-faq__wrap {
    width: 92% !important;
    max-width: 92% !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 600px) {
  .fch-faq__wrap {
    width: 94% !important;
    max-width: 94% !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}



/* ============================================================
   NAV DROPDOWN — IMAGE PREVIEW + BUTTON CARDS
   ============================================================ */

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 2.4rem clamp(3.1rem, 11vw, 15rem);
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  z-index: 999;
}

.nav-dropdown.hidden {
  display: none;
}

.nav-dropdown-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.nav-dropdown-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.nav-dropdown-item-title {
  font-size: 1.05rem;
  color: var(--ink-1);
  font-weight: 500;
  margin-bottom: .2rem;
}

.nav-dropdown-item-sub {
  font-size: .85rem;
  color: var(--ink-2);
  opacity: .8;
}

.nav-dropdown-arrow {
  font-size: 1.4rem;
  color: var(--ink-2);
  opacity: .7;
}

.nav-dropdown-right {
  width: 40%;
  display: flex;
  justify-content: flex-end;
}

.nav-dropdown-preview {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.nav-dropdown-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .35s ease;
}

.nav-dropdown-preview img.active {
  opacity: 1;
}












/* BLOBS AUS IN MOBIL */
