@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&display=swap');
:root {
	--font-main: 'Aktison Hybelglyde', system-ui, -apple-system, sans-serif;
  --orange: #ee9c2f;
  --orange-dark: #bd741c;

  --blue: #2368c7;
  --blue-soft: #eaf5ff;
  --blue-soft-2: #f3faff;

  --green: #6fbf9b;
  --green-soft: #eefbf5;
  --green-soft-2: #f7fffb;

  --ink: #26302d;
  --muted: #5f706a;

  --paper: #eefbf5;
  --paper-2: #f6fbff;
  --white: #fff;

  --line: rgba(38, 48, 45, .14);
  --shadow: 0 26px 70px rgba(35, 104, 199, .12);

  --wrap: min(1180px, calc(100% - 32px));
  --radius: 32px;

  
  


  --fs-xs: clamp(.78rem, .74rem + .18vw, .9rem);
  --fs-sm: clamp(.9rem, .86rem + .22vw, 1rem);
  --fs-base: clamp(1rem, .96rem + .22vw, 1.08rem);
  --fs-lead: clamp(1.08rem, 1rem + .45vw, 1.28rem);
  --fs-h3: clamp(1.45rem, 1.15rem + 1.1vw, 2.05rem);
  --fs-h2: clamp(2rem, 1.55rem + 2vw, 3.35rem);
  --fs-h1: clamp(2.55rem, 1.9rem + 3.2vw, 4.75rem);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);

  background:
    radial-gradient(circle at 15% 10%, rgba(33, 104, 199, 0.35), transparent 42%),
    radial-gradient(circle at 85% 15%, rgba(16, 67, 141, 0.30), transparent 48%),
    radial-gradient(circle at 50% 100%, rgba(80, 200, 160, 0.14), transparent 55%),
    linear-gradient(180deg, #e3efff 0%, #d2e6ff 35%, #ffffff 100%);

  padding-top: 112px;
  padding-bottom: 20px;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
main{
	margin: clamp(50px, 8vw, 110px) auto;
	width:80%;
}
@media (max-width: 860px) {
  main {
    width: min(93%, 600px);
  }
}
img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p {
  margin: 0;
	font-size: 1.4rem;
	hyphens: auto;
}

p + p {
  margin-top: 1rem;
}

strong,
.strong {
  font-weight: 650;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: #fff;
  color: #111;
  padding: 12px 16px;
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  width: var(--wrap);
  margin: auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  display: block;
  width: 145px;
  max-height: 70px;
  object-fit: contain;
}

.mainnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
}

.mainnav a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 760;
  letter-spacing: .035em;
  font-size: var(--fs-sm);
}

.mainnav a:hover {
  color: var(--orange);
}

/* ===============================
   HEADER CTA – ORANGE GLASS + BLACK TEXT
================================ */

.header-cta {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  white-space: nowrap;

  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;

  padding: 0.6rem 1.2rem;
  border-radius: 999px;

  /* GLASS ORANGE */
  color: #1a1a1a; /* schwarze Schrift */
  background: rgba(238, 156, 47, 0.18);

  border: 1px solid rgba(238, 156, 47, 0.35);

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

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

/* GLANZ OBEN (Apple Look) */
.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.45),
    transparent 50%
  );

  pointer-events: none;
}

/* HOVER */
.header-cta:hover {
  background: rgba(238, 156, 47, 0.28);
  border-color: rgba(238, 156, 47, 0.45);

  transform: translateY(-1px);
}

/* ACTIVE */
.header-cta:active {
  transform: translateY(0);
  background: rgba(238, 156, 47, 0.32);
}

/* OPTIONAL PFEIL */
.header-cta::after {
  content: " →";
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 3px;
  background: var(--ink);
  margin: 7px;
  border-radius: 9px;
}

/* TYPOGRAFIE */

.eyebrow {
  margin: 0 0 18px;
  color: #C11730;
  text-transform: uppercase;
  font-weight: 760;
  letter-spacing: .11em;
  font-size: var(--fs-sm);
  line-height: 1.2;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: 4rem;
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: -.04em;
  
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 680;
  line-height: 1.12;
  letter-spacing: -.03em;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 680;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.lead {
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.62;
  color: var(--ink);
  max-width: 590px;
  margin: 28px 0 0;
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.92), transparent 34%),
    radial-gradient(circle at 85% 85%, rgba(33,104,199,0.18), transparent 44%),
    linear-gradient(145deg, rgba(255,255,255,0.78), rgba(226,242,255,0.58));

  border: 1px solid rgba(255,255,255,0.72);

  box-shadow:
    0 34px 90px rgba(16, 67, 141, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.95);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 0%, rgba(80,170,255,0.22), transparent 42%),
    radial-gradient(circle at 92% 100%, rgba(80,200,160,0.16), transparent 46%);
  pointer-events: none;
}
.hero-home {
  
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: 3rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .85fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
	border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 740px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
/* ===============================
   BUTTON SYSTEM – BLUE GLASS APPLE STYLE
================================ */

/* BASE BUTTON */
.btn {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 0 26px;

  border-radius: 999px;
  text-decoration: none;

  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}
/* ===============================
   BASE BUTTON
================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-align: center;       /* FIX: zentriert bei Umbruch */
  white-space: normal;      /* FIX: erlaubt mehrere Zeilen */

  line-height: 1.2;
  padding: 0.9rem 1.4rem;

  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;
}

/* ===============================
   PRIMARY – GREEN GLASS (APPLE STYLE)
================================ */
.btn-primary {
  color: #0b3d2e;

  background: linear-gradient(
    135deg,
    rgba(25,191,97,0.22),
    rgba(25,191,97,0.12)
  );

  border: 1px solid rgba(25,191,97,0.35);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* GLOSS EFFECT */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.45),
    transparent 50%
  );

  pointer-events: none;
}

/* HOVER */
.btn-primary:hover {
  background: rgba(25, 191, 97, 0.28);
  border-color: rgba(25, 191, 97, 0.45);
  transform: translateY(-1px);
}

/* ACTIVE */
.btn-primary:active {
  transform: translateY(0);
  background: rgba(25, 191, 97, 0.32);
}

/* ===============================
   GHOST BUTTON (leichtes Glass)
================================ */
.btn-ghost {
  color: var(--ink);

  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* ===============================
   FOCUS (Accessibility)
================================ */
.btn:focus-visible {
  outline: 3px solid rgba(238, 156, 47, 0.5);
  outline-offset: 3px;
}

/* ===============================
   OPTIONAL: Mobile volle Breite
================================ */
@media (max-width: 600px) {
  .btn {
    width: 100%;
  }
}







/* SECTIONS */

.logo-strip,
.offers-section,
.news-preview,
.content-section,
.offer-list,
.form-section {
  width: var(--wrap);
  margin: clamp(70px, 9vw, 130px) auto;
}

.logo-strip h2,
.section-head h2 {
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  font-weight: 760;
  letter-spacing: .035em;
}

.trust-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.trust-grid div {
  min-height: 55px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .9);
  font-weight: 650;
  text-align: center;
  padding: 11px;
}

