/* ============================================================
   FEDERSEL CONSULTING — Complete Design System
   ============================================================ */

/* Locally hosted fonts — no external connections, DSGVO-compliant */
@font-face {
  font-family: 'Italiana';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/italiana.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../assets/fonts/dm-sans.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
html { overflow-x: hidden; } /* hier, nicht body – sonst werden fixed Elemente auf iOS geclipt */

body {
  font-family: var(--font-sans);
  background-color: var(--bg-alt);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Brand Colors */
  --dark-teal:   #2e4a50;
  --mid-teal:    #3e6870;
  --deep-teal:   #708586;
  --sage:        #7aa4a8;
  --warm-taupe:  #a48a87;
  --rose-medium: #d0b0ac;
  --rose-soft:   #d5aea9;
  --rose-pale:   #eeddd8;
  --cream:       #f5ede8;

  /* Semantic */
  --bg:          #f5ede8;
  --bg-alt:      #e4ecee;
  --surface:     #f8fbfb;
  --text:        #2e4a50;
  --text-sec:    #456b72;
  --text-muted:  #7aa4a8;
  --accent:      #708586;
  --accent-dark: #2e4a50;
  --border:      rgba(112, 133, 134, 0.22);
  --border-dark: rgba(112, 133, 134, 0.14);

  /* Fonts */
  --font-script: 'Italiana', serif;
  --font-serif:  'Cormorant Garamond', serif;
  --font-sans:   'DM Sans', sans-serif;

  /* Layout */
  --container-max: 1280px;
  --pad:    clamp(24px, 5vw, 80px);
  --sec-py: clamp(56px, 7vw, 96px);

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 100px;

  /* Shadows */
  --sh-sm: 0 2px 16px rgba(132, 146, 147, 0.06);
  --sh-md: 0 8px 40px rgba(132, 146, 147, 0.10);
  --sh-lg: 0 20px 80px rgba(132, 146, 147, 0.14);

  /* Easing */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index */
  --z-back:      -1;
  --z-cursor:    9999;
  --z-preloader: 9000;
  --z-nav:       100;
  --z-modal:     500;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  color: var(--warm-taupe);
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.display-xl {
  font-size: clamp(52px, 8vw, 100px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display-xl .script { font-size: 1.05em; }

.display-lg {
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.02em;
}
.display-lg .script { font-size: 1.05em; }

.display-md {
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.01em;
}

.label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.body-lg { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.7; }
.body-md { font-size: 16px; line-height: 1.65; }
.body-sm { font-size: 14px; line-height: 1.6; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: var(--sec-py);
  position: relative;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--dark {
  background-color: var(--deep-teal);
  color: var(--cream);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--cream); }
.section--dark .label { color: rgba(245, 237, 232, 0.5); }
.section--dark .text-muted { color: rgba(245, 237, 232, 0.65); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header .label {
  display: block;
  margin-bottom: 16px;
}

/* ============================================================
   CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
  mix-blend-mode: multiply;
}

.cursor__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--deep-teal);
  position: absolute;
  top: -4px; left: -4px;
  will-change: transform;
}

.cursor__ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  position: absolute;
  top: -18px; left: -18px;
  will-change: transform;
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.cursor--hover .cursor__ring {
  width: 60px; height: 60px;
  top: -30px; left: -30px;
  background: rgba(112, 133, 134, 0.1);
  border-color: var(--mid-teal);
}

.cursor--text .cursor__ring {
  width: 80px; height: 80px;
  top: -40px; left: -40px;
  background: rgba(132, 146, 147, 0.08);
}

@media (hover: none) {
  .cursor { display: none; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d1a1d;
}

.preloader__panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #0d1a1d;
  will-change: transform;
}
.preloader__panel--l { left: 0; transform-origin: left; }
.preloader__panel--r { right: 0; transform-origin: right; }

.preloader__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}

.preloader__logo {
  display: block;
  width: clamp(56px, 7vw, 80px);
  height: clamp(56px, 7vw, 80px);
  object-fit: contain;
  margin: 0 auto 24px;
  opacity: 0;
  transform: scale(0.82);
  filter: invert(1) brightness(1.1);
}

.preloader__name {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 237, 232, 0.55);
  transform: translateY(100%);
  opacity: 0;
}

.preloader__title {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(32px, 4.5vw, 58px);
  color: #a8bfc1;
  transform: translateY(100%);
  opacity: 0;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 20px var(--pad);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              padding 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(228, 236, 238, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--deep-teal);
  flex-shrink: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__logo span {
  display: block;
  font-family: var(--font-script);
  font-size: 0.75em;
  color: var(--warm-taupe);
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sec);
  position: relative;
  transition: color var(--t-fast, 0.2s), transform 0.2s var(--ease);
  cursor: pointer;
  display: inline-block;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav__link:hover,
.nav__link.active {
  color: var(--deep-teal);
  transform: scale(1.08);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 12px;
  margin-right: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-teal);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
  border-radius: 2px;
}

.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(245, 237, 232, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px max(var(--pad), 24px); /* mindestens 24px vom Rand */
  flex-direction: column;
  gap: 4px; /* gap durch Link-padding ersetzt */
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile .nav__link {
  font-size: 17px;
  display: block;
  padding: 10px 4px; /* großzügige Tap-Fläche oben/unten */
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.btn--primary {
  background: var(--deep-teal);
  color: var(--cream);
  border: 1.5px solid var(--deep-teal);
}

.btn--primary::before {
  background: rgba(255, 255, 255, 0.08);
}

.btn--primary:hover {
  background: var(--dark-teal);
  border-color: var(--dark-teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(132, 146, 147, 0.22);
}

.btn--primary:hover::before { opacity: 1; }

.btn--outline {
  background: transparent;
  color: var(--deep-teal);
  border: 1.5px solid var(--deep-teal);
}

.btn--outline:hover {
  background: var(--deep-teal);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--deep-teal);
  border: 1.5px solid var(--border-dark);
  gap: 8px;
}

.btn--ghost:hover {
  border-color: var(--rose-medium);
  color: var(--warm-taupe);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--cream);
  color: var(--deep-teal);
  border: 1.5px solid var(--cream);
}

.btn--light:hover {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 237, 232, 0.5);
  transform: translateY(-2px);
}

.btn--rose {
  background: var(--warm-taupe);
  color: var(--cream);
  border: 1.5px solid var(--warm-taupe);
}
.btn--rose::before {
  background: rgba(255, 255, 255, 0.1);
}
.btn--rose:hover {
  background: #8e6e6b;
  border-color: #8e6e6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(164, 138, 135, 0.30);
}

.btn .arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  letter-spacing: 0.04em;
}

.badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   REVEAL ANIMATION WRAPPERS
   ============================================================ */
.reveal-wrap {
  overflow: hidden;
  display: block;
  padding-top: 0.1em;
  padding-bottom: 0.26em;
}

.reveal-inner {
  display: block;
  transform: translateY(108%);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.fade-in {
  opacity: 0;
}

/* ============================================================
   HERO — INDEX PAGE
   ============================================================ */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  padding-top: clamp(76px, 6vw, 88px);
  padding-bottom: 0;
  overflow: hidden;
  background-color: #0d1a1d;
}

/* Workspace background — vollflächig mit dunkler Überlagerung */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      to right,
      rgba(13, 26, 29, 0.95) 0%,
      rgba(13, 26, 29, 0.82) 50%,
      rgba(13, 26, 29, 0.52) 100%
    ),
    url('../assets/hero-neu.jpg');
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
  pointer-events: none;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  will-change: transform;
}

.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(112, 133, 134, 0.18), transparent 70%);
  top: -150px; right: -100px;
  animation: blobFloat1 12s ease-in-out infinite;
}

.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(62, 104, 112, 0.14), transparent 70%);
  bottom: 50px; right: 200px;
  animation: blobFloat2 16s ease-in-out infinite;
}

.hero__blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--sage), transparent 70%);
  top: 40%; left: -50px;
  animation: blobFloat3 10s ease-in-out infinite;
  opacity: 0.18;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.04); }
  66% { transform: translate(20px, -15px) scale(0.97); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -30px) scale(1.06); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, 20px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.hero__text {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: clamp(24px, 3vw, 40px);
  color: var(--cream);
}

.hero__badge {
  margin-bottom: 28px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 237, 232, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 237, 232, 0.85);
  line-height: 1.4;
  margin-bottom: 22px;
  opacity: 0;
}

.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose-medium);
  flex-shrink: 0;
  animation: eyebrowPulse 2.4s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  white-space: nowrap;
  color: #a8bfc1;
}

.hero__title .script { font-size: 1.1em; }

.hero__title .line {
  display: block;
}

.hero__promise {
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.4;
  max-width: 460px;
  margin-bottom: 12px;
  opacity: 0;
}

.hero__sub {
  font-size: clamp(15px, 1.15vw, 17px);
  color: rgba(245, 237, 232, 0.62);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 28px;
  opacity: 0;
}

/* USP checklist */
.hero__usps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: clamp(28px, 4vh, 52px);
  margin-bottom: 28px;
}

