:root {
  /* Brand – warmer & harmonischer aus dem ME-Logo abgeleitet */
  --violet: #603a70;          /* Logo Trauben-Lila */
  --violet-deep: #432555;
  --violet-soft: #8b5fa2;
  --mauve: #b88bb0;
  --mauve-soft: #d8bdd0;

  --gold: #c8a070;            /* Weicher warmer Gold (statt harter Ocher) */
  --gold-warm: #d4a87a;
  --gold-cream: #ead8b8;

  --coral: #e8a888;           /* Bridge / Wärme */
  --coral-soft: #f4cfb8;

  /* Light palette – warm cream */
  --bg: #fdf9f4;              /* Hauptcream */
  --bg-2: #f6eee0;            /* Soft beige */
  --bg-3: #ede2cf;
  --card-bg: #ffffff;

  --text: #3d2548;            /* Warmes tiefes Plum */
  --text-dim: #8a7588;
  --text-strong: #2a1832;
  --line: rgba(96, 58, 112, 0.12);
  --line-strong: rgba(96, 58, 112, 0.22);

  --radius: 26px;
  --radius-lg: 36px;
  --max: 1240px;
}

/* ----- Soft warm beige section ----- */
.section-warm {
  --bg: #f6eee0;
  --bg-2: #ede2cf;
  --bg-3: #e0d3bc;
  --card-bg: #fdf9f4;
  background: var(--bg);
}

/* ----- Dramatic dark aubergine section ----- */
.section-dark, .footer {
  --bg: #2a1830;
  --bg-2: #38203f;
  --bg-3: #482a52;
  --card-bg: #38203f;
  --text: #faf5ee;
  --text-dim: #d4c0d8;
  --text-strong: #fff;
  --line: rgba(212, 168, 122, 0.18);
  --line-strong: rgba(212, 168, 122, 0.36);
  background: var(--bg);
  color: var(--text);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--coral); }

