/* WOCHSTUM Design System — UI/UX Pro Max Skill
   Style: Organic Biophilic + Trust & Authority
   Fonts: Lora (headings) / Raleway (body)
   Palette: Sky Blue + White + Moss Green accents
   Rules applied: no-emoji-icons, cursor-pointer, focus-states,
   reduced-motion, skip-links, touch-target-size, color-contrast 4.5:1 */

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/Lora-Variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Lora-Italic-Variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/Raleway-Variable.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;
}

:root {
  /* Semantic Color Tokens (UX Pro Max: color-semantic) */
  --color-primary: #1a7bbf;
  --color-primary-light: #4aade8;
  --color-primary-soft: #e8f2fb;
  --color-primary-mist: #f0f7ff;
  --color-on-primary: #ffffff;
  --color-accent: #4a9e3f;
  --color-accent-light: #e8f5e6;
  --color-background: #fafcff;
  --color-surface: #ffffff;
  --color-surface-alt: #f0f6fc;
  --color-foreground: #1a2a3a;
  --color-secondary: #4a6178;
  --color-muted: #8a9bb0;
  --color-border: rgba(26,123,191,0.1);
  --color-destructive: #DC2626;
  --color-ring: #4aade8;

  /* Spacing Scale (UX Pro Max: 8dp spacing rhythm) */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px;

  /* Organic Radius (UX Pro Max: organic biophilic) */
  --radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px; --radius-full: 100px;

  /* Elevation (UX Pro Max: elevation-consistent) */
  --shadow-sm: 0 1px 3px rgba(26,42,58,0.04);
  --shadow-md: 0 4px 20px rgba(26,42,58,0.06);
  --shadow-lg: 0 8px 40px rgba(26,42,58,0.08);
  --shadow-glow: 0 4px 24px rgba(74,173,232,0.15);

  /* Animation (UX Pro Max: duration-timing 150-300ms) */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --duration: 250ms;

  --max-w: 1140px;
}

/* === RESET === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}

/* === SKIP LINK (UX Pro Max: skip-links) === */
.skip-link{
  position:absolute;top:-100%;left:50%;transform:translateX(-50%);
  background:var(--color-primary);color:#fff;padding:var(--space-3) var(--space-5);
  border-radius:0 0 var(--radius-sm) var(--radius-sm);font-weight:600;
  z-index:9999;text-decoration:none;font-size:.9rem;
}
.skip-link:focus{top:0}

/* === BODY === */
body{
  font-family:'Raleway',-apple-system,BlinkMacSystemFont,sans-serif;
  background:var(--color-background);color:var(--color-foreground);
  line-height:1.7;overflow-x:hidden;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--color-primary);text-decoration:none;transition:color var(--duration) var(--ease)}
a:hover{color:var(--color-primary-light)}

/* === GLOBAL INTERACTIVE (UX Pro Max: cursor-pointer, focus-states) === */
a,button,.situation-card,.blockade-header,.angebot-card,.btn{cursor:pointer}
a:focus-visible,button:focus-visible,.btn:focus-visible,.blockade-header:focus-visible{
  outline:3px solid var(--color-ring);outline-offset:2px;border-radius:4px;
}

/* === NAV === */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(255,255,255,0.85);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid transparent;transition:all var(--duration) var(--ease);
}
.nav.scrolled{background:rgba(255,255,255,0.97);border-bottom-color:var(--color-border);box-shadow:var(--shadow-sm)}
.nav-inner{
  max-width:var(--max-w);margin:0 auto;padding:0 var(--space-5);
  display:flex;align-items:center;justify-content:space-between;height:72px;
}
.nav-logo img{height:32px;width:auto}
.nav-links{list-style:none;display:flex;align-items:center;gap:var(--space-6)}
.nav-links a{
  font-size:.92rem;font-weight:500;color:var(--color-secondary);
  padding:var(--space-2) 0;position:relative;transition:color var(--duration) var(--ease);
}
.nav-links a::after{
  content:'';position:absolute;bottom:-2px;left:0;width:0;height:2px;
  background:var(--color-primary);border-radius:2px;transition:width var(--duration) var(--ease);
}
.nav-links a:hover{color:var(--color-foreground)}
.nav-links a:hover::after{width:100%}
.nav-links a[aria-current="page"]{color:var(--color-primary);font-weight:600}
.nav-links a[aria-current="page"]::after{width:100%}
.nav-cta{
  background:var(--color-primary)!important;color:var(--color-on-primary)!important;
  padding:var(--space-3) var(--space-5)!important;border-radius:var(--radius-full);
  font-weight:600!important;font-size:.85rem!important;
  box-shadow:0 2px 12px rgba(26,123,191,0.25);
}
.nav-cta::after{display:none!important}
.nav-cta:hover{background:var(--color-primary-light)!important;transform:translateY(-1px);box-shadow:var(--shadow-glow)}
.nav-toggle{display:none;background:none;border:none;width:44px;height:44px;flex-direction:column;justify-content:center;align-items:center;gap:5px}
.nav-toggle span{width:22px;height:2px;background:var(--color-foreground);border-radius:2px;transition:var(--duration) var(--ease)}