.hero__usp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  color: rgba(245, 237, 232, 0.82);
  line-height: 1.4;
  opacity: 0;
}

.hero__usp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(112, 133, 134, 0.25);
  color: var(--sage);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
}

.hero__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(245, 237, 232, 0.22);
  color: rgba(245, 237, 232, 0.82);
}

.hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(245, 237, 232, 0.45);
  color: var(--cream);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
}

.hero__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 237, 232, 0.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 237, 232, 0.65);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero__badge-pill svg {
  color: var(--deep-teal);
  flex-shrink: 0;
}

/* Cutout Photo */
.hero__visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  overflow: visible;
  align-self: stretch;
  opacity: 0;
}

.hero__cutout-img {
  height: clamp(520px, 78vh, 860px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;

  /* Sticker effect: directional white drop-shadow as border + depth shadow */
  filter:
    grayscale(1)
    drop-shadow( 5px  0   0 rgba(255, 255, 255, 0.35))
    drop-shadow(-5px  0   0 rgba(255, 255, 255, 0.35))
    drop-shadow( 0    5px 0 rgba(255, 255, 255, 0.35))
    drop-shadow( 0   -5px 0 rgba(255, 255, 255, 0.35))
    drop-shadow( 0   32px 60px rgba(0, 0, 0, 0.45))
    brightness(0.82);

  transform: rotate(-1.8deg);
  transform-origin: bottom center;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter    0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero__cutout-img:hover {
  transform: rotate(0deg) scale(1.025);
  filter:
    grayscale(1)
    drop-shadow( 5px  0   0 rgba(255, 255, 255, 0.45))
    drop-shadow(-5px  0   0 rgba(255, 255, 255, 0.45))
    drop-shadow( 0    5px 0 rgba(255, 255, 255, 0.45))
    drop-shadow( 0   -5px 0 rgba(255, 255, 255, 0.45))
    drop-shadow( 0   40px 80px rgba(0, 0, 0, 0.55))
    brightness(0.88);
}

/* ── Hero Stickers ─────────────────────────────────────── */
.hero__sticker {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  box-shadow:
    0 8px 32px rgba(132, 146, 147, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  max-width: 210px;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
}

.hero__sticker-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__sticker-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.hero__sticker-body {
  padding-top: 1px;
}

.hero__sticker-title {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.hero__sticker-sub {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: var(--text-sec);
  line-height: 1.45;
}

/* Sticker 1 – Kein Agentur-Chaos (oben, rechts von "wenn sie") */
.hero__sticker--1 {
  top: 22%;
  left: 53%;
  transform: rotate(-2.5deg);
}
.hero__sticker--1 .hero__sticker-icon {
  background: var(--rose-pale);
  color: var(--rose-medium);
}

/* Sticker 2 – Schneller Impact (Mitte, etwas weiter rechts für Versatz) */
.hero__sticker--2 {
  top: 48%;
  left: 52%;
  transform: rotate(2.5deg);
}
.hero__sticker--2 .hero__sticker-icon {
  background: #e8f3f2;
  color: var(--deep-teal);
}

/* Sticker 3 – Google-Best Practices (unten, rechts von Buttons) */
.hero__sticker--3 {
  bottom: 20%;
  left: 46%;
  transform: rotate(-1.5deg);
}
.hero__sticker--3 .hero__sticker-icon {
  background: #fef8ee;
  color: #c9862b;
}

/* Floating keyframes */
@keyframes stickerFloat1 {
  0%, 100% { transform: translateY(0)    rotate(-2.5deg); }
  50%       { transform: translateY(-9px) rotate(-2.5deg); }
}
@keyframes stickerFloat2 {
  0%, 100% { transform: translateY(0)     rotate(2.5deg); }
  50%       { transform: translateY(-11px) rotate(2.5deg); }
}
@keyframes stickerFloat3 {
  0%, 100% { transform: translateY(0)   rotate(-1.5deg); }
  50%       { transform: translateY(-7px) rotate(-1.5deg); }
}

.hero__sticker--1.is-visible { animation: stickerFloat1 6.5s ease-in-out infinite; }
.hero__sticker--2.is-visible { animation: stickerFloat2 7.8s ease-in-out infinite 1.2s; }
.hero__sticker--3.is-visible { animation: stickerFloat3 8.4s ease-in-out infinite 0.6s; }

@media (max-width: 900px) {
  .hero__sticker { display: none; }
}

/* ─────────────────────────────────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--rose-medium), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   SECTION: PAIN POINTS
   ============================================================ */
/* ============================================================
   PAIN SECTION – "Vielleicht bist du hier, weil…" (dark cards)
   ============================================================ */
.pain-section {
  background: var(--dark-teal);
  padding-block: var(--sec-py);
}

.pain-section__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 72px);
}

.pain-section__quote {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 232, 0.45);
  margin-bottom: 16px;
}

.pain-section__heading {
  color: var(--cream);
}

.pain-section .script {
  color: var(--rose-medium);
}

/* 3-column card grid */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: clamp(64px, 9vw, 104px);
}

.pain-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 237, 232, 0.1);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 44px);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(208, 176, 172, 0.4);
}

.pain-card__icon {
  display: block;
  font-size: 18px;
  color: var(--rose-medium);
  margin-bottom: clamp(20px, 2.5vw, 28px);
  line-height: 1;
}

.pain-card__title {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 14px;
}

.pain-card__text {
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(245, 237, 232, 0.58);
  line-height: 1.75;
}

/* Bridge – two-line pivot from pain to promise */
.pain-section__bridge {
  text-align: center;
}

.pain-bridge__line1 {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--cream);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.pain-bridge__script {
  font-size: 1em;
  color: var(--rose-medium);
}

.pain-bridge__line3 {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  color: rgba(245, 237, 232, 0.62);
  margin-top: clamp(10px, 1.2vw, 16px);
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .pain-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: clamp(48px, 7vw, 80px);
  }
}

/* ============================================================
   KURZE VORSTELLUNG
   ============================================================ */
.intro-section {
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(112, 133, 134, 0.28);
}

.intro-inner {
  display: grid;
  grid-template-columns: clamp(380px, 44vw, 560px) 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

/* Foto-Spalte: Bild füllt exakt den Textbereich (oben = Textbeginn, unten = Buttons) */
.intro__photo {
  position: relative;
  align-self: stretch;
  overflow: hidden;
}

.intro__photo img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  filter:
    grayscale(1)
    drop-shadow( 5px  0   0 rgba(255, 255, 255, 0.22))
    drop-shadow(-5px  0   0 rgba(255, 255, 255, 0.22))
    drop-shadow( 0    5px 0 rgba(255, 255, 255, 0.22))
    drop-shadow( 0   -5px 0 rgba(255, 255, 255, 0.22))
    drop-shadow( 0   32px 56px rgba(0, 0, 0, 0.28));
}

.intro__text {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 22px);
}

.intro__cta-text {
  font-size: clamp(14px, 1.35vw, 16px);
  color: var(--text-sec);
  line-height: 1.75;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.intro__cta-btn {
  align-self: flex-start;
}

.intro__text p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 540px;
}

/* Accordion toggle button */
.intro__more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.intro__chevron {
  display: flex;
  transition: transform 0.35s var(--ease);
}

.intro__more-toggle.is-active .intro__chevron {
  transform: rotate(180deg);
}

.intro__usp {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--text-sec);
  line-height: 1.65;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(112, 133, 134, 0.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.intro__usp-icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}

/* (intro__cta-text + intro__cta-btn now live in intro__left-cta — rules above) */

/* Expandable panel */
.intro__expand {
  scroll-margin-top: 96px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.55s var(--ease-out), opacity 0.4s ease;
}

.intro__expand.is-open {
  max-height: 900px;
  opacity: 1;
}

.intro__expand-inner {
  display: grid;
  grid-template-columns: 1fr clamp(180px, 22vw, 280px);
  gap: 40px;
  align-items: stretch;
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(8px, 2vw, 16px);
  border-top: 1px solid var(--border);
  margin-top: clamp(28px, 3.5vw, 40px);
}

.intro__expand-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro__expand-inner p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 640px;
}

.intro__expand-photo {
  align-self: flex-start;
}

.intro__expand-photo img {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  border-radius: var(--r-lg);
  display: block;
  filter: grayscale(1);
}

.intro__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.intro__fact {
  font-size: 14px;
  color: var(--text-sec);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px 16px;
}

@media (max-width: 768px) {
  .intro-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intro__photo {
    position: relative;
    min-height: 300px;
  }
  .intro__text p { max-width: 100%; }
  .intro__cta-btn { align-self: center; }
  .intro__expand-inner { grid-template-columns: 1fr; gap: 24px; }
  .intro__expand-photo { display: flex; justify-content: center; }
  .intro__expand-photo img { width: clamp(120px, 40vw, 180px); }
  .intro__facts { justify-content: center; }
}

/* ============================================================
   IMAGE DIVIDER STRIP
   ============================================================ */