h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-strong);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(253, 249, 244, 0.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform .35s ease, filter .35s ease;
  filter: drop-shadow(0 6px 16px rgba(96, 58, 112, 0.25));
}
.logo:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 10px 22px rgba(184, 137, 58, 0.4));
}
.logo-footer .logo-img { height: 100px; margin-bottom: 18px; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
}
.nav-links a:hover { color: var(--violet); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span { width: 26px; height: 2px; background: var(--text); transition: .3s; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--coral) 70%, var(--gold-warm) 130%);
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  box-shadow: 0 14px 32px -10px rgba(232, 168, 136, 0.5);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -12px rgba(232, 168, 136, 0.65);
  filter: brightness(1.06);
  color: #fff !important;
}
.btn-small { padding: 12px 22px; font-size: 14px; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--violet);
  color: var(--violet) !important;
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--violet);
  color: #fff !important;
  border-color: var(--violet);
}
.section-dark .btn-ghost {
  border-color: var(--gold-warm);
  color: var(--gold-warm) !important;
}
.section-dark .btn-ghost:hover {
  background: var(--gold-warm);
  color: var(--violet-deep) !important;
}
.btn-light {
  background: #fff; color: var(--violet) !important;
  box-shadow: 0 14px 40px -10px rgba(255, 255, 255, 0.4);
}
.btn-light:hover { color: var(--violet) !important; filter: brightness(0.97); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 200px 0 0;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(232, 168, 136, 0.30), transparent 60%),
    radial-gradient(700px 500px at 10% 70%, rgba(184, 139, 176, 0.28), transparent 60%),
    radial-gradient(600px 400px at 50% 40%, rgba(212, 168, 122, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: -1;
}
.hero-photo {
  position: absolute;
  top: 8%; right: -8%;
  width: 60%;
  height: 84%;
  background-image: url('images/warum-hands-laptop-1400.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 50% 0 0 50%;
  filter: blur(2px) saturate(0.7);
  opacity: 0.18;
  z-index: -1;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-inner { text-align: center; max-width: 980px; margin: 0 auto; padding-bottom: 90px; position: relative; z-index: 1; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 700;
  padding: 9px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(96, 58, 112, 0.06);
  margin-bottom: 30px;
}
.section-dark .eyebrow {
  color: var(--gold-warm);
  background: rgba(212, 168, 122, 0.12);
  border-color: rgba(212, 168, 122, 0.4);
}
.hero-title {
  font-size: clamp(42px, 7vw, 92px);
  margin-bottom: 30px;
  color: var(--text-strong);
}
.grad {
  background: linear-gradient(
    120deg,
    var(--violet-soft) 0%,
    var(--coral) 25%,
    var(--gold-warm) 50%,
    var(--coral) 75%,
    var(--violet-soft) 100%
  );
  background-size: 280% 280%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 10s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .grad { animation: none; }
}
.section-dark .grad {
  background: linear-gradient(135deg, var(--mauve-soft) 0%, var(--coral-soft) 50%, var(--gold-cream) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 660px;
  margin: 0 auto 44px;
}
.hero-sub strong { color: var(--violet); font-weight: 700; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 80px; }
.hero-stats {
  display: flex; gap: 60px; justify-content: center; flex-wrap: wrap;
  padding-top: 44px; border-top: 1px solid var(--line);
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  background: linear-gradient(135deg, var(--violet), var(--coral), var(--gold-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.hero-stats span { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(96, 58, 112, 0.05), rgba(232, 168, 136, 0.10), rgba(212, 168, 122, 0.08), rgba(96, 58, 112, 0.05));
  padding: 24px 0;
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--violet);
}
.section-dark .marquee-track { color: var(--gold-warm); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION ---------- */
.section { padding: 130px 0; position: relative; background: var(--bg); }
.section-tight { padding: 100px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 80px; }
.section-head h2 { font-size: clamp(36px, 5vw, 64px); margin: 22px 0; }
.lead { color: var(--text-dim); font-size: 18px; }

/* ---------- FÜR WEN ---------- */
.fuerwen-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.fuerwen-text h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin: 18px 0 24px;
}
.fuerwen-text .lead { margin-bottom: 22px; }
.muted-strong {
  color: var(--coral);
  font-weight: 600;
  font-size: 16px;
  font-style: italic;
}
.fuerwen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}
.fuerwen-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all .3s ease;
  cursor: default;
  box-shadow: 0 4px 14px -8px rgba(96, 58, 112, 0.18);
}
.fuerwen-tags .tag:hover {
  transform: translateY(-3px);
  border-color: var(--coral);
  color: var(--coral);
  box-shadow: 0 14px 24px -10px rgba(232, 168, 136, 0.5);
}
.fuerwen-tags .tag-you {
  background: linear-gradient(135deg, var(--violet), var(--coral) 60%, var(--gold-warm));
  border-color: transparent;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 32px -8px rgba(232, 168, 136, 0.65);
  animation: pulse 2.4s ease-in-out infinite;
}
.fuerwen-tags .tag-you:hover { color: #fff; transform: translateY(-3px) scale(1.05); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 32px -8px rgba(232, 168, 136, 0.65); }
  50% { box-shadow: 0 18px 44px -6px rgba(232, 168, 136, 1); }
}

/* ---------- PAKETE NOTE ---------- */
.pakete-note {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 24px 32px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-warm);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  text-align: left;
}
.pakete-note strong { color: var(--violet); font-weight: 700; }

/* ---------- TRANSPARENZ-BOX (Restaurant Kosten) ---------- */
.cost-box {
  max-width: 960px;
  margin: 70px auto 0;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 60px -24px rgba(96, 58, 112, 0.3);
}
.cost-box-head {
  text-align: center;
  margin-bottom: 36px;
}
.cost-box-head h3 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 16px 0 12px;
  font-family: 'Barlow Condensed', sans-serif;
}
.cost-box-head p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

.cost-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 36px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cost-row {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr;
  gap: 20px;
  padding: 22px 26px;
  background: var(--card-bg);
  align-items: center;
  transition: background .25s ease;
}
.cost-row:hover { background: var(--bg); }
.cost-row-highlight {
  background: linear-gradient(90deg, rgba(96, 58, 112, 0.06), rgba(232, 168, 136, 0.08));
  border-left: 4px solid var(--coral);
}
.cost-row-highlight:hover {
  background: linear-gradient(90deg, rgba(96, 58, 112, 0.1), rgba(232, 168, 136, 0.12));
}
.cost-label strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 4px;
}
.cost-label span {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.cost-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--violet);
  white-space: nowrap;
  text-align: right;
}
.cost-who {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  font-style: italic;
  text-align: right;
  white-space: nowrap;
}