/* === HERO === */
.hero{
  min-height:100vh;display:flex;align-items:center;
  padding:calc(72px + var(--space-8)) var(--space-5) var(--space-8);
  background:linear-gradient(175deg,var(--color-background) 0%,var(--color-primary-soft) 50%,var(--color-primary-mist) 100%);
  position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;top:-20%;right:-10%;width:600px;height:600px;
  background:radial-gradient(circle,rgba(74,173,232,0.06) 0%,transparent 70%);
  border-radius:50%;pointer-events:none;
}
.hero-inner{
  max-width:var(--max-w);margin:0 auto;width:100%;
  display:grid;grid-template-columns:1fr 1fr;gap:var(--space-8);align-items:center;
}
.hero-text{animation:fadeUp .8s var(--ease) both}
.hero-badge{
  display:inline-flex;align-items:center;gap:var(--space-2);
  background:var(--color-surface);border:1px solid var(--color-border);
  padding:var(--space-2) var(--space-4);border-radius:var(--radius-full);
  font-size:.82rem;font-weight:500;color:var(--color-primary);
  margin-bottom:var(--space-5);
}
.hero-badge::before{content:'';width:6px;height:6px;background:var(--color-primary-light);border-radius:50%;animation:pulse 2s ease infinite}
.hero h1{
  font-family:'Lora',serif;font-size:clamp(2.2rem,4.5vw,3.4rem);
  font-weight:600;line-height:1.15;margin-bottom:var(--space-5);color:var(--color-foreground);
}
.hero h1 .highlight{
  background:linear-gradient(135deg,var(--color-primary),var(--color-accent));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero-sub{font-size:1.1rem;color:var(--color-secondary);line-height:1.7;margin-bottom:var(--space-4);max-width:520px}
.hero-aufstellung-hint{
  font-size:.95rem;color:var(--color-accent);font-style:italic;
  border-left:3px solid var(--color-accent);padding-left:var(--space-4);
  margin-bottom:var(--space-6);font-family:'Lora',serif;
}
.hero-actions{display:flex;gap:var(--space-4);flex-wrap:wrap}

/* === BUTTONS (UX Pro Max: primary-action, touch-target-size 44px) === */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:var(--space-4) var(--space-6);border-radius:var(--radius-full);
  font-weight:600;font-size:.95rem;min-height:48px;
  transition:all var(--duration) var(--ease);border:none;text-decoration:none;
}
.btn-primary{
  background:var(--color-primary);color:var(--color-on-primary);
  box-shadow:0 4px 16px rgba(26,123,191,0.3);
}
.btn-primary:hover{background:var(--color-primary-light);transform:translateY(-2px);box-shadow:var(--shadow-glow);color:#fff}
.btn-secondary{
  background:var(--color-surface);color:var(--color-foreground);
  border:1.5px solid var(--color-border);
}
.btn-secondary:hover{border-color:var(--color-primary);color:var(--color-primary);transform:translateY(-2px)}

/* === TREE REVEAL === */
.tree-reveal-container{
  position:relative;overflow:visible;
  max-height:580px;aspect-ratio:3/4;
  animation:fadeUp .8s .2s var(--ease) both;
}
.tree-reveal-container::before{
  content:'';position:absolute;
  top:50%;left:50%;transform:translate(-50%,-50%);
  width:80%;height:85%;
  background:radial-gradient(ellipse at center,
    rgba(74,173,232,0.22) 0%,
    rgba(74,173,232,0.12) 35%,
    rgba(232,242,251,0.15) 55%,
    rgba(255,255,255,0) 75%
  );
  border-radius:50%;filter:blur(25px);
  pointer-events:none;z-index:0;
}
.tree-reveal-container::after{
  content:'';position:absolute;
  top:45%;left:48%;transform:translate(-50%,-50%);
  width:50%;height:60%;
  background:radial-gradient(circle, rgba(74,173,232,0.12) 0%, transparent 70%);
  border-radius:50%;filter:blur(40px);
  pointer-events:none;z-index:0;
}
.tree-img-moss,.tree-img-bare{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:contain;z-index:1;
  filter:drop-shadow(0 8px 32px rgba(26,42,58,0.12));
}
.tree-img-bare{z-index:2}
.tree-cursor{
  position:absolute;width:120px;height:120px;border:2px solid rgba(74,173,232,0.3);
  border-radius:50%;pointer-events:none;z-index:3;display:none;
  transform:translate(-50%,-50%);transition:opacity .4s var(--ease);
  box-shadow:0 0 30px rgba(74,173,232,0.08);
}
.tree-label{
  position:absolute;bottom:var(--space-4);left:50%;transform:translateX(-50%);
  z-index:4;background:rgba(255,255,255,0.85);backdrop-filter:blur(8px);
  padding:var(--space-2) var(--space-4);border-radius:var(--radius-full);
  font-size:.8rem;color:var(--color-secondary);white-space:nowrap;
  box-shadow:var(--shadow-sm);
}

/* === SECTIONS === */
section{padding:var(--space-9) var(--space-5)}
.alt-bg{background:var(--color-surface-alt)}
.section-inner{max-width:var(--max-w);margin:0 auto}
.section-label{
  display:inline-flex;align-items:center;gap:var(--space-3);
  font-size:.78rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--color-primary);margin-bottom:var(--space-4);
}
.section-label::before{content:'';width:24px;height:1.5px;background:var(--color-primary-light)}
.section-title{
  font-family:'Lora',serif;font-size:clamp(1.8rem,3vw,2.6rem);
  font-weight:600;line-height:1.2;margin-bottom:var(--space-3);color:var(--color-foreground);
}
.section-desc{color:var(--color-secondary);max-width:580px;font-size:1.02rem;margin-bottom:var(--space-7)}