.split-section {
  width: 100%;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.beige {
  background:
    radial-gradient(circle at 15% 10%, rgba(111, 191, 155, .16), transparent 32%),
    linear-gradient(90deg, #eefbf5, #f6fbff);
}

.white {
  background: rgba(255, 255, 255, .66);
}

.text-col h2 {
  max-width: 18ch;
}



.text-link {
  display: inline-block;
  margin-top: 22px;
  font-size: var(--fs-sm);
  font-weight: 760;
  color: var(--orange-dark);
}

.image-collage {
  position: relative;
  min-height: 430px;
}

.photo-card {
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #eaf5ff);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: var(--fs-base);
  font-weight: 650;
  color: var(--blue);
}

.photo-card-large {
  height: 300px;
  width: 70%;
  margin: 70px auto 0;
}

.photo-card-small {
  position: absolute;
  width: 230px;
  height: 160px;
}

.photo-card-small.top {
  right: 0;
  top: 0;
}

.photo-card-small.bottom {
  right: 70px;
  bottom: 0;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}


/* ANGEBOTE */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
}

.offer-card,
.offer-list article,
.news-card,
.info-box,
.contact-card {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-card {
  min-width: 0;
  min-height: 350px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.offer-card span {
  font-size: var(--fs-sm);
  font-weight: 760;
  color: var(--orange);
}

.offer-card h3 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 680;
  line-height: 1.14;
  overflow-wrap: break-word;
  hyphens: auto;
}

.offer-card p {
  margin-top: 18px;
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--muted);
  overflow-wrap: break-word;
}

.offer-card a {
  margin-top: auto;
  font-size: var(--fs-sm);
  font-weight: 760;
  color: var(--orange-dark);
}

.statement-band {
  
  margin: auto;
  padding: clamp(30px, 5vw, 54px);
    background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(238,251,245,.94)),
    linear-gradient(135deg, #f6fbff, #dff7ec);

  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(35, 104, 199, .12);
  box-shadow: 0 18px 55px rgba(35, 104, 199, .10);
}



.statement-band .btn {
  min-height: 50px;
  padding: 0 24px;
  font-size: .9rem;
  font-weight: 720;
  box-shadow: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.news-card {
  overflow: hidden;
  padding: 0 0 28px;
}

.news-card.featured {
  background: #fff;
  border-bottom-right-radius: 70px;
}

.news-image {
  height: 230px;
  background: linear-gradient(135deg, #dff7ec, #eaf5ff);
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* optional schöner Hover Effekt */
.news-card:hover img {
  transform: scale(1.05);
  transition: transform .4s ease;
}

.news-card h3,
.news-card h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  font-weight: 680;
  line-height: 1.15;
  margin: 26px 26px 10px;
}

.news-card time,
.news-card a {
  display: block;
  margin: 12px 26px;
  font-size: var(--fs-sm);
  font-weight: 760;
  color: var(--orange-dark);
  text-decoration: none;
}

/* SUBPAGES */

.page-hero,
.contact-hero,
.article-page,
.legal-page {
  width: var(--wrap);
  margin: clamp(50px, 8vw, 110px) auto;
  padding: clamp(42px, 7vw, 90px);
  border-radius: var(--radius);

  background:
    radial-gradient(circle at 14% 18%, rgba(111, 191, 155, .2), transparent 34%),
    radial-gradient(circle at 90% 16%, rgba(35, 104, 199, .15), transparent 32%),
    linear-gradient(135deg, #ffffff, #eefbf5 52%, #eaf5ff);

  box-shadow: var(--shadow);
}

.page-hero p,
.contact-hero p,
.article-page p {
  font-size: var(--fs-lead);
  line-height: 1.65;
  margin-top: 22px;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.offer-list article {
  padding: 38px;
}

.offer-list h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 680;
  line-height: 1.12;
  margin-bottom: 18px;
  overflow-wrap: break-word;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 40px;
}

.info-box {
  padding: 34px;
}

.info-box li {
  margin: 10px 0;
}

.badge-panel {
  display: grid;
  
  gap: 40px;
  align-items: center;
}

.round-badge {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;

  background: #dff7ec;
  border: 8px solid #fff;
  box-shadow: 0 18px 45px rgba(35, 104, 199, 0.12);
}

.round-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.accordion {
  list-style: none;
  margin: 0;
  padding: 0;
	background:#fff;
	border:1px solid silver;
}

.accordion li {
  border-bottom: 1px solid var(--line);
	padding: 0 2rem;
}

.accordion button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font: 680 clamp(1.2rem, 2vw, 1.55rem) var(--font-main);
  padding: 22px 0;
  cursor: pointer;
  color: var(--ink);
}

.accordion div {
  display: none;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.accordion li.open div {
  display: block;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: center;
}

.contact-card {
  padding: 34px;
  background: #fff;
}

.contact-card a {
  color: var(--orange-dark);
  font-weight: 650;
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin: auto;
}

.contact-form label {
  font-weight: 650;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  background: #fff;
}

.article-page {
  max-width: 980px;
}

.article-page h1 {
  margin-bottom: 20px;
}

.legal-page {
  min-height: 420px;
}

/* DESKTOP MITTEL */

@media (max-width: 1250px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* TABLET */

@media (max-width: 1100px) {
  .mainnav {
    gap: 22px;
  }

  .mainnav a {
    font-size: .9rem;
  }

  .hero-home {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
  }
}

/* MOBILE */

@media (max-width: 980px) {
  body {
    padding-top: 92px;
  }
	

  .header-inner {
    min-height: 92px;
  }

  .brand img {
    width: 118px;
    max-height: 74px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mainnav {
    position: fixed;
    left: 0;
    right: 0;
    top: 92px;
    background: #fff;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }

  .mainnav.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-home {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 46px clamp(18px, 5vw, 28px) 58px;
    gap: 28px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: -.035em;
		font-weight:700;
		text-align:center;
    
  }

  h2 {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
    line-height: 1.14;
		font-weight:620;
  }

  .lead {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 100%;
    text-align: justify;
    hyphens: auto;
  }
	p{text-align: justify;
    hyphens: auto;}

  .hero-actions {
    margin-top: 28px;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
  }

  .hero-visual {
    min-height: 250px;
    justify-content: center;
    margin-top: 0;
  }

  .hero-visual .big-word {
    right: auto;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    font-size: clamp(6rem, 30vw, 10rem);
    opacity: .55;
  }

  .hero-visual img {
    width: min(245px, 64%);
    transform: none;
  }

  .scroll-down {
    display: none;
  }

  .split-section,
  .contact-hero,
  .two-col,
  .badge-panel {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding-left: 16px;
    padding-right: 16px;
    gap: 38px;
  }

  .trust-grid,
  .offer-grid,
  .news-grid,
  .offer-list {
    grid-template-columns: 1fr;
  }

  .statement-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* SMALL MOBILE */

@media (max-width: 680px) {
  :root {
    --wrap: min(100% - 24px, 1180px);
    --radius: 24px;
  }

  body {
    padding-top: 86px;
  }

  .header-inner {
    min-height: 86px;
  }

  .brand img {
    width: 108px;
  }

  .mainnav {
    top: 86px;
  }

  .hero-home {
    padding: 38px 16px 50px;
  }

  
  h1,h2 {
    font-size: 2.2rem;
    font-weight: 700;
		text-align:center;
   
  }

p{
	margin: 28px 0 0;
	font-weight: 400;
	color: var(--ink);
	font-size:1.2rem;
	text-align:justify;
}

  h3 {
    font-size: 1.45rem;
  }

  .lead {
    font-size: 1.2rem;
  }

  .hero-visual {
    min-height: 210px;
  }

  .hero-visual img {
    width: 205px;
  }

  .hero-visual .big-word {
    font-size: 7.5rem;
  }

  .page-hero,
  .contact-hero,
  .article-page,
  .legal-page {
    padding: 30px 22px;
  }

  .offer-card,
  .offer-list article,
  .info-box,
  .contact-card {
    min-height: auto;
    padding: 26px;
  }

  .offer-card h3,
  .news-card h3,
  .news-card h2 {
    font-size: 1.55rem;
  }

  .image-collage {
    min-height: 300px;
  }

  .photo-card-large {
    width: 100%;
    height: 220px;
    margin: 0;
  }

  .photo-card-small {
    position: static;
    width: 100%;
    height: 120px;
    margin-top: 16px;
  }
}

/* =========================
   PREMIUM MEGA MENÜ
========================= */

.nav-item {
  position: relative;
  box-sizing: border-box;
}

.nav-link {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: var(--fs-sm);
  font-weight: 760;
  letter-spacing: .035em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 0;
}

.nav-link:hover,
.nav-item.open .nav-link,
.nav-item:hover .nav-link {
  color: var(--orange-dark);
}

.nav-link::after {
  content: "⌄";
  display: inline-block;
  margin-left: 7px;
  font-size: .85em;
  transform: translateY(-1px);
  transition: transform .25s ease;
}

.nav-item.open .nav-link::after,
.nav-item:hover .nav-link::after {
  transform: rotate(180deg) translateY(1px);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(720px, calc(100vw - 40px));
  padding: 22px;
  border-radius: 28px;

  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(238,251,245,.97));
  border: 1px solid rgba(35, 104, 199, .12);
  box-shadow: 0 26px 70px rgba(35, 104, 199, .14);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 99999;
  box-sizing: border-box;
}

.nav-item:hover .mega-menu,
.nav-item.open .mega-menu,
.mega-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-intro {
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(135deg, #eaf5ff, #dff7ec);
  box-sizing: border-box;
}

.mega-intro strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 760;
  line-height: 1.15;
}

.mega-intro p {
  margin-top: 10px;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--muted);
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mega-links a {
  text-decoration: none;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  box-sizing: border-box;
}

.mega-links a:hover {
  background: #fff;
  border-color: rgba(35, 104, 199, .16);
  transform: translateY(-2px);
}

.mega-links span {
  display: block;
  font-size: .98rem;
  font-weight: 720;
  color: var(--ink);
  line-height: 1.2;
}

.mega-links small {
  display: block;
  margin-top: 5px;
  font-size: .82rem;
  line-height: 1.35;
  color: var(--muted);
}

/* =========================
   MOBILE MEGA MENÜ FIX
========================= */

@media (max-width: 980px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-item {
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  .nav-link {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 14px 0;
    box-sizing: border-box;
  }

  .nav-link::after {
    margin-left: 12px;
    flex: 0 0 auto;
  }

  .mega-menu {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;

    display: none;
    grid-template-columns: 1fr;
    gap: 14px;

    margin: 10px 0 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    overflow: hidden;
  }

  .nav-item.open .mega-menu {
    display: grid;
  }

  .nav-item:hover .mega-menu,
  .nav-item.open .mega-menu,
  .mega-menu:hover {
    transform: none;
  }

  .mega-intro {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eaf5ff, #dff7ec);
  }

  .mega-links {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mega-links a {
    width: 100%;
    max-width: 100%;
    display: block;
    padding: 16px 18px;
    background: rgba(238, 251, 245, .72);
    border-radius: 18px;
  }

  .mega-links a:hover {
    transform: none;
  }
}

/* =====================================
   MOBILE: ERSTEN MEGA-PUNKT AUSBLENDEN
===================================== */

@media (max-width: 980px) {
  .mega-intro {
    display: none;
  }
}

/* =====================================
   STARTSEITE – ANSATZ BILDER FIX
===================================== */

.approach-photos {
  position: relative;
  min-height: 430px;
}

.approach-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.approach-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.approach-photo-main {
  width: 72%;
  height: 320px;
  margin: 60px auto 0;
}

.approach-photo-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 170px;
}

.approach-photo-bottom {
  position: absolute;
  right: 70px;
  bottom: 0;
  width: 240px;
  height: 170px;
}

@media (max-width: 980px) {
  .approach-photos {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .approach-photo-main,
  .approach-photo-top,
  .approach-photo-bottom {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .approach-photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .approach-photo {
    border-radius: 22px;
  }

  .approach-photo img {
    aspect-ratio: 1 / 1;
  }
}
/* =========================================================
   WHATSAPP SYSTEM – FINAL PREMIUM UX
========================================================= */

.premium-wa {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  height: 58px;
  min-width: 178px;
  padding: 0 22px 0 18px;

  border-radius: 999px;
  
  text-decoration: none;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.01em;

  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,0.42), transparent 30%),
    linear-gradient(135deg, #36e982 0%, #19bf61 52%, #0b8f42 100%);

  border: 1px solid rgba(255,255,255,0.38);

  box-shadow:
    0 18px 46px rgba(13,143,66,0.38),
    0 8px 18px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.42);

  transform: translateZ(0);
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.premium-wa::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.38), transparent 44%);
  pointer-events: none;
}

.premium-wa::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.45), transparent 62%);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .premium-wa:hover {
    transform: translateY(-4px) scale(1.03);
    filter: saturate(1.08);
    box-shadow:
      0 24px 60px rgba(13,143,66,0.48),
      0 12px 24px rgba(0,0,0,0.20),
      inset 0 1px 0 rgba(255,255,255,0.52);
  }

  .premium-wa:hover::before {
    opacity: 1;
    transform: scale(1.08);
  }
}

.premium-wa:focus-visible {
  outline: 4px solid rgba(51,226,123,0.35);
  outline-offset: 4px;
}

.wa-icon {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.wa-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}

.wa-label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  font-size: 0.95rem;
  line-height: 1;
}

.wa-tooltip {
  display: none;
}

.header-whatsapp {
  display: none !important;
}

@media (max-width: 980px) {
  .premium-wa {
    display: none !important;
  }

  .header-whatsapp {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    margin-left: auto;
    margin-right: 10px;

    height: 42px;
    min-width: 0;
    padding: 0 14px;

    border-radius: 999px;

    background:
      radial-gradient(circle at 26% 18%, rgba(255,255,255,0.42), transparent 30%),
      linear-gradient(135deg, #36e982 0%, #19bf61 52%, #0b8f42 100%);

    
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;

    border: 1px solid rgba(255,255,255,0.38);

    box-shadow:
      0 10px 26px rgba(13,143,66,0.25),
      inset 0 1px 0 rgba(255,255,255,0.42);

    overflow: hidden;
    position: relative;

    transition:
      height 0.25s ease,
      padding 0.25s ease,
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .header-whatsapp::before {
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background: currentColor;
    flex: 0 0 auto;

    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.04 3C8.88 3 3.06 8.82 3.06 15.98c0 2.3.6 4.54 1.75 6.52L3 29l6.68-1.75a12.9 12.9 0 0 0 6.36 1.62h.01c7.16 0 12.98-5.82 12.98-12.98C29.03 8.82 23.2 3 16.04 3Zm0 23.67h-.01a10.72 10.72 0 0 1-5.47-1.5l-.39-.23-3.96 1.04 1.06-3.86-.25-.4a10.7 10.7 0 0 1-1.65-5.74c0-5.9 4.8-10.7 10.7-10.7 2.86 0 5.54 1.11 7.56 3.13a10.63 10.63 0 0 1 3.13 7.55c0 5.9-4.8 10.71-10.72 10.71Z'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.04 3C8.88 3 3.06 8.82 3.06 15.98c0 2.3.6 4.54 1.75 6.52L3 29l6.68-1.75a12.9 12.9 0 0 0 6.36 1.62h.01c7.16 0 12.98-5.82 12.98-12.98C29.03 8.82 23.2 3 16.04 3Zm0 23.67h-.01a10.72 10.72 0 0 1-5.47-1.5l-.39-.23-3.96 1.04 1.06-3.86-.25-.4a10.7 10.7 0 0 1-1.65-5.74c0-5.9 4.8-10.7 10.7-10.7 2.86 0 5.54 1.11 7.56 3.13a10.63 10.63 0 0 1 3.13 7.55c0 5.9-4.8 10.71-10.72 10.71Z'/%3E%3C/svg%3E") no-repeat center / contain;
  }

  .header-whatsapp::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.34), transparent 46%);
    pointer-events: none;
  }

  .menu-toggle {
    margin-left: 0;
  }

  body.wa-compact .header-whatsapp {
    height: 34px;
    padding: 0 10px;
    font-size: 0.72rem;
    opacity: 0.88;
    transform: translateY(-2px);
  }

  body.wa-compact .header-whatsapp::before {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
}

@media (max-width: 420px) {
  .header-whatsapp {
    height: 38px;
    padding: 0 11px;
    font-size: 0.74rem;
  }

  body.wa-compact .header-whatsapp {
    height: 32px;
    padding: 0 9px;
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-wa,
  .premium-wa::before,
  .header-whatsapp {
    transition: none;
  }
}
/* =====================================================
   STICKY ZURÜCK / WEITER – ULTRA APPLE STYLE
===================================================== */

.sticky-next-offer {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 80;

  width: min(440px, calc(100% - 72px));
  pointer-events: none;
}
.sticky-offer-combined {
  pointer-events: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  overflow: hidden;
  border-radius: 999px;

  /* ===== Apple Style Gradient ===== */
  background:
    linear-gradient(
      135deg,
      rgba(0, 118, 223, 0.95),
      rgba(10, 132, 255, 0.98)
    );

  border: 1px solid rgba(255, 255, 255, 0.45);

  /* ===== Soft Shadow + Depth ===== */
  box-shadow:
    0 16px 40px rgba(0, 118, 223, 0.25),
    0 6px 16px rgba(16, 67, 141, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 35, 90, 0.15);

  /* ❌ iPhone BUG FIX → KEIN BLUR */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  /* ✅ GPU Fix für Safari */
  transform: translateZ(0);
  will-change: transform;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

/* ===== Hover ===== */
.sticky-offer-combined:hover {
  transform: translateY(-2px);

  box-shadow:
    0 22px 55px rgba(0, 118, 223, 0.32),
    0 8px 22px rgba(16, 67, 141, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.offer-side {
  flex: 1;

  appearance: none;
  border: 0;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  min-height: 44px;
  padding: 11px 16px;

  color: #fff;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;

  cursor: pointer;
  transition:
    background 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.offer-side:hover {
  background: rgba(255, 255, 255, 0.13);
}

.offer-side:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: -4px;
}

.offer-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
}

.offer-side.is-hidden {
  opacity: 0.35;
  pointer-events: none;
}

/* =====================================================
   MOBILE – KLEINER / MEHR LUFT
===================================================== */

@media (max-width: 640px) {
  .sticky-next-offer {
    bottom: 14px;

    /* deutlich schmaler als vorher */
    width: min(360px, calc(100% - 86px));
  }

  .offer-side {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.82rem;
    font-weight: 850;
  }

  .offer-divider {
    height: 22px;
  }

  body {
    padding-bottom: 70px;
  }
}

/* sehr kleine Geräte */
@media (max-width: 380px) {
  .sticky-next-offer {
    width: calc(100% - 72px);
  }

  .offer-side {
    font-size: 0.78rem;
    padding: 10px 9px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .sticky-offer-combined,
  .offer-side {
    transition: none;
  }

  .sticky-offer-combined:hover {
    transform: none;
  }
}
/* ===============================
   HERO
   =============================== */

.offer-detail-hero {
  position: relative;
  overflow: hidden;

  min-height: clamp(400px, 42vw, 560px);
  display: flex;
  align-items: center;

  background:
    radial-gradient(circle at 12% 18%, rgba(111, 191, 155, .24), transparent 36%),
    radial-gradient(circle at 88% 24%, rgba(35, 104, 199, .18), transparent 34%),
    linear-gradient(105deg, #f6fbff 0%, #eefbf5 56%, #eaf5ff 100%);

  border-radius: 0 0 36px 36px;

  box-shadow:
    0 28px 80px rgba(35, 104, 199, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

/* Premium-Glanz */
.offer-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(
      115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.52) 38%,
      transparent 60%
    );

  transform: translateX(-120%);
  animation: heroShine 6.4s ease-in-out infinite;
  pointer-events: none;
}

/* Hero-Logo unten rechts */
.offer-detail-hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 4vw, 54px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 1;

  width: clamp(170px, 18vw, 270px);
  height: clamp(170px, 18vw, 270px);

  

  opacity: 0.42;
  filter:
    saturate(1.2)
    contrast(1.05)
    drop-shadow(0 16px 28px rgba(35, 104, 199, 0.14));

  pointer-events: none;
}

.offer-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}




/* ===============================
   WRAPPER
   =============================== */

.offer-detail-wrap {
  
  margin: clamp(34px, 5vw, 74px) auto;
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

/* ===============================
   PREMIUM CARDS – BLAU/GRÜN
=============================== */

.premium-content-card,
.premium-topic-card,
.price-premium-card,
.cta-premium-card {
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(35, 104, 199, 0.14);
  border-radius: 32px;

  background:
    radial-gradient(circle at 10% 0%, rgba(35, 104, 199, 0.10), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(111, 191, 155, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 245, 255, 0.94));

  box-shadow:
    0 24px 70px rgba(35, 104, 199, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);

  padding: clamp(28px, 4vw, 46px);
  padding-top: clamp(44px, 4vw, 58px);
  padding-right: clamp(92px, 10vw, 140px);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* dezenter Box-Glanz */
.premium-content-card::before,
.premium-topic-card::before,
.price-premium-card::before,
.cta-premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.44) 40%,
      transparent 60%
    );

  transform: translateX(-125%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

/* Logo in Boxen oben rechts */
.premium-content-card::after,
.premium-topic-card::after,
.price-premium-card::after,
.cta-premium-card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;

  width: 78px;
  height: 78px;

  background: url("/assets/img/logo.png") center / contain no-repeat;

  opacity: 0.30;
  filter:
    saturate(1.1)
    contrast(1.05)
    drop-shadow(0 10px 18px rgba(35, 104, 199, 0.12));

  pointer-events: none;
}

.premium-content-card:hover,
.premium-topic-card:hover,
.price-premium-card:hover,
.cta-premium-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 104, 199, 0.32);

  box-shadow:
    0 34px 88px rgba(35, 104, 199, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.premium-content-card:hover::before,
.premium-topic-card:hover::before,
.price-premium-card:hover::before,
.cta-premium-card:hover::before {
  transform: translateX(125%);
}

/* ===============================
   TYPOGRAFIE
=============================== */

.section-kicker {
  position: relative;
  z-index: 2;

  margin: 0 0 12px;
  color: #2f7f9e;

  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-content-card h2,
.premium-topic-card h2,
.price-premium-card h2,
.cta-premium-card h2 {
  position: relative;
  z-index: 2;

  margin: 0 0 18px;
  color: var(--ink);

  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}



.lead-text {
  color: var(--ink) !important;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem) !important;
  line-height: 1.72 !important;
}

/* ===============================
   THEMEN-CHIPS
=============================== */

.section-head-left {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}


/* ===============================
   PREISE + CTA
=============================== */

.premium-bottom-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(18px, 2.4vw, 28px);
}

.price-row {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 18px 0;
  border-bottom: 1px solid rgba(35, 104, 199, 0.12);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: var(--muted);
  font-weight: 700;
  font-size: 1.4rem;
}

.price-row strong {
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ===============================
   PREMIUM TEXT-LINK
=============================== */

.premium-text-link {
  position: relative;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  width: fit-content;

  margin-top: 18px;

  color: #2368c7;
  font-weight: 950;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.premium-text-link::after {
  content: " →";
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.premium-text-link:hover::after {
  transform: translateX(5px);
}

.premium-text-link:focus-visible {
  outline: 3px solid rgba(35, 104, 199, 0.35);
  outline-offset: 6px;
  border-radius: 8px;
}

/* ===============================
   ANIMATION
=============================== */

@keyframes heroShine {
  0%,
  58% {
    transform: translateX(-120%);
  }

  78%,
  100% {
    transform: translateX(120%);
  }
}

/* ===============================
   TABLET
=============================== */

@media (max-width: 980px) {
  .premium-bottom-grid {
    grid-template-columns: 1fr;
  }

  .offer-detail-hero::after {
    opacity: 0.38;
  }

  .premium-content-card,
  .premium-topic-card,
  .price-premium-card,
  .cta-premium-card {
    padding-right: 110px;
  }

  .premium-content-card::after,
  .premium-topic-card::after,
  .price-premium-card::after,
  .cta-premium-card::after {
    width: 68px;
    height: 68px;
    opacity: 0.28;
  }
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 640px) {
  .offer-detail-hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 76px;
    border-radius: 0 0 28px 28px;
  }

  .offer-detail-hero::after {
    display: none;
  }

 


  .offer-detail-hero {
    width: 100%;
    overflow: hidden;
  }

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

  .premium-content-card,
  .premium-topic-card,
  .price-premium-card,
  .cta-premium-card {
    border-radius: 24px;
    padding: 24px;
  }

  .premium-content-card::after,
  .premium-topic-card::after,
  .price-premium-card::after,
  .cta-premium-card::after {
    display: none;
  }

  .premium-content-card h2,
  .premium-topic-card h2,
  .price-premium-card h2,
  .cta-premium-card h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
    letter-spacing: -0.025em;
  }

  .topic-grid {
    gap: 10px;
  }

  .topic-grid span {
    width: 100%;
    justify-content: flex-start;
    border-radius: 18px;
  }

  .price-row strong {
    font-size: 1.28rem;
  }
}

/* ===============================
   BEWEGUNGEN REDUZIEREN
=============================== */

@media (prefers-reduced-motion: reduce) {
  .offer-detail-hero::before {
    animation: none;
  }

  .premium-content-card,
  .premium-topic-card,
  .price-premium-card,
  .cta-premium-card,
  .premium-content-card::before,
  .premium-topic-card::before,
  .price-premium-card::before,
  .cta-premium-card::before,
  .topic-grid span,
  .premium-text-link::after {
    transition: none;
  }

  .premium-content-card:hover,
  .premium-topic-card:hover,
  .price-premium-card:hover,
  .cta-premium-card:hover,
  .topic-grid span:hover {
    transform: none;
  }
}



.themen-rahmen {  
  padding: 3rem;
  margin: 20px auto;
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

/* Einzelbox innerhalb Rahmen */
.themen-box {
  background-color: transparent;
  padding: 0;
  margin: 1rem;
  box-sizing: border-box;
  
  border-radius: 12px;
  hyphens: auto;
}
.blaugruen{
	background:
    radial-gradient(circle at 12% 18%, rgba(111, 191, 155, .24), transparent 36%),
    radial-gradient(circle at 88% 24%, rgba(35, 104, 199, .18), transparent 34%),
    linear-gradient(105deg, #f6fbff 0%, #eefbf5 56%, #eaf5ff 100%);
}
.blau{
	background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.92), transparent 34%),
    radial-gradient(circle at 85% 85%, rgba(33,104,199,0.18), transparent 44%),
    linear-gradient(145deg, rgba(255,255,255,0.78), rgba(226,242,255,0.58));

  border: 1px solid rgba(255,255,255,0.72);

  box-shadow:
    0 34px 90px rgba(16, 67, 141, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.95);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.blau::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 0%, rgba(80,170,255,0.22), transparent 42%),
    radial-gradient(circle at 92% 100%, rgba(80,200,160,0.16), transparent 46%);
  pointer-events: none;
}
.gruen{
	background: 
	linear-gradient(135deg, rgba(255,255,255,.88), rgba(238,251,245,.94)), 
	linear-gradient(135deg, #f6fbff, #dff7ec);
}

/* ===============================
   MOBILE TYPOGRAFIE GLOBAL
   =============================== */
@media (max-width: 768px) {
	
.themen-rahmen {  
  padding: 1rem;
  
}
	/* Einzelbox innerhalb Rahmen */
.themen-box {  
  margin: 1rem;
  
}

  /* ===============================
     HEADLINES (H1 + H2)
     =============================== */
  h1,
  h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.035em;
    margin: 0;
    font-family: var(--font-main);
    color: var(--ink);
    text-wrap: balance;
    hyphens: none;
  }

  /* Optional: H2 minimal kleiner für bessere Hierarchie */
  h2 {
    font-size: 2rem;
  }

  /* ===============================
     TEXT (P)
     =============================== */
  p {
    font-size: 1.2rem;
    line-height: 1.65;
    max-width: 100%;
    text-align: justify;
    hyphens: auto;
    font-weight: 400;
    color: var(--ink);
    margin: 28px 0 0;
  }

  /* ===============================
     EYEBROW / KICKER
     =============================== */
  .eyebrow {
    font-size: 1rem;
    letter-spacing: 0.09em;
    text-align: center;

    margin: 0 0 18px;
    color: #C11730;
    text-transform: uppercase;
    font-weight: 760;
    line-height: 1.2;
  }

}
.zentriert{
	text-align:center;
}

/* ===============================
   PREMIUM ANGEBOTE – FINAL FIX
================================ */

.offers-premium {
  width: 100%;
  max-width: none;
  margin: var(--space-2xl) auto;
  padding: 40px 24px;
}

.offers-premium .section-head {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}






/* WICHTIG: komplett eigenes Grid, nicht .offer-grid */
.offers-premium .premium-offer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;

  justify-content: center;
  justify-items: center;
  align-items: center;
}

/* Karte */
.offers-premium .premium-offer-card {
  position: relative;
  display: block;
  overflow: hidden;

  width: 100%;
  max-width: 360px;
  aspect-ratio: 7 / 5;

  border-radius: 26px;
  text-decoration: none;
  color: #fff;
  background: #10241f;
  isolation: isolate;

  border: 1px solid rgba(255, 255, 255, .34);
  box-shadow:
    0 22px 60px rgba(16, 67, 141, .14),
    0 8px 22px rgba(0, 0, 0, .10);
}

/* 7. Karte mittig auf Desktop */
.offers-premium .premium-offer-card:nth-child(7) {
  grid-column: 2;
}

/* Bild */
.offers-premium .premium-offer-card img {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform .75s ease, filter .75s ease;
}

/* Overlay */
.offers-premium .offer-overlay {
  position: absolute;
  inset: 8%;
  z-index: 2;

  background: linear-gradient(
    180deg,
    rgba(5, 14, 12, .30),
    rgba(5, 14, 12, .58),
    rgba(5, 14, 12, .80)
  );

  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 18px 46px rgba(0, 0, 0, .22);

  transition: inset .3s ease, background .3s ease;
}

/* Inhalt exakt mittig */
.offers-premium .offer-content {
  position: absolute;
  inset: 0;
  z-index: 4;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
  padding: 24px;
  text-align: center;
}

.offers-premium .offer-plus {
  display: block;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .65);
  font-size: 3.2rem;
  font-weight: 200;
  line-height: .8;
  text-align: center;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

.offers-premium .offer-content p {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(.85rem, 1.1vw, 1rem);
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 8px 26px rgba(0, 0, 0, .45);
}

/* alte Elemente sicher ausblenden */
.offers-premium .offer-content h3,
.offers-premium .premium-offer-card::after,
.offers-premium .offer-number {
  display: none !important;
}

/* Hover */
.offers-premium .premium-offer-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.05);
}

.offers-premium .premium-offer-card:hover .offer-overlay {
  inset: 6%;
  background: linear-gradient(
    180deg,
    rgba(5, 14, 12, .22),
    rgba(5, 14, 12, .50),
    rgba(5, 14, 12, .84)
  );
}

.offers-premium .premium-offer-card:focus-visible {
  outline: 4px solid #4fd39b;
  outline-offset: 5px;
}

/* Tablet */
@media (max-width: 980px) {
  .offers-premium .premium-offer-grid {
    grid-template-columns: repeat(2, 1fr);
    width: min(760px, 100%);
  }

  .offers-premium .premium-offer-card:nth-child(7) {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .offers-premium {
    padding: 35px 18px;
  }

  .offers-premium .premium-offer-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offers-premium .premium-offer-card,
  .offers-premium .premium-offer-card:nth-child(7) {
    grid-column: auto;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
  }

  .offers-premium .offer-overlay {
    inset: 7%;
  }

  .offers-premium .offer-plus {
    margin-bottom: 18px;
    font-size: 3rem;
  }

  .offers-premium .offer-content p {
    font-size: clamp(.85rem, 3.6vw, 1rem);
  }
}
/* ==========================================
   ANSATZ BILDER – 4:3 FINAL (Desktop + Mobile)
========================================== */

.approach-photos {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}

/* Alle Bilder */
.approach-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;

  aspect-ratio: 4 / 3;   /* 🔥 DAS ist der wichtigste Punkt */

  border-radius: 28px;
  background: #fff;

  border: 1px solid rgba(255,255,255,0.4);

  box-shadow:
    0 28px 70px rgba(16, 67, 141, 0.18),
    0 10px 28px rgba(0, 0, 0, 0.12);

  transition: transform .4s ease, box-shadow .4s ease;
}

/* Bild */
.approach-photo img {
  width: 100%;
 
  object-fit: cover;
}

/* ===============================
   DESKTOP (jetzt automatisch 4:3)
================================ */

.approach-photo-main {
  width: 70%;
  left: 0;
  top: 60px;
  z-index: 1;
}

.approach-photo-top {
  width: 46%;
  right: 0;
  top: 0;
  z-index: 4;
height: 50%;}

.approach-photo-bottom {
  width: 58%;
  height: 58%;
  right: 20px;
  bottom: 0;
  z-index: 3;
}

/* Container Höhe automatisch berechnen */
.approach-photos::before {
  content: "";
  display: block;
  padding-top: 80%; /* sorgt für stabile Höhe */
}


@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }

  .mainnav {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;

    height: calc(100dvh - 96px);
    max-height: calc(100dvh - 96px);

    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 140px;
  }

  .mainnav.open {
    display: flex;
  }

  .mega-menu {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }

  .mainnav {
    position: fixed;
    top: var(--mobile-menu-top, 110px);
    left: 0;
    right: 0;
    bottom: 0;

    height: calc(100dvh - var(--mobile-menu-top, 110px));
    max-height: calc(100dvh - var(--mobile-menu-top, 110px));

    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;

    scroll-padding-top: 24px;
    padding-bottom: 160px;
  }

  .mainnav.open {
    display: block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
@media (max-width: 980px) {
  .mainnav > a,
  .mainnav > .nav-item > .nav-link {
    font-family: var(--font-main);
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink) !important;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 48px;
    padding: 14px 0;

    background: transparent !important;
    border: 0 !important;
    text-decoration: none !important;
    text-align: left;
  }

  .mainnav > a:visited,
  .mainnav > a:hover,
  .mainnav > a:focus,
  .mainnav > .nav-item > .nav-link:hover,
  .mainnav > .nav-item > .nav-link:focus {
    color: var(--ink) !important;
  }

  .mainnav > a.active,
  .mainnav > .nav-item > .nav-link.active {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: var(--ink) !important;
  }
}


