/* =========================================================
   deisterpixel – style.css
   Forest Green Aesthetic
   Fonts: Fraunces (display) + DM Sans (body)
   Palette: #2B3E30 (bg) | #52CC8E (purple accent) | #A8D9AF (rose) | #1E6868 (card)
   ========================================================= */

/* ── 0. LOCAL FONTS ── */

/* DM Sans (variable font, weights 300–600) */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/dmsans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/dmsans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Fraunces – normal (variable font, weights 300–700) */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/fraunces-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/fraunces-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Fraunces – italic (variable font, weights 300–400) */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('fonts/fraunces-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('fonts/fraunces-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ── 1. CSS CUSTOM PROPERTIES ── */
:root {
  /* Colors */
  --bg:           #2B3E30;
  --bg-card:      #334839;
  --bg-elevated:  #1E6868;
  --surface:      #267A78;
  --border:       rgba(82,204,142,0.14);
  --border-hover: rgba(82,204,142,0.45);

  --amber:        #52CC8E;
  --amber-dark:   #3DB87A;
  --amber-glow:   rgba(82,204,142,0.18);
  --amber-faint:  rgba(82,204,142,0.07);

  --silver:       #A8D9AF;
  --silver-dim:   #72B882;

  --text-primary:   #F2F8F3;
  --text-secondary: #72B882;
  --text-muted:     #5EA86B;

  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  8rem;

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --transition: 0.3s var(--ease-out);

  /* Shadows */
  --shadow-card:    0 1px 3px rgba(0,0,0,0.3), 0 8px 32px rgba(0,0,0,0.22);
  --shadow-amber:   0 0 40px rgba(82,204,142,0.25), 0 0 80px rgba(82,204,142,0.1);
  --shadow-featured: 0 0 0 1px rgba(82,204,142,0.5), 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(82,204,142,0.2);

  /* Header */
  --header-h: 88px;
}

/* ── 1b. LIGHT SECTION THEME ── */
.section--light {
  background-color: #ECF3EE;
  --bg:             #ECF3EE;
  --bg-card:        #FFFFFF;
  --bg-elevated:    #D4E8D8;
  --surface:        #BDD5C3;
  --border:         rgba(43,62,48,0.10);
  --border-hover:   rgba(82,204,142,0.40);
  --shadow-card:    0 1px 3px rgba(43,62,48,0.06), 0 8px 32px rgba(43,62,48,0.08);
  --shadow-amber:   0 0 40px rgba(82,204,142,0.15), 0 0 80px rgba(82,204,142,0.06);
  --text-primary:   #2B3E30;
  --text-secondary: #5EA86B;
  --text-muted:     #5EA86B;
  --amber-faint:    rgba(82,204,142,0.08);
  --amber-glow:     rgba(82,204,142,0.12);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles this */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Selection */
::selection {
  background: var(--amber);
  color: var(--bg);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber-dark); }


/* ── 3. LAYOUT / CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section {
  padding: var(--space-3xl) 0;
}


/* ── 4. TYPOGRAPHY SYSTEM ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.section-label--light {
  color: rgba(82,204,142,0.8);
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-headline em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}

.section-desc {
  max-width: 560px;
  color: var(--text-secondary);
  margin-top: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}


/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--amber);
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(82,204,142,0.3);
}

.btn-primary:hover {
  background: #3DB87A;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(82,204,142,0.45);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

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

.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 1px solid rgba(82,204,142,0.4);
}

.btn-outline:hover {
  background: var(--amber-faint);
  border-color: var(--amber);
  transform: translateY(-2px);
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--transition);
}

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

.inline-link {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: #72B882;
}


/* ── 6. SITE HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out),
              backdrop-filter 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              height 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(25, 35, 28, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(82,204,142,0.12);
  height: 64px;
}

/* ── Header layout: logo left · nav right ── */
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: filter var(--transition);
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: none;
  display: block;
  transition: height 0.4s var(--ease-out), filter var(--transition);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 12px rgba(82,204,142,0.5));
}

.site-header.scrolled .logo-img {
  height: 34px;
}