/* === SCROLL REVEAL (UX Pro Max: stagger-sequence) === */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
.reveal.visible{opacity:1;transform:none}

/* === SITUATIONS GRID === */
.situations-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-5)}
.situation-card{
  background:var(--color-surface);border:1px solid var(--color-border);
  border-radius:var(--radius-md);padding:var(--space-6);
  transition:all var(--duration) var(--ease);position:relative;
}
.situation-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--color-primary-light)}
.situation-icon{margin-bottom:var(--space-4);color:var(--color-primary)}
.situation-icon svg{width:28px;height:28px;stroke:var(--color-primary)}
.situation-card h3{font-size:1.05rem;font-weight:600;margin-bottom:var(--space-3);color:var(--color-foreground)}
.situation-card p{color:var(--color-secondary);font-size:.9rem;line-height:1.65}

/* === BLOCKADES ACCORDION === */
.blockaden-list{display:flex;flex-direction:column;gap:var(--space-3);max-width:800px}
.blockade-item{
  background:var(--color-surface);border:1px solid var(--color-border);
  border-radius:var(--radius-md);overflow:hidden;transition:all var(--duration) var(--ease);
}
.blockade-item:hover{border-color:var(--color-primary-light)}
.blockade-item.open{border-color:var(--color-primary);box-shadow:var(--shadow-md)}
.blockade-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:var(--space-5);gap:var(--space-4);min-height:48px;
}
.blockade-header h3{
  font-size:.95rem;font-weight:600;color:var(--color-foreground);
  display:flex;align-items:center;gap:var(--space-3);flex:1;
}
.blockade-header h3 svg{flex-shrink:0;stroke:var(--color-primary)}
.blockade-inner-voice{font-weight:400;color:var(--color-muted);font-style:italic;margin-left:var(--space-2)}
.blockade-chevron{
  width:20px;height:20px;flex-shrink:0;color:var(--color-muted);
  transition:transform var(--duration) var(--ease);
}
.blockade-item.open .blockade-chevron{transform:rotate(180deg);color:var(--color-primary)}
.blockade-body{max-height:0;overflow:hidden;transition:max-height .4s var(--ease)}
.blockade-body-inner{padding:0 var(--space-5) var(--space-5)}
.blockade-answer{
  color:var(--color-secondary);font-size:.92rem;line-height:1.65;
  padding-top:var(--space-3);border-top:1px solid var(--color-border);
}

