/* =============================================
   Quenbaris DIGITAL - MAIN STYLESHEET
   Organic Shapes Design System
   ============================================= */


:root {
  --primary: #2D6A4F;
  --secondary: #74C69D;
  --accent: #F4A261;

  --primary-dark: color-mix(in oklch, var(--primary), black 25%);
  --primary-light: color-mix(in oklch, var(--primary), white 55%);
  --primary-xlight: color-mix(in oklch, var(--primary), white 82%);
  --primary-ultra: color-mix(in oklch, var(--primary), white 93%);

  --secondary-dark: color-mix(in oklch, var(--secondary), black 20%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 50%);
  --secondary-xlight: color-mix(in oklch, var(--secondary), white 78%);

  --accent-dark: color-mix(in oklch, var(--accent), black 20%);
  --accent-light: color-mix(in oklch, var(--accent), white 55%);
  --accent-xlight: color-mix(in oklch, var(--accent), white 82%);

  --bg-base: #F8FAF9;
  --bg-soft: color-mix(in oklch, var(--primary), white 94%);
  --bg-card: color-mix(in oklch, white, var(--primary) 3%);

  --text-dark: #1A2E25;
  --text-mid: #3D5A4A;
  --text-light: color-mix(in oklch, var(--text-mid), white 30%);
  --text-xlight: color-mix(in oklch, var(--text-mid), white 55%);

  --border-soft: color-mix(in oklch, var(--primary), white 82%);
  --border-mid: color-mix(in oklch, var(--primary), white 70%);

  --shadow-sm: 0 2px 8px color-mix(in oklch, var(--primary), transparent 88%),
               0 1px 3px color-mix(in oklch, var(--primary), transparent 92%);
  --shadow-md: 0 8px 32px color-mix(in oklch, var(--primary), transparent 80%),
               0 2px 8px color-mix(in oklch, var(--primary), transparent 88%);
  --shadow-lg: 0 20px 60px color-mix(in oklch, var(--primary), transparent 72%),
               0 8px 24px color-mix(in oklch, var(--primary), transparent 82%);
  --shadow-accent: 0 8px 32px color-mix(in oklch, var(--accent), transparent 70%),
                   0 2px 8px color-mix(in oklch, var(--accent), transparent 82%);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-blob: 60% 40% 55% 45% / 45% 55% 45% 55%;

  --nav-h: 72px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container-max: 1240px;
  --gap: clamp(1rem, 2.5vw, 2rem);
}


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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-base);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }


h1, h2, h3, h4 {
  font-family: 'Unbounded', sans-serif;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { line-height: 1.75; color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.section-heading--light { color: #fff; }

.label-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  background: var(--secondary-xlight);
  padding: .35rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.label-tag--light {
  color: color-mix(in oklch, var(--secondary), white 30%);
  background: color-mix(in oklch, var(--primary), white 20%);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  transition: gap .3s ease, color .3s ease;
}

.link-arrow:hover { gap: .85rem; color: var(--primary-dark); }


.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  min-height: 44px;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px color-mix(in oklch, var(--accent), transparent 55%);
}

.btn--ghost {
  background: color-mix(in oklch, white, transparent 15%);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}


.drawer-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: background .35s ease, box-shadow .35s ease;
}

.drawer-nav.scrolled {
  background: color-mix(in oklch, var(--bg-base), white 10%);
  box-shadow: 0 2px 24px color-mix(in oklch, var(--primary), transparent 85%),
              0 1px 4px color-mix(in oklch, var(--primary), transparent 90%);
}

.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -.02em;
  transition: color .3s ease;
  flex-shrink: 0;
}

.drawer-nav.scrolled .nav-logo { color: var(--text-dark); }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  font-weight: 500;
  transition: color .3s ease, opacity .3s ease;
  white-space: nowrap;
}

.drawer-nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: #fff; }
.drawer-nav.scrolled .nav-links a:hover { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.drawer-nav.scrolled .hamburger span { background: var(--text-dark); }


.stage-curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 60%, color-mix(in oklch, var(--primary), var(--secondary) 35%) 100%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.stage-curtain.open {
  opacity: 1;
  pointer-events: all;
}

.stage-curtain__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

.stage-curtain__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.stage-curtain__logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.stage-curtain__close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease;
}

.stage-curtain__close:hover { background: rgba(255,255,255,.3); }

.stage-curtain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
  align-content: start;
}

.stage-curtain__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.75rem 1rem;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 500;
  font-size: .95rem;
  transition: background .25s ease, transform .25s ease;
  min-height: 44px;
}

.stage-curtain__item:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.stage-curtain__item i {
  font-size: 1.5rem;
  opacity: .9;
}