.cost-note {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  padding: 0 8px;
}
.cost-note strong { color: var(--violet); font-weight: 700; }

@media (max-width: 720px) {
  .cost-box { padding: 28px 22px; margin-top: 50px; }
  .cost-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 18px;
  }
  .cost-value, .cost-who { text-align: left; }
  .cost-value { font-size: 20px; margin-top: 4px; }
}

/* ---------- SHOP SECTION ---------- */
.shop-pricing {
  margin-top: 20px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px !important;
  color: var(--text) !important;
  line-height: 1.7;
}
.shop-pricing strong { color: var(--violet); font-weight: 700; }
.shop-note {
  max-width: 860px;
  margin: 50px auto 0;
  padding: 26px 32px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-warm);
  border-radius: var(--radius);
  text-align: left;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}
.shop-note strong { color: var(--violet); font-weight: 700; }

.shop-fees-box {
  max-width: 860px;
  margin: 50px auto 0;
  padding: 36px 40px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px -20px rgba(96, 58, 112, 0.22);
}
.shop-fees-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 16px;
}
.shop-fees-box p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}
.shop-fees-box p:last-child { margin-bottom: 0; }
.shop-fees-box strong { color: var(--violet); font-weight: 700; }

/* ---------- STORY TEASER (Landing) ---------- */
.story-teaser {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(96, 58, 112, 0.3);
}
.story-teaser::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--violet), var(--coral) 50%, var(--gold-warm));
}
.story-teaser .eyebrow { margin-bottom: 24px; }
.story-teaser h2 {
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: 30px;
}
.story-teaser-lead {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(22px, 2.4vw, 28px) !important;
  font-weight: 600 !important;
  color: var(--text-strong) !important;
  line-height: 1.45 !important;
  max-width: 640px;
  margin: 0 auto 24px !important;
  font-style: italic;
}
.story-teaser-lead em { color: var(--violet) !important; font-style: italic; }
.story-teaser-body {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.story-teaser-body strong { color: var(--text-strong); }
@media (max-width: 720px) {
  .story-teaser { padding: 50px 28px; }
}

/* ---------- STORY / ÜBER MICH ---------- */
.story-card {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 90px 80px 70px;
  box-shadow: 0 40px 100px -30px rgba(96, 58, 112, 0.3);
  overflow: hidden;
}
.story-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--violet), var(--coral) 50%, var(--gold-warm));
}
.story-quote-mark {
  position: absolute;
  top: -10px;
  left: 50px;
  font-family: 'Barlow Condensed', serif;
  font-size: 260px;
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(135deg, var(--coral), var(--gold-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

.story-card p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.story-card strong { color: var(--text-strong); font-weight: 700; }
.story-card em { color: var(--violet); font-style: italic; font-weight: 500; }

.story-lead {
  position: relative;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(28px, 3.4vw, 40px) !important;
  font-weight: 700 !important;
  color: var(--text-strong) !important;
  line-height: 1.25 !important;
  text-align: center;
  margin: 0 auto 60px !important;
  max-width: 600px;
  letter-spacing: -0.005em;
}
.story-lead::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  margin: 30px auto 0;
  background: linear-gradient(90deg, var(--violet), var(--coral), var(--gold-warm));
  border-radius: 3px;
}

.story-chapter {
  position: relative;
  padding-left: 54px;
  margin-bottom: 8px;
}
.story-chapter::before {
  content: attr(data-chapter);
  position: absolute;
  top: 4px;
  left: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.16em;
  padding: 4px 10px;
  background: rgba(232, 168, 136, 0.12);
  border: 1px solid rgba(232, 168, 136, 0.32);
  border-radius: 999px;
}

.story-first::first-letter {
  font-family: 'Barlow Condensed', serif;
  font-size: 5em;
  font-weight: 800;
  line-height: 0.85;
  float: left;
  padding: 10px 14px 0 0;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.story-ornament {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px auto;
  max-width: 300px;
}
.story-ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.story-ornament-dot {
  color: var(--gold-warm);
  font-size: 14px;
}

.story-highlight {
  position: relative;
  margin: 50px -20px !important;
  padding: 50px 40px !important;
  background: linear-gradient(135deg, rgba(96, 58, 112, 0.06) 0%, rgba(232, 168, 136, 0.1) 50%, rgba(212, 168, 122, 0.08) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.story-highlight p {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(22px, 2.8vw, 30px) !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  color: var(--text-strong) !important;
  margin: 0 !important;
}
.story-highlight strong {
  background: linear-gradient(135deg, var(--violet), var(--coral), var(--gold-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
.story-highlight::before,
.story-highlight::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-warm);
  font-size: 16px;
}
.story-highlight::before { left: 20px; }
.story-highlight::after { right: 20px; }

.story-signature-wrap {
  margin-top: 60px;
  padding-top: 40px;
  text-align: center;
}
.story-signature-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--coral));
  margin: 0 auto 20px;
  border-radius: 2px;
}
.story-signature {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--violet) !important;
  letter-spacing: 0.02em;
  margin: 0 !important;
  line-height: 1 !important;
}
.story-signature-role {
  margin-top: 10px !important;
  font-size: 12px !important;
  color: var(--text-dim) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em !important;
  font-weight: 600;
}

@media (max-width: 720px) {
  .story-card { padding: 70px 28px 50px; }
  .story-quote-mark { font-size: 160px; left: 20px; }
  .story-chapter { padding-left: 0; }
  .story-chapter::before {
    position: static;
    display: inline-block;
    margin-bottom: 14px;
  }
  .story-highlight { margin: 40px 0 !important; padding: 36px 24px !important; }
  .story-highlight::before, .story-highlight::after { display: none; }
}

/* ---------- GRID ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 34px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 36px -18px rgba(96, 58, 112, 0.22);
}
.section-dark .card { box-shadow: 0 14px 44px -16px rgba(0,0,0,0.6); }
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(450px 240px at 100% 0%, rgba(232, 168, 136, 0.16), transparent 60%);
  opacity: 0; transition: opacity .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--coral);
  box-shadow: 0 26px 54px -20px rgba(232, 168, 136, 0.4);
}
.card:hover::before { opacity: 1; }
.card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.22em;
  margin-bottom: 22px;
}
.section-dark .card-num {
  background: linear-gradient(135deg, var(--gold-warm), var(--coral-soft));
  -webkit-background-clip: text;
  background-clip: text;
}
.card h3 { font-size: 28px; margin-bottom: 14px; position: relative; }
.card p { color: var(--text-dim); margin-bottom: 22px; position: relative; }
.card ul { list-style: none; position: relative; }
.card ul li {
  font-size: 14px; color: var(--text-dim);
  padding: 9px 0 9px 22px;
  border-top: 1px solid var(--line);
  position: relative;
}
.card ul li::before {
  content: '◆'; position: absolute; left: 0; top: 9px;
  color: var(--coral); font-size: 11px;
}
.card-accent {
  background: linear-gradient(160deg, rgba(232, 168, 136, 0.16), var(--card-bg));
  border-color: var(--coral);
}
.section-dark .card-accent {
  background: linear-gradient(160deg, rgba(212, 168, 122, 0.20), var(--card-bg));
  border-color: var(--gold-warm);
}

/* ---------- PORTFOLIO ---------- */
.portfolio .project {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  box-shadow: 0 14px 40px -20px rgba(96, 58, 112, 0.28);
}
.portfolio .project:hover {
  transform: translateY(-8px);
  border-color: var(--coral);
  box-shadow: 0 32px 64px -22px rgba(232, 168, 136, 0.45);
}
.project-accent {
  height: 6px;
  background: linear-gradient(90deg, var(--violet), var(--coral) 50%, var(--gold-warm));
}
.project-accent-empty {
  background: repeating-linear-gradient(
    90deg,
    var(--violet) 0 18px,
    transparent 18px 28px,
    var(--coral) 28px 46px,
    transparent 46px 56px,
    var(--gold-warm) 56px 74px,
    transparent 74px 84px
  );
  opacity: 0.5;
}

.project-body {
  padding: 38px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-tag-inline {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(232, 168, 136, 0.14);
  border: 1px solid rgba(232, 168, 136, 0.34);
  color: var(--coral);
  margin-bottom: 22px;
  font-weight: 700;
}
.portfolio .project h3 {
  font-size: 32px;
  margin: 0 0 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-strong);
}
.portfolio .project p {
  color: var(--text-dim);
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}
.project-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  padding-top: 18px;
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}
.project-link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-strong);
  text-decoration: none;
  transition: all .35s ease;
}
.project-link-btn .link-domain {
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-link-btn .link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--coral), var(--gold-warm));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .35s ease;
  box-shadow: 0 6px 16px -6px rgba(232, 168, 136, 0.6);
}
.project-link-btn:hover {
  border-color: var(--coral);
  background: var(--card-bg);
  color: var(--coral);
  box-shadow: 0 10px 28px -10px rgba(232, 168, 136, 0.45);
}
.project-link-btn:hover .link-arrow {
  transform: translate(2px, -2px) rotate(8deg);
}
.project-link-btn-cta {
  background: linear-gradient(135deg, rgba(96, 58, 112, 0.06), rgba(232, 168, 136, 0.10));
  border-color: rgba(232, 168, 136, 0.4);
  color: var(--violet);
}
.project-coming {
  background:
    radial-gradient(400px 300px at 100% 0%, rgba(232, 168, 136, 0.08), transparent 60%),
    var(--card-bg);
  border-style: dashed;
}

