/* ═══════════════════════════════════════════════
   DESIGN SYSTEM & CSS RESET
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors — Dark Warm palette */
  --clr-bg:         #12110F;   /* warm near-black */
  --clr-bg-2:       #1C1A17;   /* subtle warm contrast for alternating sections */
  --clr-surface:    #201E1A;   /* card surfaces — visible but not harsh */
  --clr-surface-2:  #252018;   /* elevated elements */
  --clr-border:     rgba(255,240,210,0.07); /* warm subtle borders */

  /* Accent — warm Gold/Beige */
  --clr-accent:     #C8A96A;   /* gold/beige — warm & premium */
  --clr-accent-2:   #A88E5A;   /* muted hover/secondary tone */
  --clr-accent-glow:rgba(200,169,106,0.22);
  --clr-green:      #34d474;   /* kept for result badges */
  --clr-red-soft:   #ff6b6b;

  /* Text — warm off-white */
  --clr-text:       #F5F2EA;   /* warm off-white instead of cold white */
  --clr-text-muted: #CFC7B8;   /* warm muted — very readable */
  --clr-text-dim:   #7A7060;   /* warm dim, not invisible */

  /* Spacing — slightly more generous */
  --space-xs:  0.5rem;
  --space-sm:  1.1rem;
  --space-md:  1.65rem;
  --space-lg:  2.75rem;
  --space-xl:  4.5rem;
  --space-2xl: 6.5rem;
  --space-3xl: 9.5rem;

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  2rem;
  --fs-4xl:  2.75rem;
  --fs-5xl:  3.75rem;
  --fs-6xl:  5rem;

  /* Borders & Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Shadows — softer, less aggressive */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.22);
  --shadow-md:  0 8px 36px rgba(0,0,0,0.32);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.40);
  --shadow-accent: 0 0 48px rgba(200,169,106,0.18);

  /* Transitions */
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


/* ═══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--clr-accent), #D4B87A);
  color: #1A1510;
  box-shadow: 0 4px 24px var(--clr-accent-glow);
  letter-spacing: 0.01em;
}
.btn--primary:hover {
  box-shadow: 0 8px 36px rgba(200,169,106,0.40);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #D4B87A, #E2CA96);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
}
.btn--ghost:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.55rem 1.25rem;
  font-size: var(--fs-sm);
}

.btn--full { width: 100%; }


/* ═══════════════════════════════════════════════
   CUSTOM CURSOR (Signature Element)
══════════════════════════════════════════════ */

/* Hide the native cursor globally on desktop */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}

/* ── Glow dot (follows mouse exactly) ── */
#custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top;
  /* subtle constant pulse */
  box-shadow: 0 0 8px 2px rgba(200,169,106,0.50);
  transition:
    width  0.22s cubic-bezier(0.23,1,0.32,1),
    height 0.22s cubic-bezier(0.23,1,0.32,1),
    background 0.22s ease,
    opacity 0.22s ease,
    box-shadow 0.22s ease;
  opacity: 1;
}

/* ── Trailing ring (lerp-animated in JS) ── */
#custom-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(200,169,106,0.38);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition:
    width  0.35s cubic-bezier(0.23,1,0.32,1),
    height 0.35s cubic-bezier(0.23,1,0.32,1),
    border-color  0.35s ease,
    background    0.35s ease,
    opacity       0.35s ease;
  opacity: 1;
}

/* ── State: hovering a BUTTON ── */
#custom-cursor.state-button {
  width: 18px; height: 18px;
  background: #D4B87A;
  opacity: 0.7;
  box-shadow: 0 0 18px 5px rgba(212,184,122,0.50);
}
#custom-cursor-ring.state-button {
  width: 52px; height: 52px;
  border-color: rgba(212,184,122,0.50);
  background: rgba(200,169,106,0.05);
}

/* ── State: hovering a LINK ── */
#custom-cursor.state-link {
  width: 12px; height: 12px;
  background: var(--clr-accent-2);
  box-shadow: 0 0 10px 3px rgba(168,142,90,0.40);
}
#custom-cursor-ring.state-link {
  width: 44px; height: 44px;
  border-color: rgba(168,142,90,0.45);
}

/* ── State: hovering plain TEXT ── */
#custom-cursor.state-text {
  width: 3px; height: 22px;
  border-radius: 2px;
  background: rgba(200,169,106,0.75);
  box-shadow: none;
}
#custom-cursor-ring.state-text {
  opacity: 0;
}

/* ── Hide on touch devices ── */
@media (pointer: coarse) {
  #custom-cursor, #custom-cursor-ring { display: none; }
}

/* Magnetic button base */
.btn--magnetic { display: inline-flex; }