.img-divider {
  width: 100%;
  height: clamp(200px, 28vw, 380px);
  background:
    linear-gradient(rgba(208, 176, 172, 0.52), rgba(208, 176, 172, 0.58)),
    url('../assets/hero-workspace.jpg') center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .img-divider { background-attachment: scroll; }
}

.img-divider__quote {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 40px);
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
  padding: 0 var(--pad);
  text-shadow: 0 2px 24px rgba(51, 73, 78, 0.25);
  line-height: 1.2;
}

/* ============================================================
   SECTION: FIT CHECK (für wen / für wen nicht)
   ============================================================ */
.fit-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
  align-items: start;
}

.fit-card {
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
}

/* Good card – prominent */
.fit-card--good {
  background: rgba(51, 73, 78, 0.05);
  border-color: rgba(51, 73, 78, 0.22);
}

/* Bad card – recessive */
.fit-card--bad {
  background: var(--surface);
  border-color: var(--border);
  padding: clamp(22px, 2.5vw, 32px);
}

.fit-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.fit-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fit-card__icon--good {
  background: rgba(51, 73, 78, 0.1);
  color: var(--dark-teal);
}

.fit-card__icon--bad {
  background: rgba(132, 146, 147, 0.1);
  color: var(--text-muted);
}

.fit-card__title {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.3;
  padding-top: 6px;
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-sec);
  line-height: 1.6;
  font-size: 15px;
}

.fit-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
}

/* Good card: checkmarks + slightly larger text */
.fit-card--good .fit-list li {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text);
}

.fit-card--good .fit-list li::before {
  content: '✓';
  color: var(--dark-teal);
  font-weight: 600;
}

/* Bad card: smaller, muted */
.fit-card--bad .fit-list {
  gap: 10px;
}

.fit-card--bad .fit-list li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.fit-card--bad .fit-list li::before {
  color: var(--text-muted);
}

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

/* ============================================================
   FIT SECTION — NEW OPEN LAYOUT (checklist + edge sticker)
   ============================================================ */

/* Section must be position:relative so the sticker can anchor to it */
.fit-section {
  position: relative;
  overflow: hidden;
}

/* Checklist block: flows normally, gets right padding to leave room for sticker */
.fit-layout {
  margin-top: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-right: clamp(220px, 28vw, 360px); /* reserve right lane for sticker */
}

/* Open checklist — no card background */
.fit-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Each item: icon + text inline */
.fit-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.6;
  color: var(--text);
}

/* Rose pill icon */
.fit-check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-medium);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Sticker: absolute panel, full section height, flush right */
.fit-sticker {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: clamp(220px, 28vw, 360px);
  overflow: hidden;
  pointer-events: none;
}

.fit-sticker__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter:
    grayscale(1)
    drop-shadow(-6px 0 16px rgba(0, 0, 0, 0.30));
}

/* Compact "not suitable" footer row */
.fit-notgood {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  border-radius: var(--r-lg);
  background: rgba(112, 133, 134, 0.06);
  border: 1.5px solid var(--border);
  margin-top: clamp(24px, 3vw, 40px);
}

.fit-notgood__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.fit-notgood__list {
  list-style: none;
  display: grid;
  grid-template-columns: auto auto;
  gap: 6px 32px;
}

.fit-notgood__list li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  padding-left: 14px;
  white-space: nowrap;
}

.fit-notgood__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Responsive: sticker flows below checklist on mobile */
@media (max-width: 800px) {
  .fit-section { overflow: visible; }
  .fit-layout { padding-right: 0; }
  .fit-sticker {
    position: relative;
    right: auto; bottom: auto;
    width: 60%;
    max-width: 260px;
    margin: 24px auto 0;
  }
}

@media (max-width: 600px) {
  .fit-notgood {
    display: flex;
    align-self: stretch;
  }
  .fit-notgood__list {
    grid-template-columns: 1fr;
  }
  .fit-notgood__list li {
    white-space: normal;
  }
}

/* ============================================================
   SECTION: PACKAGES TEASER (Homepage)
   ============================================================ */
.pkg-teaser-section .section-header {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.pkg-intro-block {
  margin-top: clamp(28px, 3.5vw, 40px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.pkg-intro-block__label {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  color: var(--warm-taupe);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  text-align: center;
}

/* ── Chevron arrow flow ──────────────────────────── */
.pkg-intro-grid {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

.pkg-intro-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px 28px 26px 34px; /* extra left padding wegen der Kerbe */
  min-height: 126px;
  text-align: center;
  font-size: clamp(11.5px, 1vw, 13px);
  font-weight: 500;
  line-height: 1.45;
  position: relative;
  margin-right: 5px; /* Lücke: Hintergrund scheint durch */
  /* Kerbe links (nach innen), Spitze rechts (nach außen) — Puzzleform */
  clip-path: polygon(0% 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 0% 100%, 22px 50%);
}

.pkg-intro-item:first-child {
  /* erste Karte: linke Seite glatt, Spitze rechts */
  clip-path: polygon(0% 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 0% 100%);
  border-radius: 6px 0 0 6px;
  padding-left: 28px;
}

.pkg-intro-item:last-child {
  margin-right: 0;
}

/* Gradient: #708586 (brand) → tiefer Petrol — Sättigung steigt beim Abdunkeln */
.pkg-intro-item:nth-child(1) { z-index: 5; background: #708586; color: #fff; }
.pkg-intro-item:nth-child(2) { z-index: 4; background: #4d7880; color: #fff; }
.pkg-intro-item:nth-child(3) { z-index: 3; background: #2f6370; color: #fff; }
.pkg-intro-item:nth-child(4) { z-index: 2; background: #1a505e; color: #fff; }
.pkg-intro-item:nth-child(5) { z-index: 1; background: #0d3e4c; color: #b8d8e2; }

.pkg-intro-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.pkg-intro-item:nth-child(1) .pkg-intro-item__icon {
  background: rgba(27, 48, 56, 0.13);
}

.pkg-intro-item__icon svg {
  width: 18px;
  height: 18px;
}

.pkg-intro-item__label {
  /* inherits color from parent */
}

.pkg-intro-block__bridge {
  font-size: clamp(13.5px, 1.25vw, 15.5px);
  color: var(--text-sec);
  line-height: 1.85;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .pkg-intro-grid {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    margin-left: clamp(12px, 4vw, 20px);
    margin-right: clamp(12px, 4vw, 20px);
  }

  .pkg-intro-item {
    flex: none;
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: -24px; /* etwas mehr als Kerben-Tiefe → keine Sub-Pixel-Lücken */
    padding: 38px 28px 50px !important; /* oben + unten: Platz für Kerbe & Spitze */
    min-height: 90px;
    text-align: center;
    border-radius: 0 !important;
    /* Kerbe oben (nimmt vorherige Spitze auf) + Spitze unten (greift ins nächste) */
    clip-path: polygon(0% 0%, 50% 22px, 100% 0%, 100% calc(100% - 22px), 50% 100%, 0% calc(100% - 22px)) !important;
  }

  /* Erstes Element: flache Oberkante, Spitze unten */
  .pkg-intro-item:first-child {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 22px), 50% 100%, 0% calc(100% - 22px)) !important;
    border-radius: 8px 8px 0 0 !important;
    padding-top: 28px !important;
  }

  /* Letztes Element: Kerbe oben, flache Unterkante */
  .pkg-intro-item:last-child {
    clip-path: polygon(0% 0%, 50% 22px, 100% 0%, 100% 100%, 0% 100%) !important;
    border-radius: 0 0 8px 8px !important;
    margin-bottom: 0;
    padding-bottom: 28px !important;
  }
}

.pkg-tease-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 64px);
  align-items: stretch;
}

.pkg-tease-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pkg-tease-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(160, 130, 127, 0.12);
}

.pkg-tease-card--featured {
  background: var(--dark-teal);
  border-color: var(--dark-teal);
}

.pkg-tease-card--featured:hover {
  border-color: var(--dark-teal);
  box-shadow: 0 12px 40px rgba(51, 73, 78, 0.25);
}

.pkg-tease-card__badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--warm-taupe);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: var(--r-full);
}

.pkg-tease-card__title {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  color: var(--text);
  margin-top: 4px;
}

.pkg-tease-card--featured .pkg-tease-card__title { color: var(--cream); }

.pkg-tease-card__desc {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.6;
  flex: 1;
}

.pkg-tease-card--featured .pkg-tease-card__desc { color: rgba(245, 237, 232, 0.75); }

.pkg-tease-card__price {
  font-weight: 600;
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--dark-teal);
  margin-top: 4px;
  white-space: nowrap;
}

.pkg-tease-card--featured .pkg-tease-card__price { color: var(--cream); }

.pkg-tease-card--featured .label { color: rgba(245, 237, 232, 0.55); }

.pkg-tease-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: gap 0.2s;
}

.pkg-tease-card__link:hover { gap: 10px; }
.pkg-tease-card--featured .pkg-tease-card__link { color: var(--rose-pale); }

@media (max-width: 900px) {
  .pkg-tease-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ============================================================
   SECTION: ABOUT PREVIEW
   ============================================================ */
.about-preview {
  padding-block: var(--sec-py);
}

.about-preview__visual {
  position: relative;
}

.about-preview__img-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--rose-pale);
  position: relative;
}