.logo-img--footer {
  height: 72px;
  max-width: none;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,248,243,0.45);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.25s var(--ease-out);
}

.nav-link:hover { color: rgba(242,248,243,0.9); }
.nav-link:hover::after { width: 100%; }

.nav-link.active {
  color: var(--text-primary);
}
.nav-link.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(25,35,28,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-mark {
  position: absolute;
  width: 260px;
  height: auto;
  opacity: 0.05;
  pointer-events: none;
  right: -10px;
  bottom: 60px;
  filter: invert(1);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 300;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.mobile-nav-link:hover { color: var(--text-primary); }

.mobile-nav-cta {
  color: var(--amber);
  font-weight: 400;
  margin-top: var(--space-sm);
}


/* ── 7. HERO SECTION ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    #0C1610 0%,
    #0F1C13 30%,
    #132218 60%,
    #182E20 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 65% at 25% 18%, rgba(82,204,142,0.09) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

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

/* Background Grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow--amber {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(82,204,142,0.18) 0%, transparent 70%);
  top: -180px;
  left: 5%;
  animation: glow-pulse 6s ease-in-out infinite;
}

.hero-glow--blue {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(30,104,104,0.24) 0%, transparent 70%);
  bottom: 22vh;
  right: -80px;
  animation: glow-pulse 8s ease-in-out infinite 2s;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ── Hero pixel canvas ── */
.hero-pixels-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  justify-self: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--amber-faint);
  border: 1px solid rgba(82,204,142,0.25);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Hero Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.hero-headline-main {
  display: block;
  color: var(--white);
  font-weight: 400;
}

.hero-headline em {
  font-style: normal;
  font-weight: 400;
  color: var(--amber);
  display: block;
}

/* Sub */
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  justify-content: center;
}

/* Services strip – below CTAs */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hero-services .dot {
  color: var(--amber);
  opacity: 0.4;
}

/* ── Hero Visual / Mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 2.5rem 2.5rem 0.5rem;
}

/* ── Browser mockup ── */
.mockup-browser {
  width: 100%;
  max-width: 400px;
  background: rgba(43, 62, 48, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(82,204,142,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(82,204,142,0.08),
    0 8px 40px rgba(0,0,0,0.3),
    0 0 80px rgba(82,204,142,0.08);
  animation: float-idle 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float-idle {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(27,73,101,0.15);
  border-bottom: 1px solid rgba(82,204,142,0.10);
}

.dot-red   { width: 9px; height: 9px; border-radius: 50%; background: #FF5F57; flex-shrink: 0; }
.dot-yellow{ width: 9px; height: 9px; border-radius: 50%; background: #FFBD2E; flex-shrink: 0; }
.dot-green { width: 9px; height: 9px; border-radius: 50%; background: #28CA41; flex-shrink: 0; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  margin: 0 0.25rem;
}

.mockup-screen {
  padding: 0.85rem 0.85rem 1rem;
}

/* Wire nav bar */
.wire-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.6rem;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.wire-logo {
  width: 56px;
  height: 10px;
  background: var(--amber);
  opacity: 0.45;
  border-radius: 3px;
}

.wire-nav-items {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wire-nav-item {
  width: 28px;
  height: 7px;
  background: var(--surface);
  border-radius: 3px;
}

.wire-nav-item--cta {
  width: 36px;
  background: rgba(82,204,142,0.35);
  border-radius: 4px;
}

/* Wire hero block */
.wire-hero {
  background: linear-gradient(135deg, rgba(82,204,142,0.08), rgba(27,73,101,0.3));
  border-radius: 8px;
  border: 1px solid rgba(82,204,142,0.12);
  padding: 1rem 0.75rem;
  margin-bottom: 0.75rem;
}

.wire-h1 {
  height: 13px;
  background: var(--text-primary);
  opacity: 0.22;
  border-radius: 4px;
  margin-bottom: 7px;
  width: 78%;
}

.wire-h1--short { width: 52%; margin-bottom: 10px; }

.wire-sub {
  height: 7px;
  background: var(--text-secondary);
  opacity: 0.18;
  border-radius: 3px;
  width: 90%;
  margin-bottom: 12px;
}

.wire-btn {
  width: 72px;
  height: 20px;
  background: rgba(82,204,142,0.5);
  border-radius: 4px;
}

/* Wire cards row */
.wire-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.wire-card {
  height: 48px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.wire-card--accent {
  background: rgba(82,204,142,0.10);
  border-color: rgba(82,204,142,0.28);
}

/* ── Floating service chips ── */
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: rgba(43,62,48,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(82,204,142,0.28);
  border-radius: var(--radius-md);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(82,204,142,0.08);
  z-index: 3;
}

.hero-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(82,204,142,0.18);
  color: var(--amber);
  flex-shrink: 0;
}

.hero-chip--photo {
  top: 18%;
  right: -10px;
  animation: float-idle 5s ease-in-out infinite 1s;
}

.hero-chip--logo {
  bottom: 22%;
  left: -14px;
  animation: float-idle 5s ease-in-out infinite 2.5s;
}

/* ── Individual floating city pins ── */

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40% { opacity: 1; transform: scaleY(1); }
  80% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; }
}


/* ── 8. INTRO SECTION ── */
.intro {
  padding: var(--space-3xl) 0 0;
  position: relative;
}

/* Editorial headline */
.intro-head {
  margin-bottom: var(--space-xl);
  max-width: 820px;
}

.intro-main-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-top: 0.75rem;
}

.intro-main-headline em {
  font-style: italic;
  color: var(--amber);
}

/* Copy + pillars grid */
.intro-body-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-xl);
}

.intro-lead {
  font-size: 1.13rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.intro-body {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.97rem;
}

/* Pillars aside */
.intro-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.intro-pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.intro-pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--amber-faint);
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 1px;
}