/* ---------- WARUM (split with image) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.warum-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.5);
}
.warum-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(0.95);
  transition: transform .8s ease;
}
.warum-photo:hover img { transform: scale(1.04); }
.warum-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42, 24, 48, 0) 50%, rgba(42, 24, 48, 0.55) 100%);
}
.warum-photo-tag {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  z-index: 1;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.warum-photo-tag span {
  display: block;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 6px;
}
.split h2 { font-size: clamp(34px, 4.8vw, 58px); margin: 22px 0; }
.features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.feature { display: flex; gap: 22px; align-items: flex-start; }
.feature .dot {
  flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--gold-warm));
  margin-top: 8px;
  box-shadow: 0 0 0 6px rgba(232, 168, 136, 0.18);
}
.feature h4 { font-size: 22px; margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 700; }
.feature p { color: var(--text-dim); font-size: 15px; }

/* ---------- TIMELINE ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 38px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet) 20%, var(--coral) 50%, var(--gold-warm) 80%, transparent);
  z-index: 0;
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 32px -16px rgba(96, 58, 112, 0.22);
}
.step-num {
  display: inline-flex;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--coral), var(--gold-warm));
  color: #fff;
  align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800;
  margin-bottom: 22px;
  box-shadow: 0 16px 32px -10px rgba(232, 168, 136, 0.6);
}
.step h3 { font-size: 22px; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 700; }
.step p { color: var(--text-dim); font-size: 14px; }

/* ---------- PRICING ---------- */
.pricing .price {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px 38px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  box-shadow: 0 14px 40px -18px rgba(96, 58, 112, 0.25);
}
.pricing .price:hover {
  transform: translateY(-8px);
  border-color: var(--coral);
  box-shadow: 0 32px 64px -22px rgba(232, 168, 136, 0.45);
}
.price h3 { font-size: 28px; margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 700; }
.price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px; font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--coral), var(--gold-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.price-amount .price-cycle {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dim);
  -webkit-text-fill-color: var(--text-dim);
  margin-left: 6px;
  letter-spacing: 0;
}
.price-sub { color: var(--text-dim); font-size: 12px; margin: 8px 0 26px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.empower-note {
  max-width: 860px;
  margin: 50px auto 0;
  padding: 26px 32px;
  background: var(--card-bg);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  text-align: center;
}
.empower-note p { color: var(--text-dim); font-size: 14px; line-height: 1.7; margin: 0; }
.empower-note strong { color: var(--violet); font-weight: 700; }
.price ul { list-style: none; flex: 1; margin-bottom: 28px; }
.price ul li {
  padding: 12px 0 12px 26px;
  border-top: 1px solid var(--line);
  position: relative;
  font-size: 15px;
  color: var(--text-dim);
}
.price ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--coral); font-weight: 800;
}
.price-feature {
  background: linear-gradient(160deg, rgba(232, 168, 136, 0.16), var(--card-bg));
  border-color: var(--coral);
  transform: scale(1.03);
}
.badge {
  position: absolute; top: -14px; right: 28px;
  background:
    linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, 0.45) 50%, transparent 75%),
    linear-gradient(135deg, var(--violet), var(--coral), var(--gold-warm));
  background-size: 200% 100%, 100% 100%;
  background-position: -150% 0, 0 0;
  background-repeat: no-repeat;
  color: #fff;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 24px -6px rgba(232, 168, 136, 0.55);
  animation: badgeShine 5s ease-in-out infinite;
}
@keyframes badgeShine {
  0%, 30% { background-position: -150% 0, 0 0; }
  70%, 100% { background-position: 250% 0, 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .badge { animation: none; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 32px;
  transition: border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 28px -14px rgba(96, 58, 112, 0.2);
}
.faq-item[open] {
  border-color: var(--coral);
  box-shadow: 0 18px 44px -16px rgba(232, 168, 136, 0.4);
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 32px;
  color: var(--coral);
  font-weight: 300;
  transition: transform .3s ease;
  flex-shrink: 0;
  line-height: 0.6;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-dim); margin-top: 14px; font-size: 15px; line-height: 1.7; }

/* ---------- CTA ---------- */
.cta {
  padding: 110px 24px;
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(232, 168, 136, 0.55), transparent 60%),
    radial-gradient(700px 400px at 80% 70%, rgba(212, 168, 122, 0.45), transparent 60%),
    linear-gradient(135deg, var(--violet) 0%, var(--violet-deep) 100%);
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 0 24px;
  color: #fff;
}
.cta-inner h2 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 22px; color: #fff; }
.cta-inner p { font-size: 19px; color: rgba(255, 255, 255, 0.95); margin-bottom: 38px; }