.stage {
  min-height: 100vh;
  background: linear-gradient(145deg, color-mix(in oklch, var(--primary), black 20%) 0%, var(--primary) 50%, color-mix(in oklch, var(--primary), var(--secondary) 40%) 100%);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1rem, 4vw, 3rem) 6rem;
  position: relative;
  overflow: hidden;
}

.stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-background-coaching.jpg') center/cover no-repeat;
  opacity: .15;
  mix-blend-mode: luminosity;
}

.stage__blob {
  position: absolute;
  border-radius: var(--radius-blob);
  opacity: .12;
  pointer-events: none;
}

.stage__blob--1 {
  width: 600px;
  height: 500px;
  background: var(--secondary);
  top: -100px;
  right: -150px;
  animation: blobFloat1 12s ease-in-out infinite;
}

.stage__blob--2 {
  width: 400px;
  height: 350px;
  background: var(--accent);
  bottom: 50px;
  left: -100px;
  animation: blobFloat2 15s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0,0) rotate(0deg); border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%; }
  33% { transform: translate(-20px, 30px) rotate(5deg); border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
  66% { transform: translate(15px, -20px) rotate(-3deg); border-radius: 55% 45% 60% 40% / 40% 60% 40% 60%; }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0,0) rotate(0deg); border-radius: 55% 45% 60% 40% / 40% 60% 40% 60%; }
  50% { transform: translate(25px, -30px) rotate(-8deg); border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%; }
}

.stage__content {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.stage__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,.1);
  padding: .35rem .9rem;
  border-radius: 50px;
}

.stage__headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.stage__sub {
  color: rgba(255,255,255,.82);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.stage__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stage__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.stage__wave svg {
  width: 100%;
  height: 80px;
  display: block;
}


.spotlight {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg),
              0 0 0 1px var(--border-soft);
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, color-mix(in oklch, var(--secondary), transparent 60%) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-ultra);
  padding: .3rem .8rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.spotlight__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .75rem;
}

.spotlight__desc {
  font-size: .92rem;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.spotlight__features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.spotlight__features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.spotlight__features li i {
  color: var(--primary);
  font-size: .85rem;
  margin-top: .2rem;
  flex-shrink: 0;
  background: var(--primary-ultra);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight__cta {
  width: 100%;
  margin-bottom: 1rem;
}

.spotlight__note {
  font-size: .8rem;
  color: var(--text-xlight);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 0;
}


.overlap-zone {
  padding: 0 clamp(1rem, 4vw, 3rem);
  max-width: var(--container-max);
  margin: -3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: var(--section-pad);
}

.overlap-zone__card--float {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3rem);
}

.overlap-zone__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.overlap-zone__card--float:hover .overlap-zone__img {
  transform: scale(1.03);
}

.overlap-zone__text {
  padding-top: 1rem;
}

.overlap-zone__text h2 {
  margin-bottom: 1.25rem;
}

.overlap-zone__text p {
  margin-bottom: 1rem;
}


.gallery {
  padding: var(--section-pad) clamp(1rem, 4vw, 3rem);
  max-width: var(--container-max);
  margin: 0 auto;
}

.gallery--bg {
  background: var(--bg-soft);
  max-width: none;
  width: 100%;
}

.gallery__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.gallery__intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-top: .5rem;
}

.gallery__grid {
  display: grid;
  gap: var(--gap);
}

.gallery__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}


.shelf-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}

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

.shelf-card--numbered {
  position: relative;
  overflow: hidden;
}

.shelf-card--numbered::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.shelf-card__num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-xlight);
  line-height: 1;
  display: block;
  margin-bottom: .5rem;
}

.shelf-card__icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.shelf-card--numbered h3 {
  margin-bottom: .75rem;
  font-size: 1.1rem;
}

.shelf-card--topic {
  padding: 0;
  overflow: hidden;
}

.shelf-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}

.shelf-card--topic:hover .shelf-card__img {
  transform: scale(1.04);
}

.shelf-card__body {
  padding: 1.75rem;
}

.shelf-card__body h3 {
  margin-bottom: .75rem;
}


.full-width-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, color-mix(in oklch, var(--primary), var(--secondary) 30%) 100%);
  padding: var(--section-pad) clamp(1rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
  margin: 2rem 0;
}

.full-width-band__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in oklch, var(--secondary), transparent 65%) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  border-radius: var(--radius-blob);
  animation: blobFloat1 18s ease-in-out infinite;
}

.full-width-band__content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.full-width-band__text p {
  color: rgba(255,255,255,.82);
  margin-bottom: 1rem;
}

.full-width-band__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


.gallery--who {
  background: var(--bg-soft);
  max-width: none;
  border-radius: var(--radius-xl);
  margin: 0 clamp(1rem, 3vw, 3rem);
}

.shelf--who {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.shelf__item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.shelf__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: color-mix(in oklch, var(--primary), white 88%);
}