.intro-pillar-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.intro-pillar-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* Founder strip */
.intro-founder {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0 2rem;
  align-items: center;
  padding: 2rem 0 var(--space-2xl);
}

.founder-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-hover);
  flex-shrink: 0;
}

.founder-byline {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.founder-role {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.founder-quote-wrap {
  padding-left: 0;
}

.founder-quote {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  max-width: 580px;
}

.founder-background {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.founder-background-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.founder-background-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.founder-background-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.founder-background-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.founder-background-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--amber-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  margin-bottom: var(--space-2xl);
}

.founder-background-cta svg {
  color: var(--amber);
  flex-shrink: 0;
}


/* ── 9. LEISTUNGEN ── */
.leistungen {
  background: var(--bg-card);
  position: relative;
}

.leistungen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.leistungen::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.leistung-card {
  background: var(--bg-card);
  padding: var(--space-lg) var(--space-md);
  transition: background var(--transition);
  position: relative;
}

.leistung-card:hover {
  background: var(--bg-elevated);
}

.leistung-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
}

.leistung-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--amber-faint);
  border: 1px solid rgba(82,204,142,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: var(--space-md);
  transition: all var(--transition);
  flex-shrink: 0;
}

.leistung-card:hover .leistung-icon-wrap {
  background: rgba(82,204,142,0.12);
  border-color: rgba(82,204,142,0.3);
}

.leistung-card--wide .leistung-icon-wrap {
  margin-bottom: 0;
}

.leistung-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.leistung-card--wide .leistung-title {
  margin-bottom: 0;
}

.leistung-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.leistung-card--wide .leistung-text {
  margin-bottom: 0;
}

.leistung-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
}

.leistung-tags span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
}

.leistung-card:hover .leistung-tags span {
  border-color: rgba(82,204,142,0.15);
  color: var(--text-secondary);
}

/* Brand tile */
.leistung-card--brand {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(43,62,48,0.9) 100%);
  border-color: rgba(82,204,142,0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
}

.leistung-card--brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(82,204,142,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.leistung-card--brand:hover {
  border-color: rgba(82,204,142,0.4);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(43,62,48,1) 100%);
}

.leistung-brand-mark {
  position: absolute;
  top: -8px;
  right: -16px;
  width: 170px;
  opacity: 0.1;
  filter: invert(1);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.leistung-brand-mark img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
}