/* ═══════════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  background: rgba(200,169,106,0.10);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(200,169,106,0.22);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--clr-text);
}

.section-title__sm {
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-4xl));
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-sub {
  color: var(--clr-text-muted);
  font-size: var(--fs-lg);
  max-width: 620px;
  margin-top: var(--space-sm);
}

.highlight {
  background: linear-gradient(135deg, #C8A96A, #E8D5A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ═══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-slow);
}
.nav.scrolled {
  background: rgba(18,17,15,0.90);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.65rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav__logo {
  font-size: var(--fs-xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--clr-text);
}
.nav__logo span { color: var(--clr-accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), #D4B87A);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav__link:hover { color: var(--clr-text); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  background: linear-gradient(135deg, var(--clr-accent), #B89A50);
  color: #1A1510;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: var(--transition);
}
.nav__cta:hover {
  box-shadow: 0 4px 20px var(--clr-accent-glow);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

/* ── HERO ATMOSPHERE BACKGROUND ──────────────────────────────────
   Soft gradient + layered glow orbs — warm, premium, not technical
   ──────────────────────────────────────────────────────────────── */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Base gradient — warm dark atmosphere */
.hero__bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* top-center aurora glow — warm gold atmosphere */
    radial-gradient(ellipse 110% 70% at 50% -5%,  rgba(200,169,106,0.14) 0%, transparent 60%),
    /* left accent glow */
    radial-gradient(ellipse 55% 45% at -5%  40%,  rgba(160,120,70,0.10)  0%, transparent 55%),
    /* right warm glow */
    radial-gradient(ellipse 55% 45% at 105% 55%,  rgba(200,150,80,0.07)  0%, transparent 55%),
    /* bottom fade — creates depth */
    radial-gradient(ellipse 80% 40% at 50%  110%, rgba(120,90,40,0.08)   0%, transparent 60%),
    /* base: warm dark, not pitch black */
    linear-gradient(170deg, #13120F 0%, #14130F 50%, #12110D 100%);
  z-index: 0;
}

/* Grain/noise overlay — very subtle texture, not harsh */
.hero__bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.55;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* Floating glow orb 1 — top-left, slow drift */
.hero__orb-1,
.hero__orb-2,
.hero__orb-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 1;
}
.hero__orb-1 {
  width: 520px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(180,140,70,0.18) 0%, transparent 70%);
  animation: orbDrift1 18s ease-in-out infinite;
}
.hero__orb-2 {
  width: 480px;
  height: 380px;
  top: -60px;
  right: -100px;
  background: radial-gradient(circle, rgba(200,160,90,0.12) 0%, transparent 70%);
  animation: orbDrift2 22s ease-in-out infinite;
}
.hero__orb-3 {
  width: 360px;
  height: 300px;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(140,100,50,0.09) 0%, transparent 70%);
  animation: orbDrift3 28s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%,  100% { transform: translate(0px,   0px);   }
  33%        { transform: translate(30px, -20px);  }
  66%        { transform: translate(-15px, 25px);  }
}
@keyframes orbDrift2 {
  0%,  100% { transform: translate(0px,    0px);  }
  40%        { transform: translate(-25px, 18px);  }
  70%        { transform: translate(20px, -22px);  }
}
@keyframes orbDrift3 {
  0%,  100% { transform: translateX(-50%) translateY(0px);   }
  50%        { transform: translateX(-50%) translateY(-18px); }
}

/* Glow behind headline — warm gold, premium */
.hero__inner::before {
  content: '';
  position: absolute;
  width: 720px;
  height: 340px;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(200,169,106,0.12) 0%,
    rgba(160,130,70,0.06)  45%,
    transparent 75%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

.hero__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  animation: fadeDown 0.6s ease both;
}

.hero__headline {
  font-size: clamp(2.5rem, 7vw, var(--fs-6xl));
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 820px;
  margin-bottom: var(--space-md);
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero__subline {
  font-size: clamp(var(--fs-lg), 2vw, var(--fs-xl));
  color: var(--clr-text-muted);
  max-width: 580px;
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.trust-icon { font-size: 1rem; }
.trust-divider {
  width: 1px;
  height: 18px;
  background: var(--clr-border);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--clr-text-dim);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--clr-text-dim), transparent);
  border-radius: 2px;
  animation: scrollPulse 1.5s ease-in-out infinite;
}


/* ═══════════════════════════════════════════════
   AUDIENCE BRIDGE  (replaces proof-band)
══════════════════════════════════════════════ */
.audience-bridge {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(200,169,106,0.09) 0%, transparent 70%),
    linear-gradient(180deg, #13120F 0%, var(--clr-bg-2) 100%);
  padding: var(--space-xl) 0 var(--space-xl);
  overflow: hidden;
  text-align: center;
}

/* soft top-edge fade that blends hero's bottom into this section */
.audience-bridge__fade-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #13120F, transparent);
  pointer-events: none;
  z-index: 1;
}
.audience-bridge__fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--clr-bg-2), transparent);
  pointer-events: none;
  z-index: 1;
}

.audience-bridge__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Eyebrow label ── */
.audience-bridge__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 0.6s 0.1s ease both;
}

/* ── Main headline ── */
.audience-bridge__headline {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* ── Pills container ── */
.audience-bridge__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 860px;
  margin-bottom: var(--space-lg);
}

/* ── Individual pill ── */
.audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease,
              border-color 0.25s ease,
              color 0.25s ease;
  /* staggered fade-in via CSS custom property --i */
  opacity: 0;
  animation: pillSlideIn 0.55s calc(0.35s + var(--i, 0) * 0.07s) ease both;
}
.audience-pill:hover {
  color: var(--clr-text);
  border-color: rgba(200,169,106,0.45);
  box-shadow:
    0 0 18px rgba(200,169,106,0.15),
    0 4px 16px rgba(0,0,0,0.28);
  transform: translateY(-4px);
}