/* === AUFSTELLUNGEN === */
.aufstellungen-content{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-7)}
.aufstellungen-steps{list-style:none;display:flex;flex-direction:column;gap:var(--space-5)}
.aufstellungen-steps li{display:flex;gap:var(--space-4);align-items:flex-start}
.step-num{
  width:40px;height:40px;border-radius:50%;
  background:var(--color-primary-soft);color:var(--color-primary);
  display:flex;align-items:center;justify-content:center;
  font-family:'Lora',serif;font-weight:700;flex-shrink:0;font-size:1rem;
}
.step-text h4{font-size:1rem;font-weight:600;margin-bottom:var(--space-2);color:var(--color-foreground)}
.step-text p{color:var(--color-secondary);font-size:.9rem;line-height:1.6}
.aufstellungen-why h3{font-family:'Lora',serif;font-size:1.3rem;font-weight:600;margin-bottom:var(--space-4);color:var(--color-foreground)}
.aufstellungen-why p{color:var(--color-secondary);font-size:.95rem;line-height:1.7;margin-bottom:var(--space-4)}
.aufstellungen-highlight{
  background:var(--color-primary-soft);border-left:3px solid var(--color-primary);
  padding:var(--space-5);border-radius:0 var(--radius-md) var(--radius-md) 0;
}
.aufstellungen-highlight p{color:var(--color-foreground);font-weight:500;margin:0}

/* === ANGEBOT GRID === */
.angebot-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-5)}
.angebot-card{
  background:var(--color-surface);border:1px solid var(--color-border);
  border-radius:var(--radius-md);padding:var(--space-6);
  transition:all var(--duration) var(--ease);
}
.angebot-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--color-primary-light)}
.card-icon{
  width:48px;height:48px;border-radius:var(--radius-sm);
  background:var(--color-primary-soft);display:flex;align-items:center;justify-content:center;
  margin-bottom:var(--space-4);color:var(--color-primary);
}
.card-icon svg{stroke:var(--color-primary)}
.angebot-card h3{font-size:1.05rem;font-weight:600;margin-bottom:var(--space-3);color:var(--color-foreground)}
.angebot-card p{color:var(--color-secondary);font-size:.9rem;line-height:1.65}