.leistung-card--brand:hover .leistung-brand-mark {
  opacity: 0.18;
  transform: scale(1.05) translateY(-4px);
}

.leistung-brand-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.leistung-brand-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.75;
}

.leistung-brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.leistung-brand-text em {
  font-style: italic;
  color: var(--amber);
}

.leistung-brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amber);
  text-decoration: none;
  margin-top: 0.25rem;
  transition: gap var(--transition), opacity var(--transition);
  opacity: 0.8;
}

.leistung-brand-cta:hover {
  gap: 0.75rem;
  opacity: 1;
}


/* ── 10. WARUM SECTION ── */
.warum {
  position: relative;
  overflow: hidden;
}

.warum::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(82,204,142,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.warum-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: center;
}

.warum-body {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: var(--space-md) 0 var(--space-lg);
}

.vorteile-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vorteil-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

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

.vorteil-item:hover {
  padding-left: 0.5rem;
}

.vorteil-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding-top: 3px;
  opacity: 0.7;
}

.vorteil-item:hover .vorteil-num {
  opacity: 1;
}

.vorteil-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.vorteil-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ── 10b. PORTFOLIO ── */
.portfolio {
  background: var(--bg-card);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Deister region map background */
.portfolio-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.portfolio-map .map-lines line {
  stroke-opacity: 0.7;
}

.portfolio-map .map-dots circle {
  opacity: 0.9;
}

.portfolio-map .map-labels text {
  opacity: 0.75;
}

/* Staggered list layout */
.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.portfolio-item {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.portfolio-item--reverse {
  grid-template-columns: 1fr 1.15fr;
}

.portfolio-item--reverse .portfolio-visual { order: 2; }
.portfolio-item--reverse .portfolio-content { order: 1; }

/* Device wrap + phone */
.portfolio-visual { position: relative; }

.portfolio-device-wrap {
  position: relative;
  padding-right: 52px;
  padding-bottom: 28px;
}

/* Reversed item: phone appears on left */
.portfolio-device-wrap--left {
  padding-right: 0;
  padding-left: 52px;
}

.portfolio-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 108px;
  background: linear-gradient(160deg, #1A2620 0%, #131D16 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.55),
    0 0 0 1px rgba(82,204,142,0.18),
    inset 0 1px 0 rgba(255,255,255,0.07);
  padding: 10px 8px 12px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.portfolio-device-wrap--left .portfolio-phone {
  right: auto;
  left: 0;
}

.portfolio-item:hover .portfolio-phone {
  transform: translateY(-8px);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(82,204,142,0.35),
    0 0 30px rgba(82,204,142,0.12),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Dynamic Island */
.portfolio-phone-island {
  width: 38px;
  height: 8px;
  background: #000;
  border-radius: 999px;
  margin: 0 auto 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.portfolio-phone-screen {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #0D150F;
}

.portfolio-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.portfolio-item:hover .portfolio-phone-screen img {
  transform: translateY(-3%);
}

.portfolio-phone-bar {
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  margin: 8px auto 0;
}

/* Browser mockup */
.portfolio-browser {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #131D16;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.04) inset,
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(82,204,142,0.12);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.portfolio-item:hover .portfolio-browser {
  box-shadow:
    0 2px 0 rgba(255,255,255,0.04) inset,
    0 50px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(82,204,142,0.3),
    0 0 60px rgba(82,204,142,0.08);
  transform: translateY(-4px);
}

.portfolio-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.035);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.portfolio-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red    { background: #FF5F57; }
.dot--yellow { background: #FEBC2E; }
.dot--green  { background: #28C840; }

.portfolio-url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-chrome-spacer { width: 36px; flex-shrink: 0; }

.portfolio-screenshot {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.portfolio-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.portfolio-item:hover .portfolio-screenshot img {
  transform: scale(1.03) translateY(-0.5%);
}

/* Content side */
.portfolio-content {
  position: relative;
  padding-left: 0.5rem;
}

.portfolio-num {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(82,204,142,0.06);
  position: absolute;
  top: -2.5rem;
  left: -0.25rem;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.portfolio-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.portfolio-location svg { flex-shrink: 0; }

.portfolio-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.portfolio-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-faint);
  border: 1px solid rgba(82,204,142,0.2);
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-sm);
}

.portfolio-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  transition: color var(--transition), transform var(--transition);
}

.portfolio-link::after {
  content: '↗';
  font-size: 0.8rem;
}

.portfolio-link:hover {
  color: var(--text-primary);
  transform: translateX(2px);
}

/* Divider between items */
.portfolio-item + .portfolio-item {
  padding-top: 5rem;
  border-top: 1px solid var(--border);
  margin-top: -0rem;
}

/* ── 11. PAKETE ── */
.pakete {
  background: var(--bg-card);
  position: relative;
}

.pakete::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pakete-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.paket-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition);
  position: relative;
  overflow: visible;
}

.paket-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transition: background var(--transition);
}

.paket-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.paket-card:hover::before {
  background: rgba(82,204,142,0.4);
}

/* Featured card */
.paket-card--featured {
  background: var(--surface);
  border-color: rgba(82,204,142,0.4);
  box-shadow: var(--shadow-featured);
}

.paket-card--featured::before {
  background: var(--amber);
  height: 3px;
}

.paket-card--featured:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(82,204,142,0.2);
}

.paket-featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--amber);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.paket-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.paket-card--featured .paket-label {
  color: rgba(82,204,142,0.7);
}

.paket-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.25;
}