/* ── Mini-statement ── */
.audience-bridge__statement {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-lg));
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.7s 0.95s ease both;
}
.audience-bridge__statement strong {
  color: var(--clr-text);
}

/* ── Pill animation keyframes ── */
@keyframes pillSlideIn {
  from { opacity: 0; transform: translateY(14px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .audience-bridge__pills { gap: 0.55rem; }
  .audience-pill { font-size: var(--fs-sm); padding: 0.55rem 1.1rem; }
  .hide-mobile { display: none; }
}


/* ═══════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════ */
section {
  padding: var(--space-3xl) 0;
}



/* ═══════════════════════════════════════════════
   PREVIEW SECTION
══════════════════════════════════════════════ */
.preview-section {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
}

.preview__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  align-items: center;
}

/* ── Controls ── */
.preview__controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.preview__input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.preview__input-group label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
}
.preview__input-group input {
  width: 100%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  font-weight: 500;
  outline: none;
  transition: var(--transition);
}
.preview__input-group input:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 16px var(--clr-accent-glow);
}

.preview__options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.preview__option-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preview__option-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
}

.preview__btn-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Color Buttons */
.preview__color-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.preview__color-btn[data-theme="theme-warm"] { background: linear-gradient(135deg, #C8A96A, #D4B87A); }
.preview__color-btn[data-theme="theme-dark"] { background: linear-gradient(135deg, #2D2A26, #1A1815); border: 1px solid rgba(255,255,255,0.1); }
.preview__color-btn[data-theme="theme-light"] { background: linear-gradient(135deg, #FFFFFF, #F0F0F0); }
.preview__color-btn[data-theme="theme-blue"] { background: linear-gradient(135deg, #1E3A5F, #122844); }

.preview__color-btn.active {
  transform: scale(1.15);
  box-shadow: 0 0 16px rgba(255,255,255,0.15);
  border-color: var(--clr-text);
}

/* Layout Buttons */
.preview__layout-btn {
  padding: 0.5rem 1rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.preview__layout-btn:hover {
  border-color: var(--clr-accent-2);
  color: var(--clr-text);
}
.preview__layout-btn.active {
  background: var(--clr-accent);
  color: #1A1510;
  border-color: var(--clr-accent);
  box-shadow: 0 4px 16px var(--clr-accent-glow);
}


/* ── Mockup Window ── */
.preview__mockup-wrapper {
  position: relative;
  z-index: 2;
}

.preview__mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--clr-accent-glow) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

.mockup-window {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  transition: all 0.4s ease;
  
  /* Theme Base Vars (Default: Warm, mostly overridden by JS classes) */
  --m-bg: #14130F;
  --m-text: #F5F2EA;
  --m-text-muted: #A8A090;
  --m-accent: #C8A96A;
  --m-surface: #1E1C18;
}

/* Theme: Warm */
.mockup-window.theme-warm {
  --m-bg: #14130F;
  --m-text: #F5F2EA;
  --m-text-muted: #A8A090;
  --m-accent: #C8A96A;
  --m-surface: #1E1C18;
  border-color: rgba(200,169,106,0.15);
}
/* Theme: Dark */
.mockup-window.theme-dark {
  --m-bg: #0F1115;
  --m-text: #FAFAFA;
  --m-text-muted: #8A94A6;
  --m-accent: #E2E8F0;
  --m-surface: #16191F;
  border-color: rgba(255,255,255,0.08);
}
/* Theme: Light */
.mockup-window.theme-light {
  --m-bg: #FFFFFF;
  --m-text: #1A1A1A;
  --m-text-muted: #666666;
  --m-accent: #000000;
  --m-surface: #F5F5F5;
  border-color: rgba(0,0,0,0.1);
}
/* Theme: Blue */
.mockup-window.theme-blue {
  --m-bg: #0B1626;
  --m-text: #FFFFFF;
  --m-text-muted: #849BC0;
  --m-accent: #3B82F6;
  --m-surface: #112038;
  border-color: rgba(59,130,246,0.15);
}

.mockup__header {
  height: 40px;
  background: var(--clr-surface-2);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid var(--clr-border);
  position: relative;
}

.mockup__traffic {
  display: flex;
  gap: 6px;
}
.mockup__traffic span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4A463F;
}
.mockup__traffic span:nth-child(1) { background: #FF5F56; }
.mockup__traffic span:nth-child(2) { background: #FFBD2E; }
.mockup__traffic span:nth-child(3) { background: #27C93F; }

.mockup__url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.2);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 10px;
  color: var(--clr-text-dim);
  font-family: monospace;
}

/* Mockup Content Styling */
.mockup__body {
  background: var(--m-bg);
  color: var(--m-text);
  padding: 2rem;
  transition: all 0.4s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.mockup__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  transition: all 0.4s ease;
}
.mockup__logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.mockup__links {
  display: flex;
  gap: 0.75rem;
}
.mockup__links span {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: var(--m-surface);
}

.mockup__hero {
  flex-grow: 1;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mockup__text-content {
  flex: 1;
  transition: all 0.4s ease;
}
.mockup__h1 {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
/* Let the user text have the accent color */
.highlight-mockup {
  color: var(--m-accent);
}

.mockup__p {
  color: var(--m-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 90%;
}
.mockup__btn {
  display: inline-block;
  background: var(--m-accent);
  color: var(--m-bg);
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.4s ease;
}
.mockup__image-placeholder {
  flex: 1;
  height: 180px;
  background: var(--m-surface);
  border-radius: 8px;
  border: 1px dashed rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.mockup__content-blocks {
  display: flex;
  gap: 1rem;
  transition: all 0.4s ease;
}
.mockup__block {
  flex: 1;
  background: var(--m-surface);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mockup__block-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--m-accent);
  opacity: 0.5;
}
.mockup__block-lines span {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--m-text-muted);
  opacity: 0.3;
  margin-bottom: 6px;
}
.mockup__block-lines span:nth-child(2) { width: 60%; }

/* ── Layout Variations ── */

/* 1. Center */
.layout-center .mockup__hero {
  flex-direction: column;
  text-align: center;
}
.layout-center .mockup__h1 { font-size: 2.5rem; }
.layout-center .mockup__p { margin-left: auto; margin-right: auto; }
.layout-center .mockup__image-placeholder { display: none; }

/* 2. Split (Default above is close to this) */
.layout-split .mockup__hero {
  flex-direction: row;
  text-align: left;
}

/* 3. Minimal */
.layout-minimal .mockup__nav { justify-content: center; }
.layout-minimal .mockup__links { display: none; }
.layout-minimal .mockup__hero { flex-direction: column; text-align: center; margin-bottom: 1rem; }
.layout-minimal .mockup__h1 { font-size: 3rem; }
.layout-minimal .mockup__p { display: none; }
.layout-minimal .mockup__image-placeholder { display: none; }
.layout-minimal .mockup__btn { padding: 0.8rem 2rem; border-radius: 4px; }
.layout-minimal .mockup__content-blocks { display: none; }

/* 4. Classic */
.layout-classic .mockup__hero {
  flex-direction: column-reverse; /* Image top, text bottom */
  text-align: center;
}
.layout-classic .mockup__image-placeholder { width: 100%; height: 120px; }
.layout-classic .mockup__content-blocks { flex-direction: column; gap: 0.5rem; }
.layout-classic .mockup__block { flex-direction: row; align-items: center; padding: 0.75rem; }
.layout-classic .mockup__block-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; margin: 0; }
.layout-classic .mockup__block-lines span { margin: 0; height: 6px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .preview__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .layout-split .mockup__hero { flex-direction: column; text-align: center; }
  .mockup__h1 { font-size: 1.75rem; }
  .layout-center .mockup__h1 { font-size: 2rem; }
  .layout-minimal .mockup__h1 { font-size: 2.25rem; }
}


/* ═══════════════════════════════════════════════
   PROBLEM SECTION

   — Eigener Fokusbereich mit sanfter Abhebung
   — Grundton leicht heller als clr-bg-2
   — Radialer Glow im Zentrum → lenkt Blick auf Cards
   — Weiches Top-Fade für nahtlosen Übergang
══════════════════════════════════════════════ */
.problem {
  position: relative;
  background:
    /* Zentrum-Glow hinter den Cards */
    radial-gradient(ellipse 70% 55% at 50% 58%, rgba(160,120,60,0.10) 0%, transparent 65%),
    /* Linker subtiler Warmton */
    radial-gradient(ellipse 45% 40% at 10% 70%, rgba(120,90,40,0.06)  0%, transparent 60%),
    /* Rechter Akzent */
    radial-gradient(ellipse 45% 40% at 90% 30%, rgba(180,130,60,0.06) 0%, transparent 60%),
    /* Basis-Verlauf */
    linear-gradient(180deg,
      var(--clr-bg-2)  0%,
      #1E1C18         18%,
      #201E1A         50%,
      #1E1C18         82%,
      var(--clr-bg-2) 100%);
  overflow: hidden;
}

/* Weiches Top-Fade — verschmilzt audience-bridge nahtlos */
.problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to bottom, var(--clr-bg-2), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Weiches Bottom-Fade — sanfter Ausklang zur Leistungen-Section */
.problem::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to top, var(--clr-bg), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Container muss über Pseudo-Elementen liegen */
.problem .container { position: relative; z-index: 1; }

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  /* Subtiler Glow-Halo unter den Cards */
  filter: drop-shadow(0 0 48px rgba(160,120,60,0.05));
}
.problem__card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  padding-top: calc(var(--space-lg) + 0.25rem);
  transition: var(--transition);
  /* Glasartige Tiefe */
  box-shadow: 0 4px 32px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.03);
}
.problem__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.problem__card--good { border-color: rgba(34,197,94,0.2); }
.problem__card--good:hover { box-shadow: 0 8px 32px rgba(34,197,94,0.1); }
.problem__card--bad { border-color: rgba(255,92,92,0.2); }

.card-icon { font-size: 2.5rem; margin-bottom: var(--space-sm); }
.problem__card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}
.problem__list li {
  position: relative;
  padding-left: 1.25rem;
  padding-bottom: 0.6rem;
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
}
.problem__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
}
.problem__card--bad .problem__list li::before { color: var(--clr-red-soft); }
.problem__card--good .problem__list li::before { color: var(--clr-green); }


/* ═══════════════════════════════════════════════
   LEISTUNGEN
   — Leicht eigenständige Atmosphäre gegenüber problem-section
   — Featured Card visuell betont
   — Premium Hover + staggered Scroll-Reveal
══════════════════════════════════════════════ */
.leistungen {
  position: relative;
  background:
    /* Zentraler Glow hinter den Cards */
    radial-gradient(ellipse 75% 60% at 50% 55%, rgba(200,169,106,0.08) 0%, transparent 65%),
    /* Linke weiche Betonung */
    radial-gradient(ellipse 50% 40% at 5% 70%,  rgba(160,120,60,0.05) 0%, transparent 60%),
    /* Rechte weiche Betonung */
    radial-gradient(ellipse 50% 40% at 95% 30%, rgba(180,140,70,0.05) 0%, transparent 60%),
    /* Basis */
    linear-gradient(180deg, #13120F 0%, #15130F 40%, #13120E 100%);
  overflow: hidden;
}

/* Weiches Top-Fade — nahtloser Übergang aus Problem-Section */
.leistungen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--clr-bg), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Container über Pseudo-Elementen */
.leistungen .container { position: relative; z-index: 1; }

.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);     /* etwas mehr Abstand als vorher */
  margin-top: var(--space-xl);
  align-items: start;
}

/* ── Basis-Card ── */
.leistung-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: calc(var(--space-lg) + 0.5rem);
  transition:
    transform    0.30s cubic-bezier(0.25,0.46,0.45,0.94),
    box-shadow   0.30s cubic-bezier(0.25,0.46,0.45,0.94),
    border-color 0.30s ease;
  position: relative;
  overflow: hidden;
  /* Subtile innere Tiefe */
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.03);
}