/* ---------- KONTAKT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px;
  display: flex; flex-direction: column; gap: 22px;
  box-shadow: 0 18px 56px -22px rgba(96, 58, 112, 0.32);
}
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); font-weight: 700; }
.contact-form input, .contact-form textarea {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .25s ease, background .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--card-bg);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.form-feedback {
  margin-top: 6px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 12px;
  transition: all .3s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}
.form-feedback.success,
.form-feedback.error {
  padding: 14px 18px;
  max-height: 200px;
  opacity: 1;
}
.form-feedback.success {
  background: rgba(34, 197, 94, 0.08);
  border: 1.5px solid rgba(34, 197, 94, 0.4);
  color: #15803d;
  font-weight: 600;
}
.form-feedback.error {
  background: rgba(220, 38, 38, 0.06);
  border: 1.5px solid rgba(220, 38, 38, 0.35);
  color: #b91c1c;
  font-weight: 500;
}
.contact-info {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px;
  box-shadow: 0 18px 56px -22px rgba(96, 58, 112, 0.32);
}
.contact-info h4 { font-size: 22px; margin-bottom: 14px; font-family: 'Inter', sans-serif; font-weight: 700; }
.contact-info p { color: var(--text-dim); margin-bottom: 8px; }
.contact-info a { color: var(--violet); font-weight: 600; }
.contact-info a:hover { color: var(--coral); }
.contact-info hr { border: none; border-top: 1px solid var(--line); margin: 28px 0; }
.muted { color: var(--text-dim); font-size: 14px; }

/* ---------- CONSENT CHECKBOX ---------- */
.consent-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}
.consent-check:hover { border-color: var(--violet); }
.consent-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--coral);
  cursor: pointer;
}
.consent-check span {
  font-size: 13px !important;
  color: var(--text-dim) !important;
  line-height: 1.55;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
}
.consent-check a {
  color: var(--violet);
  font-weight: 600;
  text-decoration: underline;
}
.consent-check a:hover { color: var(--coral); }
.consent-check.consent-error {
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.05);
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 90px 0 30px;
  margin-top: 100px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-warm); margin-bottom: 20px; font-weight: 800;
}
.footer a { display: block; color: var(--text-dim); padding: 5px 0; font-size: 15px; }
.footer a:hover { color: var(--coral-soft); }
.footer .logo { margin-bottom: 16px; }
.brand-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.brand-note strong { color: var(--gold-warm); font-weight: 700; }
.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ---------- LEGAL PAGES ---------- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.legal {
  padding-top: 180px;
  padding-bottom: 100px;
  max-width: 820px;
  margin: 0 auto;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  margin-bottom: 30px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 6px 18px -10px rgba(96, 58, 112, 0.25);
}
.back-link:hover {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
  transform: translateX(-3px);
}
.legal h1 { font-size: clamp(30px, 5vw, 60px); margin-bottom: 24px; line-height: 1.1; word-wrap: break-word; }
.legal h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 40px 0 14px;
  color: var(--violet);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