.shelf__item i {
  font-size: 1.75rem;
  color: var(--primary);
}

.shelf__item span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.3;
}


.gallery--cta-section {
  padding: var(--section-pad) clamp(1rem, 4vw, 3rem);
}

.cta-block {
  background: linear-gradient(135deg, var(--primary-ultra), color-mix(in oklch, var(--secondary), white 75%));
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, color-mix(in oklch, var(--secondary), transparent 70%) 0%, transparent 70%);
  top: -80px;
  right: 200px;
  pointer-events: none;
}

.cta-block__text h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.cta-block__text p {
  max-width: 500px;
}

.cta-block__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}


.stage--inner {
  min-height: 45vh;
  padding: calc(var(--nav-h) + 3rem) clamp(1rem, 4vw, 3rem) 5rem;
  display: flex;
  align-items: center;
}

.stage--inner .stage__content {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.stage--inner .stage__headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}


.process-timeline {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad) clamp(1rem, 4vw, 3rem);
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: -3rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
}

.process-step__num {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.process-step__content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.process-step__content h3 {
  margin-bottom: .75rem;
}


.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad) clamp(1rem, 4vw, 3rem);
}

.coaching-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

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

.coaching-card--featured {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  grid-column: 1 / -1;
}

.coaching-card--featured h3,
.coaching-card--featured p,
.coaching-card--featured li {
  color: rgba(255,255,255,.9) !important;
}

.coaching-card--featured h3 {
  color: #fff;
}

.coaching-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-ultra);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--primary);
}

.coaching-card--featured .coaching-card__icon {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.coaching-card h3 { margin-bottom: .75rem; }

.coaching-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.coaching-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--text-mid);
}

.coaching-list li i {
  color: var(--primary);
  margin-top: .2rem;
  flex-shrink: 0;
}

.coaching-card--featured .coaching-list li i {
  color: var(--secondary-light);
}


.change-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad) clamp(1rem, 4vw, 3rem);
}

.change-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.change-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

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

.change-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  color: var(--accent-dark);
}

.change-card h3 { margin-bottom: .75rem; }

.before-after {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.before-after__col h4 {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: .4rem 1rem;
  border-radius: 50px;
  display: inline-block;
}

.before-after__col--before h4 {
  background: color-mix(in oklch, #e74c3c, white 80%);
  color: color-mix(in oklch, #e74c3c, black 20%);
}

.before-after__col--after h4 {
  background: var(--primary-ultra);
  color: var(--primary-dark);
}

.before-after__col ul {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.before-after__col li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-mid);
}

.before-after__col--before li i {
  color: color-mix(in oklch, #e74c3c, black 10%);
  margin-top: .15rem;
}

.before-after__col--after li i {
  color: var(--primary);
  margin-top: .15rem;
}

.before-after__divider {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border-mid), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.before-after__divider::before {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.contact-layout {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad) clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--primary-ultra);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail__text strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .2rem;
}

.contact-detail__text a {
  color: var(--text-mid);
  transition: color .25s;
}

.contact-detail__text a:hover { color: var(--primary); }

.contact-tips {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2.5rem;
  border: 1px solid var(--border-soft);
}

.contact-tips h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-tips ul {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact-tips li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.contact-tips li i {
  color: var(--primary);
  margin-top: .18rem;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--bg-base);
  transition: border-color .25s ease, box-shadow .25s ease;
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 82%);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: .15rem;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-check label {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.55;
  cursor: pointer;
}

.form-check label a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.map-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) var(--section-pad);
}

.map-section h3 {
  margin-bottom: 1.25rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}


.thanks-stage {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1rem, 4vw, 3rem) var(--section-pad);
}

.thanks-content {
  max-width: 560px;
  text-align: center;
}

.thanks-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.thanks-content p {
  margin-bottom: 2.5rem;
}

.mini-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  margin: 2.5rem 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
}

.timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.timeline-dot--done {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--primary), transparent 65%);
}

.timeline-dot--active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--accent), transparent 55%);
}

.timeline-dot--upcoming {
  background: var(--border-soft);
  color: var(--text-xlight);
}

.timeline-text strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .2rem;
}

.timeline-text p {
  font-size: .88rem;
  margin: 0;
}

.timeline-item--upcoming .timeline-text strong,
.timeline-item--upcoming .timeline-text p {
  color: var(--text-xlight);
}


.legal-stage {
  padding: calc(var(--nav-h) + 3rem) clamp(1rem, 4vw, 3rem) var(--section-pad);
  max-width: 860px;
  margin: 0 auto;
}

.legal-stage h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: .75rem;
}

.legal-meta {
  font-size: .85rem;
  color: var(--text-xlight);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--primary-xlight);
}

.legal-section h3 {
  font-size: 1rem;
  margin: 1.5rem 0 .5rem;
}