.about-preview__img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.about-preview__img-frame:hover img { transform: scale(1.03); }

.about-preview__badge-float {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--sh-md);
  max-width: 200px;
}

.about-preview__badge-float .badge-number {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 300;
  color: var(--deep-teal);
  display: block;
  line-height: 1;
}

.about-preview__badge-float .badge-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-preview__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.about-preview__quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--text-sec);
  line-height: 1.6;
  padding-left: 24px;
  border-left: 2px solid var(--rose-medium);
}

/* ============================================================
   SECTION: SERVICES
   ============================================================ */
.services-section {
  background:
    linear-gradient(rgba(237, 227, 222, 0.90), rgba(237, 227, 222, 0.94)),
    url('../assets/hero-workspace.jpg') center / cover no-repeat;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-medium), var(--warm-taupe));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--rose-medium);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
  font-family: var(--font-sans);
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--rose-medium);
  opacity: 0.55;
  margin-bottom: 12px;
  display: block;
}

.service-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s var(--ease);
}

.service-card:hover .service-card__icon { background: var(--rose-medium); }
.service-card:hover .service-card__icon svg { stroke: var(--cream); }

.service-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--warm-taupe);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s var(--ease);
}

.service-card__title {
  font-family: var(--font-sans);
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text);
}

.service-card__text {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-taupe);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.2s;
}

.service-card__link:hover { color: var(--accent-dark); }

.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION: USPs
   ============================================================ */
.usp-section {
  background: var(--bg-alt);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.usp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.usp-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--rose-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--warm-taupe);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.usp-card__title {
  font-family: var(--font-sans);
  font-size: 19px;
  margin-bottom: 10px;
}

.usp-card__text {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ============================================================
   INTRO CTA STRIP
   ============================================================ */
.intro__cta-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  margin-top: clamp(28px, 3.5vw, 40px);
}

.intro__cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  padding-block: clamp(24px, 3vw, 36px);
  flex-wrap: wrap;
}

.intro__cta-strip__text {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-sec);
  line-height: 1.65;
  max-width: 520px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  padding-block: clamp(24px, 3vw, 36px);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(164, 138, 135, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--warm-taupe);
}

.trust-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.trust-item__sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

.trust-strip__sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-strip__sep { display: none; }
  .trust-strip__inner { justify-content: center; gap: 20px; }
  .intro__cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SECTION: TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding-block: var(--sec-py);
  background:
    linear-gradient(rgba(228, 236, 238, 0.93), rgba(228, 236, 238, 0.93)),
    url('../assets/Bild3.JPG') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* ── Case Study Card ──────────────────────────── */
.case-card {
  margin-top: clamp(40px, 5vw, 64px);
  background: var(--dark-teal);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 56px);
  color: var(--cream);
}

.case-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245, 237, 232, 0.12);
  margin-bottom: 36px;
}

.case-card__client {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.case-card__industry {
  font-size: clamp(12px, 1.1vw, 14px);
  color: rgba(245, 237, 232, 0.55);
  letter-spacing: 0.02em;
}

.case-card__tag {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(122, 164, 168, 0.12);
  border: 1px solid rgba(122, 164, 168, 0.25);
  border-radius: var(--r-full);
  padding: 6px 16px;
}

.case-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.case-card__story-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  margin-top: 24px;
}

.case-card__story-label:first-child { margin-top: 0; }

.case-card__story-text {
  font-size: clamp(14px, 1.3vw, 15px);
  color: rgba(245, 237, 232, 0.72);
  line-height: 1.75;
}

.case-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-card__list li {
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(245, 237, 232, 0.72);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.case-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 12px;
  top: 2px;
}

.case-card__note {
  margin-top: 24px;
  font-size: clamp(11px, 1vw, 13px);
  color: rgba(245, 237, 232, 0.38);
  line-height: 1.7;
  border-top: 1px solid rgba(245, 237, 232, 0.08);
  padding-top: 16px;
}

.case-card__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.case-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Notification mockups */
.case-notifs {
  position: relative;
  height: 148px;
}

.notif-card {
  position: absolute;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.notif-card--1 {
  top: 36px;
  transform: rotate(4deg);
  opacity: 0.25;
}

.notif-card--2 {
  top: 24px;
  transform: rotate(2.5deg);
  opacity: 0.45;
}

.notif-card--3 {
  top: 12px;
  transform: rotate(1deg);
  opacity: 0.7;
}

.notif-card--4 {
  top: 0;
  transform: rotate(-1.5deg);
  opacity: 1;
}

.notif-card__inner {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  align-items: flex-start;
}

.notif-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-card__content {
  flex: 1;
  min-width: 0;
}

.notif-card__header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.notif-card__sender {
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.notif-card__time {
  font-size: 11px;
  color: #8a8a8e;
  flex-shrink: 0;
  margin-left: 8px;
}

.notif-card__title {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 2px;
}

.notif-card__body {
  font-size: 12px;
  color: #3a3a3a;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 237, 232, 0.1);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 28px);
}

.case-stat__num {
  display: block;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.case-stat__label {
  display: block;
  font-size: clamp(11px, 1vw, 13px);
  color: rgba(245, 237, 232, 0.5);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .case-card__body {
    grid-template-columns: 1fr;
  }
  .case-card__top {
    flex-direction: column;
  }
}

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.faq-section {
  background: var(--bg-alt);
  padding-block: var(--sec-py);
}

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: color 0.2s var(--ease);
}

.faq-question::-webkit-details-marker,
.faq-question::marker { display: none; }

.faq-question:hover { color: var(--dark-teal); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--rose-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 300;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--rose-medium);
  color: #fff;
}

.faq-answer {
  padding: 0 56px 24px 0;
  color: var(--text-sec);
  font-size: 15px;
  line-height: 1.8;
  animation: faqReveal 0.3s ease;
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION: CTA
   ============================================================ */
.cta-section {
  padding-block: var(--sec-py);
  background:
    linear-gradient(rgba(51, 73, 78, 0.82), rgba(51, 73, 78, 0.90)),
    url('../assets/hero-neu.jpg') center / cover no-repeat;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(208, 176, 172, 0.14), transparent 60%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--rose-medium);
  display: block;
  margin-bottom: 16px;
}

.cta-section__title {
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-section__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(245, 237, 232, 0.65);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 44px;
  line-height: 1.7;
}

/* ============================================================
   CERT STRIPE
   ============================================================ */
.cert-stripe {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 18px;
  overflow: hidden;
  position: relative;
}

.cert-stripe__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: certScroll 28s linear infinite;
}

.cert-stripe:hover .cert-stripe__track {
  animation-play-state: paused;
}

@keyframes certScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cert-stripe__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.cert-stripe__item svg {
  width: 16px; height: 16px;
  stroke: var(--rose-medium);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

.cert-stripe__dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose-medium);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================================
   PAGE HERO — SUBPAGES
   ============================================================ */
.page-hero {
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.page-hero--offerings {
  text-align: left;
  background-color: #0d1a1d;
  background-image:
    linear-gradient(
      to right,
      rgba(13, 26, 29, 0.97) 0%,
      rgba(13, 26, 29, 0.82) 55%,
      rgba(13, 26, 29, 0.55) 100%
    ),
    url('../assets/Bild1.JPG');
  background-size: cover;
  background-position: center 70%;
}

/* Dark hero text */
.page-hero--offerings .offerings-hero__label {
  color: rgba(245, 237, 232, 0.50);
}
.page-hero--offerings .offerings-hero__title {
  color: #a8bfc1;
}
.page-hero--offerings .offerings-hero__title em {
  color: var(--rose-medium);
}
/* Remove the top border line — doesn't work on dark */
.page-hero--offerings::before {
  display: none;
}

/* ── Offerings Split Hero ─────────────────────────────── */
.offerings-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding-top: 20px;
}

.offerings-hero__label {
  display: block;
  margin-bottom: 20px;
}

.offerings-hero__title {
  /* left-aligned, no auto margins */
}

.offerings-hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: 0 20px 60px rgba(51, 73, 78, 0.10);
  position: relative;
}

.offerings-hero__card-badge {
  position: absolute;
  top: -18px;
  right: 28px;
  background: var(--warm-taupe);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 6px 20px;
  border-radius: var(--r-full);
  box-shadow: 0 6px 20px rgba(164, 138, 135, 0.45);
  white-space: nowrap;
}

.offerings-hero__card-desc {
  font-size: clamp(14px, 1.1vw, 15px);
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 28px;
}

.offerings-hero__card-title {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 24px;
}

.offerings-hero__card-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.offerings-hero__card-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  min-height: 60px;
}

.offerings-hero__card-col .label {
  display: block;
  margin-bottom: 8px;
}

.offerings-hero__card-col p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.65;
  margin: 0;
}

.offerings-hero__card-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.offerings-hero__card-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* ── Offerings Cards Grid ─────────────────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offering-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.offering-card__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-medium);
  margin-bottom: 10px;
}

.offering-card__label {
  display: block;
  margin-bottom: 14px;
}