/* ===============================
   TOPIC GRID – BASIS
   =============================== */

.topic-grid {
  position: relative;
  z-index: 3;
  margin-top: 3rem;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

/* ===============================
   ITEMS (SPAN)
   =============================== */

.topic-grid span {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 70px;
  padding: 16px;

  border-radius: 18px;
  background: #ffffff; /* immer weiß */
  border: 1px solid rgba(35, 104, 199, 0.15);

  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;

  box-shadow: 0 10px 25px rgba(16, 67, 141, 0.08);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover nur Desktop */
@media (hover: hover) {
  .topic-grid span:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(16, 67, 141, 0.15);
  }
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 640px) {
  .topic-grid {
    grid-template-columns: 1fr; /* untereinander */
    gap: 12px;
  }

  .topic-grid span {
    font-size: 1.2rem;
    min-height: 64px;
  }
}

/* ===============================
   DESKTOP
   =============================== */

@media (min-width: 641px) {
  .topic-grid span {
    font-size: 1.15rem;
  }
}
.marg {
  
  margin: 28px 0 0;
}


.hero-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(320px, 42vw, 500px);

  display: flex;
  align-items: center;
  justify-content: center; /* 👉 DESKTOP nach rechts */
  overflow: hidden;
}

.hero-visual img {
  width: min(310px, 90%);
  max-height: 360px;

  object-fit: cover;
  aspect-ratio: 1 / 1;

  border-radius: 50%;
  border: 6px solid #fff;

  box-shadow: none;
  filter: none;

  position: relative;
  z-index: 2;

  transform: translateX(8%); /* 👉 leicht weiter nach rechts */
	background-color: white;
}