.paket-preis {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  padding: var(--space-xs) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0.25rem 0;
}

.preis-ab {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-right: 0.25rem;
}

.preis-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.paket-card--featured .preis-num {
  color: var(--amber);
}

.preis-currency {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.paket-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.paket-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.paket-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.feature-check {
  color: var(--amber);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.35rem;
  border-radius: 50%;
  border: 1px solid rgba(82,204,142,0.35);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  cursor: help;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.6rem);
  transform: translateX(-50%);
  width: min(240px, 70vw);
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(25, 35, 28, 0.96);
  border: 1px solid rgba(82,204,142,0.25);
  box-shadow: var(--shadow-card);
  color: var(--text-primary);
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 20;
}

.tooltip:hover::after,
.tooltip:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.paket-card--featured .paket-features li {
  color: var(--silver-dim);
}

.paket-rabatt {
  background: rgba(82,204,142,0.06);
  border: 1px solid rgba(82,204,142,0.15);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.rabatt-icon { color: var(--amber); font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }

.paket-rabatt strong { color: var(--amber); }

.paket-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pakete-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: var(--space-xl);
}

.pakete-note--legal {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  margin-top: 0.9rem;
}

/* ── Pakete: light-section overrides ── */

/* Regular cards → white, clear shadow, dark text */
.pakete.section--light .paket-card {
  background: #FFFFFF;
  border-color: rgba(43,62,48,0.10);
  box-shadow: 0 2px 12px rgba(43,62,48,0.06), 0 1px 3px rgba(43,62,48,0.04);
}
.pakete.section--light .paket-card:hover {
  border-color: rgba(43,62,48,0.20);
  box-shadow: 0 8px 32px rgba(43,62,48,0.10);
}
.pakete.section--light .paket-card::before,
.pakete.section--light .paket-card:hover::before {
  background: transparent;
}
.pakete.section--light .paket-label {
  color: #4B7A5A;
}
.pakete.section--light .paket-desc,
.pakete.section--light .paket-features li,
.pakete.section--light .preis-ab,
.pakete.section--light .preis-currency,
.pakete.section--light .pakete-note,
.pakete.section--light .pakete-note--legal {
  color: var(--text-primary);
}
.pakete.section--light .preis-num {
  color: var(--text-primary);
}
.pakete.section--light .feature-check {
  color: #1A6B3A;
}
.pakete.section--light .tooltip {
  border-color: rgba(26,107,58,0.4);
  color: #1A6B3A;
}
.pakete.section--light .tooltip::after {
  background: rgba(43,62,48,0.96);
  border-color: rgba(26,107,58,0.3);
  color: #F2F8F3;
}
.pakete.section--light .paket-rabatt {
  color: var(--text-primary);
  border-color: rgba(43,62,48,0.12);
}
.pakete.section--light .paket-rabatt strong {
  color: #1A6B3A;
}
.pakete.section--light .btn-outline {
  color: #1A6B3A;
  border-color: rgba(26,107,58,0.45);
}
.pakete.section--light .btn-outline:hover {
  background: rgba(26,107,58,0.08);
  border-color: #1A6B3A;
}