.legal h3 { line-height: 1.35; word-wrap: break-word; }
.legal p, .legal li {
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: clamp(15px, 1.6vw, 16px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.legal ul { padding-left: 24px; }
.legal ul li { margin-bottom: 8px; }
.legal a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.legal strong { color: var(--text-strong); }
@media (max-width: 720px) {
  .legal {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .legal h1 { font-size: 28px; margin-bottom: 18px; }
  .legal h2 { font-size: 19px; margin: 32px 0 10px; }
  .legal h3 { font-size: 16px !important; }
  .legal p, .legal li { font-size: 15px; line-height: 1.65; }
  .legal ul { padding-left: 20px; }
  .legal .back-link { margin-bottom: 20px; padding: 10px 18px; font-size: 13px; }
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--violet), var(--coral), var(--gold-warm));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px -10px rgba(232, 168, 136, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scroll-top svg { width: 22px; height: 22px; }
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 44px -8px rgba(232, 168, 136, 0.8);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 720px;
  margin: 0 auto;
  z-index: 200;
  background: rgba(253, 249, 244, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(96, 58, 112, 0.4);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .4s ease, transform .4s ease;
}
.cookie-banner.visible { opacity: 1; transform: translateY(0); }
.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
}
.cookie-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 6px;
}
.cookie-text p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}
.cookie-text a {
  color: var(--violet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-text a:hover { color: var(--coral); }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .cookie-banner { bottom: 12px; left: 12px; right: 12px; }
  .cookie-inner { grid-template-columns: 1fr; gap: 16px; padding: 20px 22px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; justify-content: center; }
  .scroll-top { bottom: 88px; right: 18px; width: 46px; height: 46px; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .grid-3, .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .warum-photo { aspect-ratio: 16 / 11; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .price-feature { transform: none; }
  .fuerwen-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { display: none; }
}
@media (max-width: 720px) {
  .grid-4 { grid-template-columns: 1fr; }
  .shop-fees-box { padding: 26px 22px; margin-top: 36px; }
  .shop-fees-box h4 { font-size: 16px; }
  .shop-fees-box p { font-size: 13px; }
  .pakete-note { padding: 20px 22px; margin-top: 28px; font-size: 13px; }
  .shop-note { padding: 22px 22px; margin-top: 36px; font-size: 13px; }
  .shop-pricing { font-size: 13px !important; }
  .empower-note { padding: 22px 22px; margin-top: 36px; font-size: 13px; }
  .nav-inner { height: 72px; }
  .logo-img { height: 48px; }
  .logo-footer .logo-img { height: 76px; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 24px 24px 40px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-150%);
    transition: transform .4s ease;
    box-shadow: 0 30px 60px -20px rgba(96, 58, 112, 0.25);
  }
  .nav-links::-webkit-scrollbar { width: 6px; }
  .nav-links::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 16px 4px;
    width: 100%;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .btn { margin-top: 16px; text-align: center; justify-content: center; border-bottom: none; }
  body.menu-open { overflow: hidden; }
  .burger { display: flex; }
  .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  .grid-3, .timeline { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 90px 0; }
  .hero { padding-top: 130px; }
  .hero-stats { gap: 30px; }
  .cta { margin: 0; border-radius: 0; }
  .contact-form, .contact-info { padding: 28px; }
}