.legal-section p {
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section ul li {
  color: var(--text-mid);
  margin-bottom: .5rem;
  font-size: .95rem;
}

.legal-q {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--primary);
}

.legal-q h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: .75rem;
}

.legal-q p {
  font-size: .92rem;
  margin: 0;
}


.impressum-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .92rem;
}

.impressum-table th,
.impressum-table td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}

.impressum-table th {
  font-weight: 600;
  color: var(--text-dark);
  width: 40%;
  background: var(--bg-soft);
}

.impressum-table td {
  color: var(--text-mid);
}


.footer-stage {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem clamp(1rem, 4vw, 3rem) 2rem;
  margin-top: auto;
}

.footer-stage__top {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-stage__logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}

.footer-stage__brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}

.footer-stage__brand address {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

.footer-stage__nav h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

.footer-stage__nav ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-stage__nav a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color .25s;
}

.footer-stage__nav a:hover { color: var(--secondary-light); }

.footer-stage__contact h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

.footer-stage__contact a {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin-bottom: .85rem;
  transition: color .25s;
}

.footer-stage__contact a:hover { color: var(--secondary-light); }

.footer-stage__contact i {
  width: 20px;
  color: var(--secondary);
}

.footer-stage__bottom {
  max-width: var(--container-max);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-stage__bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}


.cookie-bell {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}

.cookie-bell__btn {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, background .25s ease;
  position: relative;
}

.cookie-bell__btn:hover {
  transform: scale(1.08);
  background: var(--primary-dark);
}

.cookie-bell__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  display: block;
}

.cookie-bell__badge.hidden { display: none; }

.cookie-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: min(380px, calc(100vw - 3rem));
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-soft);
  padding: 1.75rem;
  z-index: 9998;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
}

.cookie-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-panel__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .75rem;
}

.cookie-panel__desc {
  font-size: .84rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-soft);
  gap: 1rem;
}

.cookie-toggle:last-of-type { border-bottom: none; }

.cookie-toggle__label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cookie-toggle__sub {
  font-size: .78rem;
  color: var(--text-xlight);
  margin-top: .15rem;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-mid);
  border-radius: 50px;
  cursor: pointer;
  transition: background .25s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: .6;
  cursor: not-allowed;
}

.cookie-panel__actions {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.cookie-panel__actions .btn {
  flex: 1;
  font-size: .85rem;
  padding: .65rem 1rem;
}


[data-animate] {
  opacity: 1;
  transform: translateY(24px);
}


.inner-section {
  padding: var(--section-pad) clamp(1rem, 4vw, 3rem);
  max-width: var(--container-max);
  margin: 0 auto;
}

.inner-section--bg {
  background: var(--bg-soft);
  max-width: none;
  border-radius: var(--radius-xl);
  margin: 0 clamp(1rem, 3vw, 3rem);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.page-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.page-intro p {
  font-size: 1.05rem;
}


.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
}


@media (max-width: 1100px) {
  .gallery__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .shelf--who { grid-template-columns: repeat(3, 1fr); }
  .footer-stage__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .stage__content { grid-template-columns: 1fr; gap: 2.5rem; }
  .stage__right { order: -1; }
  .overlap-zone { grid-template-columns: 1fr; gap: 2rem; margin-top: 0; }
  .overlap-zone__card--float { transform: none; }
  .overlap-zone__img { height: 280px; }
  .full-width-band__content { grid-template-columns: 1fr; gap: 2.5rem; }
  .coaching-grid { grid-template-columns: 1fr; }
  .coaching-card--featured { grid-column: 1; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-block { grid-template-columns: 1fr; gap: 2rem; }
  .before-after { grid-template-columns: 1fr; gap: 1.5rem; }
  .before-after__divider { display: none; }
  .change-grid { grid-template-columns: 1fr; }
  .gallery__grid--2 { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; }
  .process-step__num { width: 60px; height: 60px; font-size: 1rem; }
  .process-step:not(:last-child)::after { left: 29px; top: 65px; }
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .gallery__grid--4 { grid-template-columns: 1fr; }
  .shelf--who { grid-template-columns: repeat(2, 1fr); }
  .footer-stage__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-stage__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .full-width-band { clip-path: none; }
  .gallery--who { margin: 0; border-radius: 0; }
}

@media (max-width: 480px) {
  .stage__actions { flex-direction: column; }
  .stage__actions .btn { width: 100%; text-align: center; }
  .shelf--who { grid-template-columns: repeat(2, 1fr); }
  .cta-block__actions { flex-direction: column; }
  .cta-block__actions .btn { width: 100%; }
  .cookie-panel { width: calc(100vw - 2rem); right: 1rem; }
  .cookie-bell { bottom: 1rem; right: 1rem; }
}