/* Accent-Top-Linie */
.leistung-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), #D4B87A);
  opacity: 0;
  transition: opacity 0.30s ease;
}

/* ── Hover-State ── */
.leistung-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,169,106,0.35);
  box-shadow:
    0 20px 56px rgba(0,0,0,0.36),
    0 0 40px rgba(200,169,106,0.14),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.leistung-card:hover::before { opacity: 1; }

/* ── FEATURED CARD: "Deine eigene Website" betont ── */
.leistung-card--featured {
  border-color: rgba(200,169,106,0.25);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,169,106,0.07) 0%, transparent 70%),
    var(--clr-surface);
  box-shadow:
    0 6px 32px rgba(0,0,0,0.32),
    0 0 0 1px rgba(200,169,106,0.15),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.leistung-card--featured::before { opacity: 0.5; }
.leistung-card--featured:hover {
  transform: translateY(-8px);
  border-color: rgba(200,169,106,0.50);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.40),
    0 0 52px rgba(200,169,106,0.20),
    0 0 0 1px rgba(200,169,106,0.28),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Kleines "Empfohlen"-Badge auf der Featured Card */
.leistung-card--featured .leistung-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1510;
  background: linear-gradient(135deg, var(--clr-accent), #D4B87A);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  box-shadow: 0 2px 12px rgba(200,169,106,0.28);
}