/* Featured card → dark bg, high contrast against light section */
.pakete.section--light .paket-card--featured {
  background: #1E3A28;
  border-color: #52CC8E;
  box-shadow: 0 8px 40px rgba(30,58,40,0.22), 0 0 0 1px #52CC8E;
}
.pakete.section--light .paket-card--featured:hover {
  box-shadow: 0 14px 50px rgba(30,58,40,0.30), 0 0 0 1px #52CC8E, 0 0 40px rgba(82,204,142,0.15);
}
.pakete.section--light .paket-card--featured .paket-label {
  color: rgba(82,204,142,0.75);
}
.pakete.section--light .paket-card--featured .paket-name,
.pakete.section--light .paket-card--featured .paket-rabatt {
  color: #F2F8F3;
}
.pakete.section--light .paket-card--featured .paket-desc,
.pakete.section--light .paket-card--featured .paket-features li,
.pakete.section--light .paket-card--featured .preis-ab,
.pakete.section--light .paket-card--featured .preis-currency {
  color: #A8D9AF;
}
.pakete.section--light .paket-card--featured .preis-num {
  color: #52CC8E;
}
.pakete.section--light .paket-card--featured .feature-check {
  color: #52CC8E;
}
.pakete.section--light .paket-card--featured .btn-outline {
  color: #52CC8E;
  border-color: rgba(82,204,142,0.5);
}
.pakete.section--light .paket-card--featured .btn-outline:hover {
  background: rgba(82,204,142,0.12);
  border-color: #52CC8E;
}


/* ── 12. ZUSATZLEISTUNGEN ── */
.zusatz {
  padding: var(--space-3xl) 0;
}

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

.zusatz-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zusatz-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(82,204,142,0.08);
  transform: translateY(-3px);
}

/* Card header: icon + category + title */
.zusatz-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.zusatz-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--amber-faint);
  border: 1px solid rgba(82,204,142,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.zusatz-category {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.2rem;
}

.zusatz-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.3;
}

.zusatz-intro {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.zusatz-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zusatz-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.zusatz-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.zusatz-item:first-child {
  padding-top: 0;
}

.zusatz-item-info {
  flex: 1;
  min-width: 0;
}

.zusatz-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.zusatz-desc {
  display: block;
  font-size: 0.775rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.zusatz-preis {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
  padding-top: 0.1rem;
}

/* Pflege tier */
.zusatz-item--pflege { }

.pflege-tier {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.zusatz-item--featured .pflege-tier {
  color: var(--amber);
}

/* ── Domain-Umzug Callout ── */
.zusatz-umzug {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: 1.25rem;
  padding: 1rem 1.125rem;
  background: rgba(82, 204, 142, 0.10);
  border: 1px solid rgba(82, 204, 142, 0.30);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
}

.zusatz-umzug-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: #0A0A0F;
  border-radius: 50%;
  margin-top: 1px;
}

.zusatz-umzug-body {
  flex: 1;
  min-width: 0;
}

.zusatz-umzug-headline {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}

.zusatz-umzug-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Light section overrides */
.section--light .zusatz-umzug {
  background: rgba(26, 107, 58, 0.07);
  border-color: rgba(26, 107, 58, 0.25);
  border-left-color: #1A6B3A;
}

.section--light .zusatz-umzug-icon {
  background: #1A6B3A;
  color: #fff;
}

.section--light .zusatz-umzug-headline {
  color: #1A6B3A;
}

.section--light .zusatz-umzug-text {
  color: #2B3E30;
}


/* ── 13. ABLAUF / PROZESS ── */
.ablauf {
  background: var(--bg-card);
  position: relative;
}

.ablauf::before, .ablauf::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.ablauf::before { top: 0; }
.ablauf::after { bottom: 0; }

.ablauf-timeline {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
}

.ablauf-step {
  display: grid;
  grid-template-columns: 56px 1px 1fr;
  gap: 0 var(--space-md);
  position: relative;
}

.step-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  padding-top: 0.25rem;
  text-align: right;
}

.step-connector {
  background: var(--border);
  width: 1px;
  min-height: 100%;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  top: 0.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--bg-card);
}