/* === ABOUT === */
.about-content{display:grid;grid-template-columns:320px 1fr;gap:var(--space-7);align-items:start}
.about-image-wrap{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg)}
.about-image-wrap img{width:100%;aspect-ratio:4/5;object-fit:cover}
.about-text h3{font-family:'Lora',serif;font-size:1.4rem;font-weight:600;margin-bottom:var(--space-2);color:var(--color-foreground)}
.about-text .role{color:var(--color-primary);font-size:.9rem;font-weight:500;margin-bottom:var(--space-5)}
.about-text p{color:var(--color-secondary);font-size:.95rem;line-height:1.7;margin-bottom:var(--space-4)}
.about-values{display:flex;flex-wrap:wrap;gap:var(--space-2);margin-bottom:var(--space-5)}
.about-values span{
  background:var(--color-primary-soft);color:var(--color-primary);
  padding:var(--space-2) var(--space-4);border-radius:var(--radius-full);
  font-size:.82rem;font-weight:500;
}
.about-stats{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-4)}
.stat-item{
  background:var(--color-surface);border:1px solid var(--color-border);
  border-radius:var(--radius-sm);padding:var(--space-5);
}
.stat-item .num{
  font-family:'Lora',serif;font-size:1.8rem;font-weight:600;
  background:linear-gradient(135deg,var(--color-primary),var(--color-accent));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.stat-item .label{color:var(--color-secondary);font-size:.82rem;margin-top:var(--space-1)}

/* === PODCAST === */
.podcast-banner{
  background:linear-gradient(135deg,var(--color-primary),#155f94);
  border-radius:var(--radius-lg);padding:var(--space-7);
  display:flex;align-items:center;gap:var(--space-6);color:#fff;
}
.podcast-icon{
  width:64px;height:64px;background:rgba(255,255,255,0.15);
  border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.podcast-info h3{font-family:'Lora',serif;font-size:1.3rem;margin-bottom:var(--space-2)}
.podcast-info p{opacity:.85;font-size:.92rem;line-height:1.6;margin-bottom:var(--space-4)}
.podcast-links{display:flex;gap:var(--space-3)}
.podcast-link{
  background:rgba(255,255,255,0.15);color:#fff;padding:var(--space-2) var(--space-4);
  border-radius:var(--radius-full);font-size:.82rem;font-weight:500;
  transition:background var(--duration) var(--ease);
}
.podcast-link:hover{background:rgba(255,255,255,0.25);color:#fff}

/* === TESTIMONIALS === */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-5)}
.testimonial-card{
  background:var(--color-surface);border:1px solid var(--color-border);
  border-radius:var(--radius-md);padding:var(--space-6);
}
.testimonial-stars{color:#f59e0b;font-size:1rem;margin-bottom:var(--space-4);letter-spacing:2px}
.testimonial-card blockquote{
  color:var(--color-secondary);font-size:.92rem;line-height:1.7;
  font-style:italic;margin-bottom:var(--space-4);
}
.testimonial-source{color:var(--color-muted);font-size:.82rem;font-weight:500}

/* === CTA SECTION === */
.cta-section{
  text-align:center;
  background:linear-gradient(175deg,var(--color-surface-alt),var(--color-primary-soft));
}
.cta-section .section-inner{display:flex;flex-direction:column;align-items:center}
.cta-section .section-desc{text-align:center;margin-left:auto;margin-right:auto}
.cta-hint{color:var(--color-secondary);font-size:.9rem;margin-top:var(--space-4)}

/* === FOOTER === */
.footer{background:var(--color-surface-alt);border-top:1px solid var(--color-border);padding:var(--space-8) var(--space-5) var(--space-5)}
.footer-inner{
  max-width:var(--max-w);margin:0 auto;
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:var(--space-7);
  padding-bottom:var(--space-6);border-bottom:1px solid var(--color-border);
}
.footer-brand img{height:28px;margin-bottom:var(--space-4)}
.footer-brand p{color:var(--color-muted);font-size:.85rem;line-height:1.6}
.footer h4{font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--color-foreground);margin-bottom:var(--space-4)}
.footer ul{list-style:none}
.footer li{margin-bottom:var(--space-3)}
.footer li a{color:var(--color-secondary);font-size:.9rem;transition:color var(--duration) var(--ease)}
.footer li a:hover{color:var(--color-primary)}
.footer li:not(:has(a)){color:var(--color-secondary);font-size:.9rem}
.footer-bottom{
  max-width:var(--max-w);margin:var(--space-5) auto 0;
  display:flex;justify-content:space-between;align-items:center;
}
.footer-bottom span{color:var(--color-muted);font-size:.82rem}
.footer-legal{display:flex;gap:var(--space-5)}
.footer-legal a{color:var(--color-muted);font-size:.82rem}
.footer-legal a:hover{color:var(--color-primary)}

/* === ANIMATIONS === */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}

/* === COOKIE BANNER === */
.cookie-banner{
  position:fixed;bottom:0;left:0;right:0;z-index:9999;
  background:rgba(255,255,255,0.96);backdrop-filter:blur(20px);
  border-top:1px solid var(--color-border);
  box-shadow:0 -4px 32px rgba(0,0,0,0.08);
  padding:var(--space-5) var(--space-5);
  transform:translateY(100%);transition:transform .4s var(--ease);
  display:none;
}
.cookie-banner.visible{display:block;transform:translateY(0)}
.cookie-inner{
  max-width:var(--max-w);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:var(--space-5);
  flex-wrap:wrap;
}
.cookie-inner p{font-size:.88rem;color:var(--color-secondary);flex:1;min-width:240px}
.cookie-inner a{color:var(--color-primary);text-decoration:underline}
.cookie-actions{display:flex;gap:var(--space-3);flex-shrink:0}
.cookie-actions .btn{font-size:.82rem;padding:var(--space-2) var(--space-4)}

/* === RESPONSIVE (UX Pro Max: mobile-first, breakpoint-consistency) === */

/* Tablet landscape */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero-sub,.hero-aufstellung-hint{margin-left:auto;margin-right:auto}
  .hero-actions{justify-content:center}
  .tree-reveal-container{max-width:360px;margin:0 auto;aspect-ratio:2/3}
  .aufstellungen-content{grid-template-columns:1fr}
  .about-content{grid-template-columns:1fr;text-align:center}
  .about-image-wrap{max-width:280px;margin:0 auto}
  .about-values{justify-content:center}
  .situations-grid,.angebot-grid{grid-template-columns:1fr 1fr}
  .testimonials-grid{grid-template-columns:1fr 1fr}
}