/* ── Icon: subtiler Glow + Hover-Reaktion ── */
.leistung-card__icon {
  font-size: 2.4rem;
  margin-bottom: var(--space-sm);
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(200,169,106,0.25));
  transition: filter 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.leistung-card:hover .leistung-card__icon {
  filter: drop-shadow(0 0 14px rgba(200,169,106,0.45));
  transform: scale(1.12);
}

.leistung-card__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.leistung-card--featured .leistung-card__title {
  font-size: var(--fs-2xl);
}

.leistung-card__text {
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

/* ── Tag / Label: besser lesbar, mehr Präsenz ── */
.leistung-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-accent-2);
  background: rgba(200,169,106,0.10);
  border: 1px solid rgba(200,169,106,0.22);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.leistung-card--featured .leistung-card__tag {
  background: rgba(200,169,106,0.15);
  border-color: rgba(200,169,106,0.35);
  color: #F5F2EA;
}

/* ── Staggered Scroll-Reveal für Leistungen-Cards ── */
.leistung-card.card-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity     0.55s ease,
    transform   0.55s cubic-bezier(0.25,0.46,0.45,0.94),
    box-shadow  0.30s cubic-bezier(0.25,0.46,0.45,0.94),
    border-color 0.30s ease;
}
.leistung-card.card-reveal.card-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════
   PORTFOLIO
   — Subtil anderen Hintergrund als umliegende Sections
   — Ergebnis-Badges prominent
   — Verbesserte Hover-Experience
   — Scroll-Reveal mit Stagger
══════════════════════════════════════════════ */
.portfolio {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,169,106,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 0% 70%,  rgba(140,100,50,0.05)  0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(180,130,60,0.05)  0%, transparent 55%),
    linear-gradient(180deg, #161410 0%, #181510 50%, #161410 100%);
  overflow: hidden;
}