.step-content {
  padding: 0.25rem 0 var(--space-lg) var(--space-sm);
}

.ablauf-step--last .step-connector {
  background: transparent;
}

.ablauf-step--last .step-content {
  padding-bottom: 0;
}

.step-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ── 14. REGION ── */
.region {
  position: relative;
}

.region-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.region-inner::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(82,204,142,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-lg);
}

.region-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.region-text p:last-child { margin-bottom: 0; }

.orte-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.orte-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.orte-tags span {
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: rgba(255,255,255,0.02);
  transition: all var(--transition);
}

.orte-tags span:hover {
  border-color: rgba(82,204,142,0.3);
  color: var(--amber);
  background: var(--amber-faint);
}

.orte-tag--accent {
  border-color: rgba(82,204,142,0.3) !important;
  color: var(--amber) !important;
  background: var(--amber-faint) !important;
}


/* ── 15. CTA SECTION ── */
.cta-section {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black, transparent);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(82,204,142,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 35fr 65fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

/* ── Contact left column ── */
.cta-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cta-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.cta-headline em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}

.cta-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Contact person card ── */
.contact-person-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}

.contact-person-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-hover);
  flex-shrink: 0;
}

.contact-person-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-person-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-person-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── Contact details list ── */
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: var(--amber-faint);
  color: var(--amber);
  flex-shrink: 0;
}

.contact-detail-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-detail-link:hover {
  color: var(--amber);
}

/* ── Form right column ── */
.cta-form-wrap {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: left;
  flex: 1;
}

.form-hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input {
  background: var(--surface);
  border: 1px solid rgba(82,204,142,0.35);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(82,204,142,0.18);
  outline: none;
}

.form-input::placeholder { color: var(--silver-dim); }

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

.form-group--grow {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-textarea--grow {
  flex: 1;
  min-height: 100px;
  resize: none;
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.form-status.is-success {
  color: #7BE495;
}

.form-status.is-error {
  color: #FF9DA6;
}


/* ── 16. SITE FOOTER ── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-logo { display: inline-flex; }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: none;
  white-space: nowrap;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-contact-list {
  gap: 0.8rem !important;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-link:hover { color: var(--amber); }

.footer-contact-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-contact-address svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--text-muted);
}

.footer-contact-link svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-md) 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--silver); }


/* ── 16b. RECHTLICHES (Impressum & Datenschutz) ── */

.rechtliches {
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.rechtliches-heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.rechtl-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.25rem;
  transition: border-color var(--transition);
}

.rechtl-accordion:last-child {
  margin-bottom: 0;
}

.rechtl-accordion[open],
.rechtl-accordion:focus-within {
  border-color: var(--border-hover);
}

/* Hide native marker */
.rechtl-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.5rem 0.875rem;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition), color var(--transition);
}

.rechtl-summary::-webkit-details-marker { display: none; }

.rechtl-summary:hover {
  background: var(--amber-faint);
}

.rechtl-label {
  font-size: 0.775rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.rechtl-accordion[open] .rechtl-label,
.rechtl-summary:hover .rechtl-label {
  color: var(--text-secondary);
}

.rechtl-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease-out), color var(--transition);
  opacity: 0.5;
}

.rechtl-accordion[open] .rechtl-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--amber);
}

/* Body: animated by JS (overflow + height) */
.rechtl-body {
  overflow: hidden;
}

.rechtl-content {
  padding: 0 1.5rem 2rem;
  border-top: 1px solid var(--border);
}