.offering-card__title {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 16px;
}

.offering-card__text {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 28px;
}

.offering-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.offering-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sec);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.offering-card__features li span {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offering-card__features li svg {
  width: 14px;
  height: 14px;
  stroke: var(--rose-medium);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Bonus Feature Item ──────────────────────────────── */
.offering-card__feature--bonus {
  margin-top: 4px;
  background: rgba(112, 133, 134, 0.08);
  border-radius: var(--r-sm);
  border-bottom: none !important;
  padding: 10px 12px !important;
  font-weight: 500;
  color: var(--accent) !important;
  font-size: 12.5px !important;
  line-height: 1.5;
}
.offering-card__feature--bonus span svg {
  stroke: var(--accent);
}

/* ── Featured Card ───────────────────────────────────── */
.offering-card {
  position: relative;
}

.offering-card__badge {
  display: inline-block;
  background: var(--warm-taupe);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.offering-card--featured {
  background: var(--dark-teal);
  border-color: var(--dark-teal);
}

.offering-card--featured:hover {
  box-shadow: 0 20px 60px rgba(51, 73, 78, 0.25);
}

.offering-card--featured .offering-card__title,
.offering-card--featured .offering-card__text {
  color: var(--cream);
}

.offering-card--featured .offering-card__label {
  color: rgba(245, 237, 232, 0.5);
}

.offering-card--featured .offering-card__features li {
  border-color: rgba(245, 237, 232, 0.12);
  color: rgba(245, 237, 232, 0.8);
}

.offering-card--featured .offering-card__features li svg {
  stroke: var(--rose-medium);
}

/* ── Pricing ─────────────────────────────────────────── */
.offering-card__price {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offering-card--featured .offering-card__price {
  border-color: rgba(245, 237, 232, 0.15);
}

.offering-card__price-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-block: 12px;
}

.offering-card__price-row--sub {
  border-top: 1px solid var(--border);
}

.offering-card--featured .offering-card__price-row--sub {
  border-color: rgba(245, 237, 232, 0.12);
}

.offering-card__price-amount {
  font-size: clamp(26px, 2.2vw, 32px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.offering-card__price-amount--sm {
  font-size: clamp(20px, 1.7vw, 24px);
}

.offering-card--featured .offering-card__price-amount {
  color: var(--cream);
}

.offering-card__price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.offering-card--featured .offering-card__price-note {
  color: rgba(245, 237, 232, 0.45);
}

.offering-card__cta {
  width: 100%;
  justify-content: center;
}

.offerings-tax-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: clamp(28px, 3vw, 40px);
}

.offerings-cta-banner {
  margin-top: clamp(40px, 5vw, 56px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 48px);
}

.offerings-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 48px);
}

.offerings-cta-banner__title {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.offerings-cta-banner__text {
  font-size: clamp(14px, 1.1vw, 15px);
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 480px;
  margin: 0;
}

.offerings-cta-banner__btn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .offerings-cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .offerings-cta-banner__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .offerings-hero__inner { grid-template-columns: 1fr; }
  .offerings-hero__card-cols {
    grid-template-columns: 1fr;
  }
  .offerings-hero__card-sep {
    height: 1px;
    width: 100%;
    min-height: auto;
    align-self: auto;
  }
  .page-hero--offerings { text-align: left; }
}

/* ============================================================
   PAGE--DARK  (offerings.html full dark mode)
   ============================================================ */

/* Base: whole page gets the dark hero colour */
.page--dark {
  background-color: #0d1a1d;
}

/* Potenzialanalyse-Karte im Hero → dunkles Glas */
.page--dark .offerings-hero__card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 237, 232, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.2);
}
.page--dark .offerings-hero__card-title {
  color: var(--cream);
}
.page--dark .offerings-hero__card-desc {
  color: rgba(245, 237, 232, 0.62);
}
.page--dark .offerings-hero__card-note {
  color: rgba(245, 237, 232, 0.35);
}
.page--dark .offerings-hero__card-badge {
  background: var(--mid-teal);
  box-shadow: 0 6px 20px rgba(62, 104, 112, 0.55);
}

/* Offerings section → transparent (dark bg visible) */
.page--dark .offerings-section {
  background: transparent;
}

/* Section header text */
.page--dark .offerings-section .section-header h2,
.page--dark .offerings-section .section-header .reveal-inner {
  color: var(--cream);
}
.page--dark .offerings-section .section-header .label {
  color: rgba(245, 237, 232, 0.42);
}