/* Floating ambient glow hinter den Cards */
.portfolio__glow {
  position: absolute;
  width: 700px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(200,169,106,0.10) 0%,
    rgba(160,120,60,0.04)  45%,
    transparent            75%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
  animation: portfolioGlowPulse 8s ease-in-out infinite;
}
@keyframes portfolioGlowPulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1);    }
  50%       { opacity: 1.0; transform: translate(-50%, -50%) scale(1.06); }
}

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

/* ── Section sub-text ── */
.portfolio .section-sub { margin-bottom: 0; }

/* ── Grid ── */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* ── Base Card ── */
.portfolio-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform    0.35s cubic-bezier(0.25,0.46,0.45,0.94),
    box-shadow   0.35s cubic-bezier(0.25,0.46,0.45,0.94),
    border-color 0.35s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
}

/* Accent top border line */
.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), #D4B87A);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

/* ── Hover ── */
.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.36),
    0 0 48px rgba(200,169,106,0.14),
    inset 0 1px 0 rgba(255,255,255,0.05);
  border-color: rgba(200,169,106,0.30);
}
.portfolio-card:hover::before { opacity: 1; }

/* ── Image area ── */
.portfolio-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
/* Image zoom on card hover (not just image hover) */
.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.08);
}

/* ── Overlay CTA ── */
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,10,8,0.80);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }

/* CTA button in overlay — slightly larger */
.portfolio-card__cta {
  font-size: var(--fs-sm);
  padding: 0.65rem 1.5rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(200,169,106,0.40);
  transform: translateY(6px);
  transition:
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    opacity   0.35s ease,
    box-shadow 0.25s ease;
  opacity: 0;
}
.portfolio-card:hover .portfolio-card__cta {
  transform: translateY(0);
  opacity: 1;
}
.portfolio-card__cta:hover {
  box-shadow: 0 6px 28px rgba(200,169,106,0.55) !important;
}

/* ── Info panel ── */
.portfolio-card__info { padding: var(--space-md); }

/* Meta row: category + city */
.portfolio-card__meta {
  margin-bottom: 0.35rem;
}
.portfolio-card__category {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Card title ── */
.portfolio-card__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 0.15rem;
}

/* ═══ RESULT BADGE — der Kern der Verbesserung ═══ */
.portfolio-card__result-badge {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  background: rgba(52,212,116,0.10);
  border: 1px solid rgba(52,212,116,0.25);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}
/* Subtle left accent stripe */
.portfolio-card__result-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--clr-green);
  border-radius: 2px 0 0 2px;
}

/* The big number */
.result-number {
  font-size: var(--fs-2xl);
  font-weight: 900;
  color: var(--clr-green);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Label next to the number */
.result-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
  line-height: 1.3;
}

/* ── Result description text ── */
.portfolio-card__result {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

/* ── Inline CTA link (always visible below text) ── */
.portfolio-card__inline-cta {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-accent);
  transition: color 0.22s ease, gap 0.22s ease;
  gap: 0.3rem;
}
.portfolio-card__inline-cta:hover {
  color: var(--clr-accent-2);
  gap: 0.55rem;
}

/* ── Bottom CTA strip ── */
.portfolio__bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}
.portfolio__bottom-note {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  text-align: center;
}

/* ── Scroll Reveal: staggered entry for portfolio cards ── */
.portfolio-card.card-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity      0.55s ease,
    transform    0.55s cubic-bezier(0.25,0.46,0.45,0.94),
    box-shadow   0.35s cubic-bezier(0.25,0.46,0.45,0.94),
    border-color 0.35s ease;
}
.portfolio-card.card-reveal.card-visible {
  opacity: 1;
  transform: translateY(0);
}




/* ═══════════════════════════════════════════════
   PROZESS
══════════════════════════════════════════════ */
.prozess { background: var(--clr-bg); }
.prozess__steps {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.prozess__step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  position: relative;
  padding-bottom: var(--space-md);
}
.prozess__step-number {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--clr-accent), #B89A50);
  color: #1A1510;
  font-size: var(--fs-xl);
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--clr-accent-glow);
  z-index: 1;
}
.prozess__step-content {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  flex: 1;
  transition: var(--transition);
}
.prozess__step-content:hover {
  border-color: rgba(200,169,106,0.25);
  transform: translateX(4px);
}
.prozess__step-content h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.prozess__step-content p {
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
}
.prozess__duration {
  margin-top: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--clr-accent);
  font-weight: 500;
}
.prozess__connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--clr-accent), rgba(200,169,106,0.08));
  margin-left: 26px;
  border-radius: 2px;
}