/* Tablet portrait + large phones */
@media(max-width:768px){
  :root{--space-9:64px;--space-8:48px;--space-7:32px}
  section{padding:var(--space-8) var(--space-4)}
  .hero{min-height:auto;padding-top:calc(72px + var(--space-7));padding-bottom:var(--space-7)}
  .hero h1{font-size:clamp(1.8rem,7vw,2.6rem)}
  .hero-sub{font-size:1rem}
  .hero-aufstellung-hint{font-size:.88rem}
  .hero-actions{flex-direction:column;gap:var(--space-3);width:100%}
  .hero-actions .btn{width:100%;justify-content:center}
  .tree-reveal-container{max-width:100%;max-height:none;width:100%;aspect-ratio:auto;height:320px;margin:-8px auto 0;order:-1}
  .tree-img-moss,.tree-img-bare{transform:rotate(90deg);transform-origin:center center}
  .tree-reveal-container::before,.tree-reveal-container::after{display:none}
  .tree-cursor{display:none!important}
  .situations-grid,.angebot-grid,.testimonials-grid{grid-template-columns:1fr}
  .situation-card,.angebot-card,.testimonial-card{padding:var(--space-5)}
  .section-title{font-size:clamp(1.5rem,5vw,2rem)}
  .aufstellungen-steps li{flex-direction:column;text-align:center;align-items:center}
  .step-num{margin-bottom:var(--space-2)}
  .aufstellungen-why{text-align:center}
  .about-stats{grid-template-columns:1fr 1fr}
  .podcast-banner{flex-direction:column;text-align:center;padding:var(--space-5)}
  .podcast-icon{width:48px;height:48px}
  .podcast-links{justify-content:center;flex-wrap:wrap}
  .blockade-header h3{font-size:.88rem}
  .blockade-answer{font-size:.88rem}
  .footer-inner{grid-template-columns:1fr 1fr;gap:var(--space-5)}
  .nav-inner{height:60px}
  .nav-links{
    display:none;flex-direction:column;position:absolute;
    top:100%;left:0;right:0;background:rgba(255,255,255,0.98);
    padding:var(--space-5);gap:var(--space-4);border-bottom:1px solid var(--color-border);
    box-shadow:var(--shadow-md);backdrop-filter:blur(20px);
  }
  .nav-links a{font-size:1rem;padding:var(--space-3) 0}
  .nav-cta{width:100%;text-align:center;margin-top:var(--space-2)}
  .nav-links.open{display:flex}
  .nav-toggle{display:flex}
  .footer-bottom{flex-direction:column;gap:var(--space-3);text-align:center}
  .cta-section .btn{width:100%;max-width:320px}
}

/* Small phones (375px) */
@media(max-width:480px){
  :root{--space-9:48px;--space-8:36px}
  .hero{padding-top:calc(60px + var(--space-6))}
  .hero h1{font-size:1.7rem}
  .hero-badge{font-size:.75rem;padding:var(--space-1) var(--space-3)}
  .hero-sub{font-size:.92rem}
  .tree-reveal-container{width:100%;height:280px}
  .section-label{font-size:.72rem}
  .section-title{font-size:1.35rem}
  .section-desc{font-size:.9rem}
  .situation-card h3,.angebot-card h3{font-size:.95rem}
  .situation-card p,.angebot-card p{font-size:.85rem}
  .about-content{gap:var(--space-5)}
  .about-text h3{font-size:1.2rem}
  .about-text p{font-size:.88rem}
  .stat-item .num{font-size:1.4rem}
  .footer-inner{grid-template-columns:1fr;gap:var(--space-5)}
  .footer-brand p{font-size:.8rem}
  .blockade-header{padding:var(--space-4)}
  .blockade-header h3{font-size:.82rem;gap:var(--space-2)}
  .blockade-body-inner{padding:0 var(--space-4) var(--space-4)}
  .btn{font-size:.88rem;padding:var(--space-3) var(--space-5);min-height:44px}
}

/* Touch target enforcement for all sizes */
@media(pointer:coarse){
  .btn,.nav-cta,.blockade-header,.podcast-link,.footer li a{min-height:44px;min-width:44px}
  .nav-toggle{width:48px;height:48px}
}

/* === REDUCED MOTION (UX Pro Max: reduced-motion) === */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
  .reveal{opacity:1;transform:none}
  html{scroll-behavior:auto}
}