/* Regular offering cards → subtle rose-warm glass */
.page--dark .offering-card:not(.offering-card--featured) {
  background: rgba(208, 176, 172, 0.16);
  border-color: rgba(208, 176, 172, 0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 48px rgba(208, 176, 172, 0.08);
}
.page--dark .offering-card:not(.offering-card--featured):hover {
  background: rgba(208, 176, 172, 0.21);
  border-color: rgba(208, 176, 172, 0.42);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 60px rgba(208, 176, 172, 0.13);
}
.page--dark .offering-card__title  { color: var(--cream); }
.page--dark .offering-card__text   { color: rgba(245, 237, 232, 0.60); }
.page--dark .offering-card__label  { color: rgba(245, 237, 232, 0.38); }
.page--dark .offering-card__features          { border-color: rgba(245, 237, 232, 0.08); }
.page--dark .offering-card__features li       { color: rgba(245, 237, 232, 0.72); border-color: rgba(245, 237, 232, 0.08); }
.page--dark .offering-card__price             { border-color: rgba(245, 237, 232, 0.09); }
.page--dark .offering-card__price-row--sub    { border-color: rgba(245, 237, 232, 0.08); }
.page--dark .offering-card__price-amount      { color: var(--cream); }
.page--dark .offering-card__price-note        { color: rgba(245, 237, 232, 0.38); }

/* Bonus feature item on dark bg */
.page--dark .offering-card__feature--bonus {
  background: rgba(112, 133, 134, 0.15);
  color: #a8bfc1 !important;
}
.page--dark .offering-card__feature--bonus span svg {
  stroke: #a8bfc1;
}

/* Outline button on dark → light ghost */
.page--dark .offering-card .btn--outline {
  color: rgba(245, 237, 232, 0.80);
  border-color: rgba(245, 237, 232, 0.22);
}
.page--dark .offering-card .btn--outline:hover {
  color: var(--cream);
  border-color: rgba(245, 237, 232, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* Featured card → glowing teal on dark */
.page--dark .offering-card--featured {
  background: rgba(46, 74, 80, 0.70);
  border-color: rgba(112, 133, 134, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(112, 133, 134, 0.18), 0 24px 64px rgba(0, 0, 0, 0.4);
}
.page--dark .offering-card--featured:hover {
  box-shadow: 0 0 80px rgba(112, 133, 134, 0.28), 0 24px 64px rgba(0, 0, 0, 0.5);
}

/* CTA banner → dark glass */
.page--dark .offerings-cta-banner {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 237, 232, 0.10);
}
.page--dark .offerings-cta-banner__title { color: var(--cream); }
.page--dark .offerings-cta-banner__text  { color: rgba(245, 237, 232, 0.60); }

/* Tax note */
.page--dark .offerings-tax-note {
  color: rgba(245, 237, 232, 0.35);
}

/* Nav auf dunkler Seite – immer helle Texte/Icons (auch unscrolled) */
.page--dark .nav .nav__logo { color: rgba(245, 237, 232, 0.90); }
.page--dark .nav .nav__logo span { color: rgba(245, 237, 232, 0.45); }
.page--dark .nav .nav__link { color: rgba(245, 237, 232, 0.70); }
.page--dark .nav .nav__link:hover,
.page--dark .nav .nav__link.active { color: var(--cream); }
.page--dark .nav__toggle span { background: rgba(245, 237, 232, 0.90); }

/* Nav scrolled on dark page → dark glass instead of cream */
.page--dark .nav.scrolled {
  background: rgba(13, 26, 29, 0.90);
  border-bottom-color: rgba(245, 237, 232, 0.10);
}
.page--dark .nav.scrolled .nav__link { color: rgba(245, 237, 232, 0.70); }
.page--dark .nav.scrolled .nav__link:hover,
.page--dark .nav.scrolled .nav__link.active { color: var(--cream); }
.page--dark .nav.scrolled .nav__logo { color: rgba(245, 237, 232, 0.90); }
.page--dark .nav.scrolled .nav__logo span { color: rgba(245, 237, 232, 0.45); }

/* Mobile nav on dark page */
.page--dark .nav__mobile {
  background: rgba(13, 26, 29, 0.97);
  border-bottom-color: rgba(245, 237, 232, 0.10);
}
.page--dark .nav__mobile .nav__link { color: rgba(245, 237, 232, 0.70); }

/* ─── Homepage dark sections ──────────────────── */
body.page--dark {
  color: var(--cream);
  background: linear-gradient(
    180deg,
    #0d1a1d   0%,
    #152830  18%,
    #0f2228  36%,
    #1a3038  54%,
    #0d2025  72%,
    #0d1a1d 100%
  );
}

/* Sektionen: semi-transparente Glasplatten statt massiv dunkel */
body.page--dark .intro-section {
  background: rgba(46, 74, 80, 0.22);
  border-bottom-color: rgba(245, 237, 232, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body.page--dark .fit-section {
  background: transparent;
  border-bottom-color: rgba(245, 237, 232, 0.08);
}

body.page--dark .section--alt {
  background: rgba(46, 74, 80, 0.18);
  border-bottom-color: rgba(245, 237, 232, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body.page--dark .process-section {
  background: transparent;
  border-bottom-color: rgba(245, 237, 232, 0.08);
}

body.page--dark .faq-section {
  background: rgba(62, 104, 112, 0.16);
  border-bottom-color: rgba(245, 237, 232, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* General text on dark */
body.page--dark h2,
body.page--dark h3,
body.page--dark h4 { color: var(--cream); }
body.page--dark p { color: rgba(245, 237, 232, 0.72); }
body.page--dark .label { color: rgba(245, 237, 232, 0.42); }
body.page--dark .text-sec,
body.page--dark .intro__cta-text { color: rgba(245, 237, 232, 0.65); }

/* Cert stripe */
body.page--dark .cert-stripe {
  border-color: rgba(245, 237, 232, 0.08);
}
body.page--dark .cert-stripe__item { color: rgba(245, 237, 232, 0.45); }

/* Intro / Über-mich */
body.page--dark .intro-section { border-bottom-color: rgba(245, 237, 232, 0.10); }
body.page--dark .intro__photo img {
  filter:
    grayscale(1)
    drop-shadow( 5px  0   0 rgba(245, 237, 232, 0.25))
    drop-shadow(-5px  0   0 rgba(245, 237, 232, 0.25))
    drop-shadow( 0    5px 0 rgba(245, 237, 232, 0.25))
    drop-shadow( 0   -5px 0 rgba(245, 237, 232, 0.25))
    drop-shadow( 0   32px 64px rgba(0, 0, 0, 0.55));
}
body.page--dark .intro__left-cta { border-top-color: rgba(245, 237, 232, 0.10); }
body.page--dark .intro__cta-text { color: rgba(245, 237, 232, 0.65); }
body.page--dark .intro-inner blockquote,
body.page--dark .intro__quote {
  background: rgba(112, 133, 134, 0.20);
  border-color: rgba(112, 133, 134, 0.40);
  color: rgba(245, 237, 232, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.page--dark .intro__more-toggle {
  border-color: rgba(245, 237, 232, 0.22);
  color: rgba(245, 237, 232, 0.80);
}
body.page--dark .intro__expand {
  border-color: rgba(245, 237, 232, 0.08);
}
body.page--dark .intro__expand-inner { border-top-color: rgba(245, 237, 232, 0.10); }
body.page--dark .intro__expand-inner p { color: rgba(245, 237, 232, 0.65); }
body.page--dark .intro__cta-btn.btn--primary { background: var(--accent); }

/* Fit cards */
body.page--dark .fit-card {
  background: rgba(46, 74, 80, 0.45);
  border-color: rgba(245, 237, 232, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.page--dark .fit-card--good { background: rgba(46, 74, 80, 0.65); border-color: rgba(112, 133, 134, 0.38); }
body.page--dark .fit-card__title { color: var(--cream); }
body.page--dark .fit-list li { color: rgba(245, 237, 232, 0.70); border-color: rgba(245, 237, 232, 0.08); }
/* Checkmarks in rose */
body.page--dark .fit-card--good .fit-list li::before { color: var(--rose-medium); }

/* New fit section — open checklist + sticker layout */
body.page--dark .fit-check-item {
  color: rgba(245, 237, 232, 0.88);
}
body.page--dark .fit-check-icon {
  background: var(--rose-medium);
  color: #1a1a1a;
}
body.page--dark .fit-sticker__img {
  filter:
    grayscale(1)
    drop-shadow(-8px 0 0 rgba(245, 237, 232, 0.12))
    drop-shadow( 0  32px 64px rgba(0, 0, 0, 0.55));
}
body.page--dark .fit-notgood {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 237, 232, 0.10);
}
body.page--dark .fit-notgood__label {
  color: rgba(245, 237, 232, 0.45);
}
body.page--dark .fit-notgood__list li {
  color: rgba(245, 237, 232, 0.45);
}
body.page--dark .fit-notgood__list li::before {
  color: rgba(245, 237, 232, 0.30);
  opacity: 1;
}

/* Process steps */
body.page--dark .process-step {
  background: rgba(112, 133, 134, 0.52);
  border-color: rgba(112, 133, 134, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.page--dark .process-step__title { color: var(--cream); }
body.page--dark .process-step__text { color: rgba(245, 237, 232, 0.75); }

/* Process pillars – soft rose accent */
body.page--dark .process-pillar {
  background: rgba(201, 168, 164, 0.28);
  border: 1px solid rgba(201, 168, 164, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.page--dark .process-pillar__name { color: var(--cream); letter-spacing: 0.07em; }
body.page--dark .process-pillar__text { color: rgba(245, 237, 232, 0.70); }

/* Pkg-tease cards (non-featured already dark) */
body.page--dark .pkg-tease-card:not(.pkg-tease-card--featured) {
  background: rgba(46, 74, 80, 0.45);
  border-color: rgba(112, 133, 134, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.page--dark .pkg-tease-card__title { color: var(--cream); }
body.page--dark .pkg-tease-card__desc  { color: rgba(245, 237, 232, 0.65); }
body.page--dark .pkg-tease-card__price { color: rgba(245, 237, 232, 0.85); }
body.page--dark .pkg-tease-card__link  { color: rgba(245, 237, 232, 0.60); }
body.page--dark .pkg-intro-block__bridge { color: rgba(245, 237, 232, 0.60); }

/* Testimonials */
body.page--dark .testimonials-section {
  background:
    linear-gradient(rgba(13, 26, 29, 0.88), rgba(13, 26, 29, 0.88)),
    url('../assets/Bild3.JPG') center / cover no-repeat;
}

/* Notification-Cards im Case-Study-Bereich: weiße Karten → dunkle Schrift beibehalten */
body.page--dark .notif-card {
  background: rgba(255, 255, 255, 0.96);
}
body.page--dark .notif-card p,
body.page--dark .notif-card__body { color: #3a3a3a; }
body.page--dark .notif-card__sender,
body.page--dark .notif-card__title { color: #1a1a1a; }
body.page--dark .notif-card__time  { color: #8a8a8e; }

/* FAQ */
body.page--dark .faq-item { border-color: rgba(245, 237, 232, 0.10); }
body.page--dark .faq-question { color: var(--cream); }
body.page--dark .faq-question:hover { color: rgba(245, 237, 232, 0.80); }
body.page--dark .faq-answer p { color: rgba(245, 237, 232, 0.65); }
body.page--dark .faq-icon {
  background: rgba(208, 176, 172, 0.42);
  color: var(--cream);
  border: 1px solid rgba(208, 176, 172, 0.45);
}
body.page--dark .faq-item[open] .faq-icon {
  background: rgba(208, 176, 172, 0.70);
  color: var(--cream);
  border-color: rgba(208, 176, 172, 0.65);
}

/* Section header labels */
body.page--dark .section-header .label { color: rgba(245, 237, 232, 0.42); }
body.page--dark .section-header h2 { color: var(--cream); }

/* Trust-strip (zwischen Pakete und Case Study) */
body.page--dark .trust-strip {
  background: rgba(13, 26, 29, 0.65);
  border-color: rgba(112, 133, 134, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.page--dark .trust-item__title { color: var(--cream); }
body.page--dark .trust-item__sub   { color: rgba(245, 237, 232, 0.50); }
body.page--dark .trust-item__icon  { background: rgba(112, 133, 134, 0.20); color: var(--rose-medium); }
body.page--dark .trust-strip__sep  { background: rgba(245, 237, 232, 0.10); }

/* Chevron-Pfeile semi-transparent — heller links → dunkler rechts, Opazität steigt mit */
body.page--dark .pkg-intro-item:nth-child(1) { background: rgba(112, 133, 134, 0.50); }
body.page--dark .pkg-intro-item:nth-child(2) { background: rgba(77,  120, 128, 0.58); }
body.page--dark .pkg-intro-item:nth-child(3) { background: rgba(47,  99,  112, 0.66); }
body.page--dark .pkg-intro-item:nth-child(4) { background: rgba(26,  80,  94,  0.76); }
body.page--dark .pkg-intro-item:nth-child(5) { background: rgba(13,  62,  76,  0.88); }

/* Buttons in Dark Mode */
body.page--dark .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}
body.page--dark .btn--primary:hover {
  background: var(--mid-teal);
  border-color: var(--mid-teal);
}
body.page--dark .btn--outline {
  color: rgba(245, 237, 232, 0.88);
  border-color: rgba(245, 237, 232, 0.30);
}
body.page--dark .btn--outline:hover {
  background: rgba(245, 237, 232, 0.10);
  border-color: rgba(245, 237, 232, 0.55);
  color: var(--cream);
}
body.page--dark .btn--ghost {
  color: rgba(245, 237, 232, 0.75);
  border-color: rgba(245, 237, 232, 0.20);
}
body.page--dark .btn--ghost:hover {
  border-color: var(--rose-medium);
  color: var(--cream);
  background: transparent;
}

/* ─── end page--dark (index) ─── */

/* ─── page--dark: Kontaktseite ─── */
body.page--dark .contact-section {
  background:
    linear-gradient(rgba(8, 18, 20, 0.88), rgba(10, 22, 26, 0.92)),
    url('../assets/Bild1.JPG') center / cover no-repeat;
}

body.page--dark .contact-main__eyebrow { color: var(--accent); }
body.page--dark .contact-main__title   { color: var(--cream); }
body.page--dark .contact-main__sub     { color: rgba(245, 237, 232, 0.68); }
body.page--dark .contact-main__note    { color: rgba(245, 237, 232, 0.45); }

body.page--dark .contact-aside {
  justify-content: flex-end;
  padding-top: clamp(48px, 8vw, 96px);
}

body.page--dark .contact-aside__heading {
  color: rgba(245, 237, 232, 0.50);
}

body.page--dark .contact-option {
  background: rgba(46, 74, 80, 0.40);
  border-color: rgba(112, 133, 134, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.page--dark .contact-option:hover {
  background: rgba(62, 104, 112, 0.55);
  border-color: rgba(112, 133, 134, 0.40);
}
body.page--dark .contact-option__icon {
  background: rgba(112, 133, 134, 0.25);
  color: var(--accent);
}
body.page--dark .contact-option__label { color: rgba(245, 237, 232, 0.45); }
body.page--dark .contact-option__value { color: var(--cream); }

body.page--dark .social-link {
  background: rgba(46, 74, 80, 0.45);
  border-color: rgba(112, 133, 134, 0.25);
  color: var(--cream);
}
body.page--dark .social-link:hover {
  background: rgba(112, 133, 134, 0.45);
  border-color: rgba(112, 133, 134, 0.50);
  color: var(--cream);
}

body.page--dark .contact-sticker-wrap {
  margin-bottom: calc(-1 * var(--sec-py));
  align-items: flex-end;
}

body.page--dark .contact-sticker-img {
  filter:
    grayscale(1)
    drop-shadow( 5px  0   0 rgba(245, 237, 232, 0.30))
    drop-shadow(-5px  0   0 rgba(245, 237, 232, 0.30))
    drop-shadow( 0    5px 0 rgba(245, 237, 232, 0.30))
    drop-shadow( 0   -5px 0 rgba(245, 237, 232, 0.30))
    drop-shadow( 0   32px 64px rgba(0, 0, 0, 0.60));
}
/* ─── end page--dark (contact) ─── */

.page-hero__label {
  display: block;
  margin-bottom: 20px;
}

.page-hero__title {
  max-width: 700px;
  margin-inline: auto;
}

.page-hero__sub {
  max-width: 540px;
  margin-inline: auto;
  margin-top: 20px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-sec);
  line-height: 1.7;
}

.page-hero__deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
}

.page-hero__deco--tl {
  top: 60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-pale), transparent 70%);
  filter: blur(40px);
}

.page-hero__deco--br {
  bottom: -40px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-soft), transparent 70%);
  filter: blur(40px);
}

/* ============================================================
   ABOUT PAGE — HERO
   ============================================================ */
.about-hero {
  padding-top: clamp(100px, 12vw, 148px);
  padding-bottom: clamp(56px, 7vw, 88px);
  position: relative;
  background-color: var(--bg-alt);
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(245, 237, 232, 0.84),
      rgba(245, 237, 232, 0.84)
    ),
    url('../assets/IchmitFino.png');
  background-size: cover;
  background-position: center 20%;
  z-index: 0;
  pointer-events: none;
}

.about-hero > .container {
  position: relative;
  z-index: 1;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  padding-bottom: clamp(36px, 4vw, 52px);
}

.about-hero__label {
  display: block;
  margin-bottom: 20px;
}

.about-hero__title {
  margin-bottom: 0;
  line-height: 1.08;
}

.about-hero__intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-hero__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-sec);
  line-height: 1.7;
}

.about-hero__sub p {
  margin-bottom: 14px;
}

.about-hero__sub p:first-child {
  font-weight: 600;
  color: var(--text);
  font-size: clamp(16px, 1.5vw, 19px);
  margin-bottom: 16px;
}

.about-hero__sub p:last-child {
  margin-bottom: 0;
}

.about-hero__facts {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-hero__fact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
}

.about-hero__fact svg {
  width: 13px; height: 13px;
  stroke: var(--rose-medium);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-hero__facts {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}

/* ============================================================
   ABOUT PAGE — INTRO
   ============================================================ */
.about-intro {
  padding-block: var(--sec-py);
}

.about-intro__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-intro__heading {
  margin-top: 16px;
}

.about-intro__body {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-intro__body .btn { align-self: flex-start; margin-top: 8px; }

@media (max-width: 768px) {
  .about-intro__layout { grid-template-columns: 1fr; }
}

.about-intro__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.about-intro__content p {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-sec);
  line-height: 1.75;
}

/* Values */
.about-values-intro {
  max-width: 620px;
  margin: 36px auto 0;
  text-align: center;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
  color: var(--text-sec);
}

/* ============================================================
   ABOUT PAGE — PERSONAL MOMENT
   ============================================================ */
.about-personal {
  padding-block: var(--sec-py);
  background: var(--bg-alt);
}

.about-personal__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-personal__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 80px rgba(132, 146, 147, 0.14);
}

.about-personal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-personal__label {
  display: block;
  margin-bottom: 24px;
}

.about-personal__body {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-style: italic;
  line-height: 1.85;
  color: var(--text-sec);
}

@media (max-width: 768px) {
  .about-personal__inner {
    grid-template-columns: 1fr;
  }
  .about-personal__img-wrap {
    aspect-ratio: 3 / 2;
  }
}

.values-section {
  padding-block: var(--sec-py);
  background: var(--bg-alt);
}

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

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.value-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--rose-pale);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--warm-taupe);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.value-card__title {
  font-family: var(--font-sans);
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* Why freelance */
.why-section {
  padding-block: var(--sec-py);
}

.why-content {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.why-content p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ============================================================
   OFFERINGS PAGE
   ============================================================ */
.offerings-section {
  padding-block: var(--sec-py);
  background: var(--bg-alt);
}

.page-hero--offerings + .offerings-section {
  padding-top: clamp(48px, 6vw, 80px);
}

/* ── Potenzialanalyse Entry ───────────────────────────── */
.potenzial-entry {
  padding-block: clamp(48px, 6vw, 72px) clamp(40px, 5vw, 64px);
  background: var(--bg-alt);
}

.potenzial-entry__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 60px) clamp(32px, 4vw, 56px);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(132, 146, 147, 0.08);
}

.potenzial-entry__title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: clamp(32px, 4vw, 44px);
}

.potenzial-entry__cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  margin-bottom: clamp(32px, 4vw, 44px);
}

.potenzial-entry__sep {
  background: var(--border);
  align-self: stretch;
  min-height: 80px;
}

.potenzial-entry__col {
  text-align: left;
}

.potenzial-entry__col-eyebrow {
  display: block;
  margin-bottom: 10px;
}

.potenzial-entry__col p {
  font-size: clamp(14px, 1.1vw, 15px);
  color: var(--text-sec);
  line-height: 1.75;
  margin: 0;
}

.potenzial-entry__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.potenzial-entry__note {
  font-size: 13px;
  color: var(--text-sec);
  margin: 0;
  opacity: 0.7;
}

.offering-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  padding-block: 80px;
  border-bottom: 1px solid var(--border);
}

.offering-item:last-child { border-bottom: none; }

.offering-item--reverse { direction: rtl; }
.offering-item--reverse > * { direction: ltr; }

.offering-item__num {
  font-family: var(--font-sans);
  font-size: 80px;
  font-weight: 300;
  color: var(--rose-pale);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.offering-item__label {
  color: var(--rose-medium);
  margin-bottom: 16px;
}

.offering-item__title {
  font-size: clamp(26px, 2.8vw, 38px);
  margin-bottom: 20px;
}

.offering-item__text {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 28px;
}

.offering-item__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offering-item__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.5;
}

.offering-item__feature-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.offering-item__feature-icon svg {
  width: 18px; height: 18px;
  stroke: var(--rose-medium);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offering-item__visual {
  border-radius: var(--r-xl);
  background: var(--rose-pale);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.offering-visual-abstract {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offering-visual-abstract .oa-circle {
  border-radius: 50%;
  border: 1.5px solid var(--rose-medium);
  position: absolute;
  opacity: 0.4;
}

.offering-visual-abstract .oa-circle:nth-child(1) {
  width: 200px; height: 200px;
  animation: spinSlow 20s linear infinite;
}
.offering-visual-abstract .oa-circle:nth-child(2) {
  width: 130px; height: 130px;
  border-color: var(--warm-taupe);
  animation: spinSlow 14s linear infinite reverse;
}
.offering-visual-abstract .oa-circle:nth-child(3) {
  width: 60px; height: 60px;
  border-color: var(--dark-teal);
  animation: spinSlow 9s linear infinite;
}
.offering-visual-abstract .oa-center {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--rose-medium);
  box-shadow: 0 0 20px var(--rose-medium);
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Process */
.process-section {
  background: var(--bg-alt);
  padding-block: var(--sec-py);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/Bild1.JPG');
  background-size: cover;
  background-position: center 70%;
  opacity: 0.07;
  pointer-events: none;
}

.process-section > * {
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
  margin-top: clamp(40px, 5vw, 60px);
  align-items: stretch;
}

.process-unit {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease);
}

.process-unit:hover {
  transform: translateY(-5px);
}

.process-unit:hover .process-step {
  box-shadow: var(--sh-md);
}

.process-step {
  flex: 1;
  padding: clamp(24px, 3vw, 36px) clamp(18px, 2.5vw, 28px) clamp(44px, 5vw, 56px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s var(--ease);
}

.process-step__num {
  font-family: var(--font-script);
  font-size: 42px;
  color: var(--rose-medium);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.process-step__title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}

.process-step__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.process-pillar {
  background: var(--dark-teal);
  border-radius: var(--r-md);
  padding: 13px 16px 15px;
  margin-top: -22px;
  margin-left: clamp(10px, 1.8vw, 18px);
  position: relative;
  z-index: 2;
}

.process-pillar__name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--rose-pale);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.process-pillar__text {
  font-size: 11.5px;
  color: rgba(245, 237, 232, 0.68);
  line-height: 1.55;
}

/* Quote block */
.quote-block {
  padding-block: var(--sec-py);
  background: var(--deep-teal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(208, 176, 172, 0.10), transparent 60%);
}

.quote-block .container { position: relative; z-index: 1; }

.quote-block__text {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
  color: var(--cream);
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quote-block__author {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-medium);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding-block: var(--sec-py);
  background:
    linear-gradient(rgba(228, 236, 238, 0.92), rgba(228, 236, 238, 0.92)),
    url('../assets/Bild1.JPG') center / cover no-repeat;
}

/* ── Contact Header with Sticker ─────────────────────── */
.contact-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
}

.contact-header__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-header__title {
  margin-top: 8px;
}

.contact-header__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 480px;
}

/* ── Contact Three-Column Layout ────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: end;
}

.contact-sticker-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.contact-sticker-img {
  height: clamp(260px, 32vw, 460px);
  width: auto;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow( 5px  0   0 rgba(255, 255, 255, 0.96))
    drop-shadow(-5px  0   0 rgba(255, 255, 255, 0.96))
    drop-shadow( 0    5px 0 rgba(255, 255, 255, 0.96))
    drop-shadow( 0   -5px 0 rgba(255, 255, 255, 0.96))
    drop-shadow( 0   32px 64px rgba(132, 146, 147, 0.18));
  transform: rotate(-1.5deg);
  transition: transform 0.5s var(--ease);
}

.contact-sticker-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.contact-main__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--text-sec);
}

.contact-main__title {
  margin-bottom: 24px;
}

.contact-main__sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-main__btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-main__note {
  font-size: 13px;
  color: var(--text-sec);
  text-align: center;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 4px;
}

.contact-aside__heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 16px;
}

.contact-aside__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-option {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(132, 146, 147, 0.12);
  border-color: var(--rose-medium);
}

.contact-option__icon {
  width: 44px; height: 44px;
  background: var(--rose-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-option__icon svg {
  width: 20px; height: 20px;
  stroke: var(--warm-taupe);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.contact-option__label {
  display: block;
}

.contact-option__value {
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--text);
  font-weight: 500;
  word-break: break-all;
}

.contact-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  color: var(--text-sec);
}

.social-link:hover {
  border-color: var(--deep-teal);
  color: var(--deep-teal);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}


/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================================ */
.legal-content {
  max-width: 740px;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.legal-content h2 {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 14px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--warm-taupe);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover { color: var(--accent-dark); }

.legal-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

.legal-content__credit {
  margin-top: 48px;
  font-size: 13px !important;
  color: var(--text-muted) !important;
}

.legal-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-list li {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-content code {
  font-family: monospace;
  font-size: 13px;
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: min(680px, calc(100vw - 32px));
  background: rgba(13, 26, 29, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 237, 232, 0.1);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity  0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text p {
  font-size: 13px;
  color: rgba(245, 237, 232, 0.62);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__text a {
  color: #a8bfc1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__accept {
  padding: 10px 20px;
  background: var(--deep-teal);
  color: var(--cream);
  border: 1.5px solid var(--deep-teal);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.cookie-banner__accept:hover {
  background: var(--mid-teal);
  border-color: var(--mid-teal);
  transform: translateY(-1px);
}

.cookie-banner__decline {
  padding: 10px 18px;
  background: transparent;
  color: rgba(245, 237, 232, 0.45);
  border: 1.5px solid rgba(245, 237, 232, 0.15);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.cookie-banner__decline:hover {
  border-color: rgba(245, 237, 232, 0.35);
  color: rgba(245, 237, 232, 0.75);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--deep-teal);
  padding-top: 80px;
  padding-bottom: 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  font-size: 14px;
  color: rgba(245, 237, 232, 0.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer__logo {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  display: block;
}

.footer__logo span {
  display: block;
  font-family: var(--font-script);
  font-size: 0.75em;
  color: var(--rose-medium);
  letter-spacing: 0.02em;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 237, 232, 0.4);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: rgba(245, 237, 232, 0.65);
  transition: color var(--t-fast, 0.2s);
}

.footer__link:hover { color: var(--rose-medium); }

.footer__bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: rgba(245, 237, 232, 0.35);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(245, 237, 232, 0.35);
  transition: color var(--t-fast, 0.2s);
}

.footer__legal a:hover { color: var(--rose-medium); }

/* ============================================================
   DIVIDERS
   ============================================================ */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   ANIMATIONS — KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
  }
  .hero__visual {
    justify-content: center;
    order: -1;
  }
  .hero__cutout-img {
    height: clamp(280px, 45vw, 420px);
    transform: none;
  }
  .hero__cutout-img:hover { transform: none; }
  .hero__text { padding-bottom: 0; padding-block: 0; }
  .hero__title { white-space: normal; font-size: clamp(28px, 8vw, 48px); }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .offering-item { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .offering-item--reverse { direction: ltr; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-step { padding-bottom: 50px; }

  .testimonials-track { grid-template-columns: 1fr; }

  /* Intro-Sektion: single column auf Tablet */
  .intro-inner {
    grid-template-columns: 1fr;
  }
  .intro__photo {
    height: 340px;
    position: relative;
  }
  .intro__photo img {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
  }
}

@media (max-width: 768px) {
  :root { --pad: 20px; --sec-py: 64px; }

  /* Logo-Subtitle auf Mobile ausblenden – mehr Platz für Hamburger */
  .nav__logo span { display: none; }

  /* Nav auf Mobile immer mit Hintergrund – Hamburger bleibt sichtbar */
  .nav {
    background: rgba(228, 236, 238, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .page--dark .nav {
    background: rgba(13, 26, 29, 0.96);
    border-bottom-color: rgba(245, 237, 232, 0.10);
  }

  .nav__links,
  .nav__cta { display: none; }

  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-sticker-wrap { display: none; }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }

  .cert-stripe { gap: 20px; justify-content: flex-start; }

  .btn-group { flex-direction: column; align-items: flex-start; }

  /* Mehr-über-mich + Zertifizierung nebeneinander auf Mobile */
  .intro__btn-row {
    flex-wrap: nowrap !important;
  }
  .intro__btn-row .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* Hero: Bild auf Mobile ausblenden – Text steht für sich */
  .hero__visual { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__text {
    padding-top: clamp(24px, 6vw, 48px);
    padding-bottom: clamp(32px, 6vw, 56px);
    text-align: left;
  }
  .hero__title {
    font-size: clamp(34px, 10vw, 52px);
    white-space: normal;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }
  .hero__badges { flex-wrap: wrap; gap: 8px; }

  /* Intro-Sektion: kompaktes Bild oben */
  .intro__photo { height: 260px; }

  /* Fit-Sektion: Sticker ausblenden */
  .fit-layout { padding-right: 0; }
  .fit-sticker { display: none; }
  .fit-notgood { display: flex; align-self: stretch; }
  .fit-notgood__list { grid-template-columns: 1fr; }
  .fit-notgood__list li { white-space: normal; }

  /* Pkg-Teaser */
  .pkg-tease-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --pad: 16px; --sec-py: 52px; }

  .about-preview__badge-float { right: 0; }

  .hero__title { font-size: clamp(30px, 11vw, 40px); }
  .hero__eyebrow { font-size: 12px; }
  .hero__badges { gap: 6px; }
  .hero__badge-pill { font-size: 11px; padding: 5px 10px; }

  /* Intro: noch kompakter */
  .intro__photo { height: 220px; }

  /* Fit notgood */
  .fit-notgood { padding: 16px; }
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .cursor { display: none; }
}