/* ═══════════════════════════════════════════════
   ÜBER MICH
══════════════════════════════════════════════ */
.ueber-mich { background: var(--clr-bg-2); }
.ueber-mich__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.ueber-mich__image-wrap { position: relative; }
.ueber-mich__image-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), #D4B87A);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px var(--clr-accent-glow);
  position: relative;
}
.avatar-circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(var(--clr-accent), #D4B87A, var(--clr-accent));
  z-index: -1;
  animation: spin 6s linear infinite;
  opacity: 0.35;
}
.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.ueber-mich__image-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.ueber-mich__content .section-label { display: block; margin-bottom: var(--space-sm); }
.ueber-mich__content p {
  color: var(--clr-text-muted);
  margin-top: var(--space-sm);
  font-size: var(--fs-lg);
  line-height: 1.7;
}
.ueber-mich__facts {
  display: flex;
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.fact strong {
  font-size: var(--fs-2xl);
  font-weight: 900;
  color: var(--clr-accent);
  letter-spacing: -0.04em;
}
.fact span {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials { background: var(--clr-bg); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: calc(var(--space-lg) + 0.25rem);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-size: 6rem;
  color: rgba(200,169,106,0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.26);
  border-color: rgba(200,169,106,0.18);
}
.testimonial-card__stars { font-size: var(--fs-base); margin-bottom: var(--space-sm); }
.testimonial-card__quote {
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), #D4B87A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 800;
  color: #1A1510;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
}
.testimonial-card__author span {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}


/* ═══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq { background: var(--clr-bg-2); }
.faq__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.faq__header { position: sticky; top: 100px; }
.faq__header .section-title__sm { margin-top: var(--space-sm); }
.faq__list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(200,169,106,0.22); box-shadow: 0 4px 20px rgba(200,169,106,0.06); }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-text);
  text-align: left;
  gap: var(--space-sm);
  transition: var(--transition);
}
.faq-item__question:hover { color: var(--clr-accent); }
.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(200,169,106,0.08);
  border: 1px solid rgba(200,169,106,0.18);
  color: var(--clr-accent);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-style: normal;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-item__answer { max-height: 300px; }
.faq-item__answer p {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════════ */
.kontakt {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}
.kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 110%, rgba(200,169,106,0.08) 0%, transparent 68%);
  pointer-events: none;
}
.kontakt .section-title, .kontakt .section-sub, .kontakt .section-label {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  position: relative;
}
.kontakt__form-wrap { position: relative; }
.kontakt__form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
}
.form-group input, .form-group textarea {
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--clr-text);
  font-size: var(--fs-base);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px var(--clr-accent-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--clr-text-dim);
}
.form-privacy {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  text-align: center;
}
.form-success {
  background: var(--clr-surface);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}
.success-icon { font-size: 3rem; margin-bottom: var(--space-sm); }
.form-success h3 { font-size: var(--fs-2xl); font-weight: 700; margin-bottom: var(--space-sm); }
.form-success p { color: var(--clr-text-muted); }

.kontakt__sidebar { display: flex; flex-direction: column; gap: var(--space-md); }
.kontakt__option {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  transition: var(--transition);
}
.kontakt__option:hover {
  border-color: rgba(200,169,106,0.25);
  transform: translateX(4px);
}
.kontakt__option-icon { font-size: 1.75rem; flex-shrink: 0; }
.kontakt__option h4 { font-weight: 700; margin-bottom: 0.25rem; }
.kontakt__option p { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-bottom: 0.4rem; }
.kontakt__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-accent);
  transition: var(--transition);
}
.kontakt__link:hover { color: var(--clr-accent-2); }
.kontakt__promise {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.kontakt__promise h4 { font-weight: 700; margin-bottom: var(--space-sm); }
.kontakt__promise ul { display: flex; flex-direction: column; gap: 0.5rem; }
.kontakt__promise li {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}


/* ═══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-xl) 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-xl);
  align-items: start;
  padding-bottom: var(--space-xl);
}
.footer__brand p {
  margin-top: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.footer__links, .footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a, .footer__legal a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: var(--transition);
}
.footer__links a:hover, .footer__legal a:hover { color: var(--clr-text); }
.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding: var(--space-sm) 0;
  text-align: center;
}
.footer__bottom p {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}


/* ═══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.15); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════
   ÜBER MICH — CTA ROW
══════════════════════════════════════════════ */
.ueber-mich__cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: var(--space-lg);
}
.ueber-mich__cta-note {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  font-style: italic;
}