/* Prose blocks within accordion */
.rechtl-block {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.rechtl-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rechtl-block h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.rechtl-block p,
.rechtl-block address,
.rechtl-block ul {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.rechtl-block address {
  font-style: normal;
}

.rechtl-block p + p {
  margin-top: 0.5rem;
}

.rechtl-block ul {
  padding-left: 1.2rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0.5rem 0;
}

.rechtl-block a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition);
}

.rechtl-block a:hover { opacity: 0.75; }

.rechtl-block code {
  font-family: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
  font-size: 0.8rem;
  background: var(--bg-elevated);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  color: var(--silver-dim);
}

/* Warning / placeholder style */
.rechtl-block--warning {
  background: rgba(200, 80, 80, 0.04);
  border-radius: var(--radius-sm);
  padding-left: 0.75rem;
  border-left: 2px solid rgba(200, 80, 80, 0.3);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-md);
}

.rechtl-placeholder {
  font-size: 0.8rem !important;
  color: #c0704a !important;
  background: rgba(192, 112, 74, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
  line-height: 1.6 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .rechtl-summary {
    padding: 0.45rem 0.75rem;
  }

  .rechtl-content {
    padding: 0 0.75rem 1.25rem;
  }
}


/* ── 17. AOS OVERRIDES ── */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}


/* ── 18. RESPONSIVE ── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .portfolio-item {
    gap: 3rem;
  }

  .portfolio-phone {
    width: 108px;
  }

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

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

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

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

  .hero-visual {
    display: none;
  }

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

  .hero-services {
    justify-content: center;
    border-top-color: rgba(255,255,255,0.06);
  }

  .hero-actions {
    justify-content: center;
  }

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

  .leistung-card--wide {
    grid-column: span 2;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .leistung-card--wide .leistung-tags {
    grid-column: 2;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  /* CTA: stack at tablet */
  .cta-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
    --space-xl: 2.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }


  .logo {
    margin-top: 0;
  }

  /* Nav – collapse to hamburger on tablet */
  .main-nav { display: none; }
  .hamburger { display: flex; }

  /* Intro */
  .intro-body-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .intro-founder {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
  }

  .founder-byline {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .founder-quote-wrap { padding-top: 0; }

  .founder-background {
    padding: 1.5rem 0 0;
  }

  .founder-background-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Portfolio */
  .portfolio-list {
    gap: 3rem;
  }

  .portfolio-item,
  .portfolio-item--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .portfolio-item--reverse .portfolio-visual { order: 1; }
  .portfolio-item--reverse .portfolio-content { order: 2; }

  .portfolio-device-wrap,
  .portfolio-device-wrap--left {
    padding-right: 44px;
    padding-left: 0;
    padding-bottom: 22px;
  }

  .portfolio-device-wrap--left .portfolio-phone {
    right: 0;
    left: auto;
  }

  .portfolio-phone {
    width: 90px;
    border-radius: 18px;
  }

  .portfolio-num {
    font-size: 5rem;
    top: -1.5rem;
  }

  .portfolio-item + .portfolio-item {
    padding-top: 3rem;
  }

  /* Leistungen */
  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  .leistung-card--wide {
    grid-column: span 1;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
  }

  .leistung-card--wide .leistung-text {
    grid-column: 1 / -1;
  }

  .leistung-card--wide .leistung-tags {
    grid-column: 1 / -1;
  }

  /* Pakete */
  .pakete-grid {
    grid-template-columns: 1fr;
  }

  /* Zusatz */
  .zusatz-grid {
    grid-template-columns: 1fr;
  }

  /* Ablauf */
  .ablauf-step {
    grid-template-columns: 44px 1px 1fr;
    gap: 0 0.75rem;
  }

  /* Region */
  .region-inner {
    padding: var(--space-xl) var(--space-md);
  }

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

  /* CTA section – stack on mobile */
  .cta-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* CTA Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile: 480px */
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .region-inner {
    padding: var(--space-lg) var(--space-sm);
  }
}

/* ── 19. PRINT ── */
@media print {
  .site-header, .scroll-hint, .hero-glow,
  .hero-bg-grid, .cta-bg-grid, .cta-glow { display: none; }
  body { background: white; color: black; }
}