/* MOBILE bleibt mittig */
@media (max-width: 860px) {
  .hero-visual {
    justify-content: center; /* 👉 wieder mittig */
  }

  .hero-visual img {
    transform: none;
    margin: 0 auto;
    display: block;
		width: min(310px, 70%);
  }
}
.hide-mobile {
  display: block;
}

@media (max-width: 860px) {
  .hide-mobile {
    display: none !important;
  }
}
/* Mobil ausblenden – stark genug gegen Card-Styles */
@media (max-width: 860px) {
  .hide-mobile,
  .cta-premium-card.hide-mobile,
  article.hide-mobile {
    display: none !important;
    visibility: hidden !important;
  }
}
@media (min-width: 981px) {
  .mobile-only {
    display: none;
  }
}

/* ===============================
   APPLE STYLE FOOTER KOMPLETT
   =============================== */

.site-footer {
  margin-top: 80px;
  background: #f5f5f7;
  color: #1d1d1f;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--font-main, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.footer-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 26px;
}

/* kleine obere Zeile wie Apple Breadcrumb */
.footer-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: #5f6368;
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-breadcrumb img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* Desktop Spalten */
.footer-nav {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.1fr 1fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-head {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 12px;
  color: #1d1d1f;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.3;
  text-align: left;
  cursor: default;
}

.footer-head::after {
  display: none;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #515154;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 430;
  line-height: 1.38;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue, #2368c7);
  text-decoration: underline;
}

.footer-links a:focus-visible,
.footer-socials a:focus-visible,
.footer-head:focus-visible {
  outline: 2px solid rgba(35, 104, 199, 0.35);
  outline-offset: 4px;
  border-radius: 6px;
}

/* Qualifikation */
.footer-col-trust {
  color: #515154;
}

.footer-trust {
  gap: 10px;
}

.footer-trust img {
  width: 82px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-trust p {
  margin: 0;
  color: #515154;
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 170px;
}

.footer-trust strong {
  display: block;
  color: #1d1d1f;
  font-size: 0.84rem;
  margin-bottom: 3px;
}

/* Bottom */
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  color: #6e6e73;
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-bottom p {
  margin: 0;
  color: #6e6e73;
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-socials a {
  color: #515154;
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-socials a:hover {
  color: var(--blue, #2368c7);
  text-decoration: underline;
}

/* ===============================
   WHATSAPP FLOAT
   =============================== */

.whatsapp-float.premium-wa {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 999;

  min-height: 54px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 999px;
  background: linear-gradient(135deg, #35e87b 0%, #08b653 100%);
  color: #07351a;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.96rem;

  box-shadow:
    0 18px 40px rgba(8, 182, 83, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.whatsapp-float.premium-wa:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
  box-shadow:
    0 24px 54px rgba(8, 182, 83, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.wa-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.wa-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.wa-label {
  line-height: 1;
}
/* ===============================
   APPLE STYLE FOOTER KOMPLETT
   =============================== */

.site-footer {
  margin-top: 80px;
  background: #fff;
  color: #1d1d1f;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--font-main, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.footer-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 26px;
}

/* obere Logo-Zeile */
.footer-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: #5f6368;
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-breadcrumb img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* Desktop */
.footer-nav {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.1fr 1fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-head {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 12px;
  color: #1d1d1f;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.3;
  text-align: left;
  cursor: default;
}

.footer-head::after {
  display: none;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #515154;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 430;
  line-height: 1.38;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue, #2368c7);
  text-decoration: underline;
}

.footer-links a:focus-visible,
.footer-socials a:focus-visible,
.footer-head:focus-visible {
  outline: 2px solid rgba(35, 104, 199, 0.35);
  outline-offset: 4px;
  border-radius: 6px;
}

/* ===============================
   QUALIFIKATION / TRUST
   =============================== */

.footer-col-trust {
  text-align: center;
}

.footer-col-trust .footer-head {
  text-align: center;
  width: 100%;
}

/* kein Plus bei Qualifikation */
.footer-col-trust .footer-head::after {
  display: none !important;
  content: none !important;
}

.footer-col-trust .footer-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-col-trust img {
  width: 96px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  opacity: 0.92;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (hover: hover) {
  .footer-col-trust img:hover {
    transform: scale(1.04);
    opacity: 1;
  }
}

.footer-col-trust p {
  margin: 0;
  text-align: center;
  max-width: 180px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #6e6e73;
}

.footer-col-trust strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1d1d1f;
}

/* Bottom */
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #6e6e73;
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-bottom p {
  margin: 0;
  color: #6e6e73;
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-socials a {
  color: #515154;
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-socials a:hover {
  color: var(--blue, #2368c7);
  text-decoration: underline;
}

/* ===============================
   WHATSAPP FLOAT
   =============================== */

.whatsapp-float.premium-wa {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 999;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #35e87b 0%, #08b653 100%);
  color: #07351a;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.96rem;
  box-shadow:
    0 18px 40px rgba(8, 182, 83, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.whatsapp-float.premium-wa:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
  box-shadow:
    0 24px 54px rgba(8, 182, 83, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.wa-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.wa-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.wa-label {
  line-height: 1;
}

/* ===============================
   MOBILE APPLE ACCORDION
   =============================== */

@media (max-width: 760px) {
  .site-footer {
    margin-top: 56px;
  }

  .footer-inner {
    width: min(100% - 32px, 520px);
    padding: 22px 0 24px;
  }

  .footer-breadcrumb {
    margin-bottom: 6px;
    padding-bottom: 18px;
    font-size: 0.82rem;
  }

  .footer-breadcrumb img {
    width: 24px;
    height: 24px;
  }

  .footer-nav {
    display: block;
  }

  .footer-col {
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  }

  .footer-head {
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1d1d1f;
    font-size: 0.92rem;
    font-weight: 520;
    cursor: pointer;
  }

  .footer-head::after {
    content: "+";
    display: inline-block;
    color: #6e6e73;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .footer-col.open .footer-head::after {
    transform: rotate(45deg);
  }

  .footer-links {
    display: none;
    padding: 0 0 16px 14px;
    gap: 10px;
  }

  .footer-col.open .footer-links {
    display: grid;
  }

  .footer-links a {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  /* Qualifikation mobil immer sichtbar */
  .footer-col-trust {
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    padding-bottom: 20px;
  }

  .footer-col-trust .footer-head {
    cursor: default;
    justify-content: flex-start;
    text-align: left;
  }

  .footer-col-trust .footer-head::after {
    display: none !important;
    content: none !important;
  }

  .footer-col-trust .footer-trust {
    display: flex !important;
    padding: 8px 0 0;
  }

  .footer-col-trust img {
    width: 82px;
  }

  .footer-col-trust p {
    max-width: 260px;
    font-size: 0.88rem;
  }

  .footer-col-trust strong {
    font-size: 0.92rem;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 16px;
    display: grid;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 0.78rem;
  }

  .footer-socials {
    justify-content: flex-start;
    gap: 12px 14px;
  }

  .footer-socials a {
    font-size: 0.82rem;
  }

  .whatsapp-float.premium-wa {
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.9rem;
  }
}
.footer-col-trust {
  border-bottom: none;
}

/* =====================================================
   STICKY NAV – AUTO HIDE / SHOW
===================================================== */

.sticky-next-offer {
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

/* Beim Runterscrollen ausblenden */
.sticky-next-offer.is-hidden-scroll {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

/* Beim Hochscrollen wieder anzeigen */
.sticky-next-offer.is-visible-scroll {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Unten immer sichtbar */
.sticky-next-offer.is-bottom {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}



/* ===============================
   ONLINE-KURS GLÜCKSMOMENTE
================================ */

.kurs-hero {
  margin-bottom: 2rem;
}

.kurs-login-section {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.kurs-form {
  width: min(520px, 100%);
  margin: 2rem auto 0;
  display: grid;
  gap: 1.1rem;
}

.kurs-form label {
  display: grid;
  gap: .45rem;
  font-weight: 850;
  color: var(--ink);
}

.kurs-form input {
  width: 100%;
  border: 1px solid rgba(35, 104, 199, .18);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  font: inherit;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(16, 67, 141, .08);
}

.kurs-form input:focus {
  outline: 3px solid rgba(35, 104, 199, .22);
  border-color: rgba(35, 104, 199, .45);
}

.kurs-error {
  width: min(520px, 100%);
  margin: 1rem auto;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(238, 156, 47, .16);
  color: #8a4a00;
  font-weight: 850;
}

.kurs-grid {
  width: min(1050px, calc(100% - 2rem));
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.kurs-card {
  text-decoration: none;
  color: var(--ink);
  padding: 1.4rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(35,104,199,.16), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(234,245,255,.9));
  border: 1px solid rgba(35, 104, 199, .16);
  box-shadow: 0 18px 45px rgba(16, 67, 141, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.kurs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16, 67, 141, .18);
}

.kurs-card span {
  display: inline-flex;
  margin-bottom: .8rem;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.kurs-card h3 {
  margin: 0 0 .6rem;
  font-size: 1.25rem;
}

.kurs-card p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.kurs-video {
  width: min(840px, 100%);
  margin: 2rem auto;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #dbeafe;
  box-shadow: 0 22px 60px rgba(16, 67, 141, .16);
  border: 1px solid rgba(35, 104, 199, .16);
}

.kurs-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.kurs-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

  .kurs-card {
    border-radius: 22px;
  }

  .kurs-video {
    border-radius: 20px;
  }
}



.footer-course-cta {
  display: flex;
  justify-content: center;
  margin: 1.2rem 0 1.6rem;
  padding: 0 1rem;
}

.footer-course-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 300px;

  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;

  border-radius: 999px;

  color: #2368c7;
  background: rgba(35, 104, 199, 0.08);

  border: 1px solid rgba(35, 104, 199, 0.15);

  text-decoration: none;

  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-course-button:hover {
  background: rgba(35, 104, 199, 0.12);
  border-color: rgba(35, 104, 199, 0.25);
}
.footer-course-button::after {
  content: " →";
  font-weight: 600;
}




/* ===============================
   ONLINE-KURS FORTSCHRITT
   In style.css ans Ende einfügen
================================ */

.kurs-progress {
  width: min(420px, 100%);
  margin: 1.4rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(35,104,199,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kurs-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.kurs-progress-top strong {
  color: var(--blue);
  white-space: nowrap;
}

.kurs-progress-bar {
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(35,104,199,0.12);
}

.kurs-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(25,191,97,0.75), rgba(35,104,199,0.75));
}

.kurs-card.is-current {
  border-color: rgba(25,191,97,0.38);
  background:
    radial-gradient(circle at top left, rgba(25,191,97,.16), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(234,245,255,.9));
}

.kurs-card.is-completed {
  border-color: rgba(25,191,97,0.28);
}

.kurs-card.is-completed span {
  color: #0b7a45;
}

.kurs-card.is-locked {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.2);
}

.kurs-inline-form {
  display: inline-flex;
  margin: 0;
}

@media (max-width: 640px) {
  .kurs-progress {
    margin-left: auto;
    margin-right: auto;
  }

  .kurs-progress-top {
    font-size: 0.78rem;
  }

  .kurs-inline-form,
  .kurs-inline-form .btn {
    width: 100%;
  }
}





/* ===============================
   TESTIMONIALS – PREMIUM VERSION
================================ */

/* GRID */
.testimonials-grid {
  width: min(1080px, calc(100% - 2rem));
  margin: 2.8rem auto 0;
  display: grid;
  gap: 2rem;
}


/* CARD */
.testimonial-card {
  position: relative;

  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;

  align-items: center;
  text-align: center;

  padding: clamp(1.8rem, 2.8vw, 2.4rem);
  border-radius: 34px;

  background:
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(244,249,255,.90));

  border: 1px solid rgba(35, 104, 199, .14);

  box-shadow:
    0 30px 80px rgba(16, 67, 141, .12);

  overflow: hidden;

  transition: transform .35s ease, box-shadow .35s ease;
}


/* ✨ SUBTILER PREMIUM GLOW */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 20%,
      rgba(255,255,255,.5) 50%,
      transparent 80%
    );

  opacity: 0;
  transform: translateX(-100%);
  transition: all .7s ease;
  pointer-events: none;
}


/* HOVER (nur Desktop sinnvoll) */
@media (hover: hover) {
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 40px 100px rgba(16, 67, 141, .18);
  }

  .testimonial-card:hover::before {
    opacity: 1;
    transform: translateX(100%);
  }
}


/* ===============================
   FOTO
================================ */
.testimonial-photo {
  width: 200px;
  height: 200px;

  margin: 0 auto .8rem;

  border-radius: 50%;
  overflow: hidden;

  background: rgba(35, 104, 199, .08);

  border: 6px solid rgba(255,255,255,.92);

  box-shadow:
    0 22px 50px rgba(16, 67, 141, .16);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* ===============================
   CONTENT
================================ */
.testimonial-content {
  max-width: 92%;
  margin: 0 auto;
	font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.62;
  color: var(--ink);

}

.testimonial-kicker {
  margin: 0 0 .5rem;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}


.testimonial-content h2{
text-wrap: auto;
margin-bottom:2rem;

}



/* ===============================
   MOBILE
================================ */
@media (max-width: 760px) {

  .testimonials-grid {
    width: min(100%, calc(100% - 1rem));
    gap: 1.6rem;
  }

  .testimonial-card {
    padding: 1.5rem;
    border-radius: 28px;
  }

  /* 👉 EXTRA größer mobil */
  .testimonial-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto 1rem;
  }



	  .testimonial-content p{
    font-size: 1.2rem;
  }
}
 eyebrow-center{
	 text-align:center;
 }
 
 
 
 .offer-plus{
  width:64px;
  height:64px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;

  margin-bottom:16px;
}

.offer-plus svg{
  width:100%;
  height:100%;
  display:block;

  filter:
    drop-shadow(0 8px 20px rgba(0,0,0,.25));
}