/* ═══════════════════════════════════════════════
   HEADLINE ROTATING TEXT (Hero)
══════════════════════════════════════════════ */
.headline-rotating {
  display: inline-block;
  min-width: 2px;
  position: relative;
}
.headline-rotating::after {
  content: '|';
  display: inline-block;
  color: var(--clr-accent);
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Improved card hover glow for leistungen */
.leistung-card:hover {
  box-shadow: 0 0 0 1px rgba(200,169,106,0.18), var(--shadow-accent);
}

/* Smooth button press */
.btn--primary:active { transform: scale(0.96) translateY(0); }
.btn--ghost:active   { transform: scale(0.96) translateY(0); }


/* ═══════════════════════════════════════════════
   MOBILE (max-width: 900px)
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 4rem;
    --space-xl: 3rem;
  }

  .nav__links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(18,17,15,0.97); backdrop-filter: blur(24px) saturate(1.3); justify-content: center; align-items: center; gap: 2rem; z-index: 900; }
  .nav__links.open { display: flex; }
  .nav__link { font-size: var(--fs-xl); }
  .nav__cta { font-size: var(--fs-xl); padding: 0.8rem 2rem; }
  .nav__burger { display: flex; z-index: 910; }

  .hero { padding: 7rem 0 4rem; }
  .hero__cta-group { flex-direction: column; align-items: center; }
  .hero__trust { flex-direction: column; gap: 0.75rem; }
  .trust-divider { display: none; }

  .proof-band__inner { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }

  .problem__grid { grid-template-columns: 1fr; }
  .leistungen__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__bottom-cta { padding-top: var(--space-md); }

  .testimonials__grid { grid-template-columns: 1fr; }

  .ueber-mich__inner { grid-template-columns: 1fr; text-align: center; }
  .ueber-mich__image-wrap { order: -1; display: flex; justify-content: center; }
  .avatar-circle { width: 220px; height: 220px; }
  .avatar-initials { font-size: 3.5rem; }
  .ueber-mich__facts { justify-content: center; }
  .ueber-mich__cta-row { align-items: center; text-align: center; }

  .faq__inner { grid-template-columns: 1fr; }
  .faq__header { position: static; }

  .kontakt__inner { grid-template-columns: 1fr; }
  .kontakt__form { padding: var(--space-lg); }

  .footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.2rem; letter-spacing: -0.03em; }
  .section-title { font-size: var(--fs-2xl); }
}


/* ═══════════════════════════════════════════════
   PREISE
   — Zentrierter Block, warm & vertrauensvoll
   — Haupt-Preisblock + 2 Erklär-Cards + Hint
   — Kein Tabellen-Feeling, kein SaaS-Styling
══════════════════════════════════════════════ */
.preise {
  position: relative;
  background:
    /* Zentraler Gold-Glow → lenkt Blick auf Preisblock */
    radial-gradient(ellipse 75% 55% at 50% 42%, rgba(200,169,106,0.09) 0%, transparent 65%),
    /* linker wärmer Ton */
    radial-gradient(ellipse 45% 40% at 5%  65%, rgba(160,120,60,0.06)  0%, transparent 60%),
    /* rechter Akzent */
    radial-gradient(ellipse 45% 40% at 95% 35%, rgba(180,140,70,0.05)  0%, transparent 60%),
    /* Basis */
    linear-gradient(180deg, var(--clr-bg) 0%, #16140F 50%, var(--clr-bg) 100%);
  overflow: hidden;
}

/* Weiche Top-Fade aus der vorherigen Section */
.preise::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--clr-bg), transparent);
  pointer-events: none;
  z-index: 0;
}

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

/* ── Haupt-Preisblock ── */
.preise__main {
  margin-top: var(--space-xl);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(200,169,106,0.10) 0%, transparent 70%),
    var(--clr-surface);
  border: 1px solid rgba(200,169,106,0.22);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow:
    0 8px 48px rgba(0,0,0,0.35),
    0 0 0 1px rgba(200,169,106,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

/* Dezente Accent-Linie oben */
.preise__main::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), #D4B87A, transparent);
  border-radius: 2px;
}

/* ── Preis-Anzeige ── */
.preise__price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.preise__from {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--clr-text-muted);
  letter-spacing: 0.02em;
}

.preise__amount {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #C8A96A, #E8D5A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(200,169,106,0.30));
}

.preise__range {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--clr-text-muted);
  padding-top: 0.4rem;
}

.preise__subtitle {
  color: var(--clr-text-muted);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-lg);
}

/* ── Vertrauen-Zeile ── */
.preise__trust-row {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.preise__trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
}

.preise__trust-item span {
  color: var(--clr-accent);
  font-size: 1rem;
  font-weight: 700;
}

/* ── Erklär-Cards ── */
.preise__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.preise__card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition:
    transform    0.30s cubic-bezier(0.25,0.46,0.45,0.94),
    box-shadow   0.30s ease,
    border-color 0.30s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}

/* Accent-Linie beim Hovern */
.preise__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), #D4B87A);
  opacity: 0;
  transition: opacity 0.30s ease;
}

.preise__card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,106,0.30);
  box-shadow:
    0 20px 52px rgba(0,0,0,0.36),
    0 0 36px rgba(200,169,106,0.10),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.preise__card:hover::after { opacity: 1; }

.preise__card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(200,169,106,0.20));
  transition: filter 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.preise__card:hover .preise__card-icon {
  filter: drop-shadow(0 0 14px rgba(200,169,106,0.42));
  transform: scale(1.10);
}

.preise__card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

/* ── Lists ── */
.preise__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.preise__list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  line-height: 1.5;
}

.preise__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
}

.preise__list--green li::before {
  content: '✓';
  color: var(--clr-green);
  font-size: 0.8rem;
  top: 0.1em;
}

/* ── Hinweis-Box ── */
.preise__hint {
  margin-top: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: rgba(200,169,106,0.07);
  border: 1px solid rgba(200,169,106,0.20);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  line-height: 1.6;
}

.preise__hint strong {
  color: var(--clr-text);
  display: block;
  margin-bottom: 0.25rem;
}

.preise__hint-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  filter: drop-shadow(0 0 6px rgba(200,169,106,0.25));
}

/* ── CTA-Bereich ── */
.preise__cta-wrap {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.preise__cta-note {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .preise__cards { grid-template-columns: 1fr; }
  .preise__trust-row { gap: var(--space-md); }
  .preise__main { padding: var(--space-lg) var(--space-md); }
  .preise__hint { flex-direction: column; gap: var(--space-xs); }
}

@media (max-width: 480px) {
  .preise__price-display { gap: 0.35rem; }
  .preise__range { font-size: var(--fs-base); }
  .preise__trust-row { flex-direction: column; align-items: center; }
}
