/*
Theme Name: ProzessWerk-Rudolf
Theme URI: https://www.prozesswerk-rudolf.de
Author: Sascha Rudolf
Author URI: https://www.prozesswerk-rudolf.de
Description: Maßgeschneidertes WordPress-Theme für ProzessWerk-Rudolf – Digitale Prozessautomatisierung für KMU. Inkl. SEO- und GEO-Optimierung, Schema.org-Markup und responsive Design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prozesswerk-rudolf
Tags: one-column, custom-menu, featured-images, translation-ready, business
*/

/* ============================================================
   ProzessWerk-Rudolf – Complete Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

:root {
  --green-dark:   #1a3d1f;
  --green-mid:    #2d6a35;
  --green-bright: #4caf50;
  --green-light:  #a8d5ab;
  --green-pale:   #e8f5e9;
  --accent:       #76c442;
  --text-dark:    #111a12;
  --text-mid:     #3a4a3c;
  --text-light:   #6b7f6d;
  --white:        #ffffff;
  --off-white:    #f7faf7;
  --border:       #d4e8d5;
  --shadow:       rgba(26,61,31,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.15; }

/* ── NAV ── */
.pw-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.pw-nav.scrolled { box-shadow: 0 2px 24px var(--shadow); }

.nav-logo {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem;
  color: var(--green-dark); text-decoration: none;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--green-mid);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: white; }

.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-mid); font-size: 0.9rem;
  font-weight: 400; padding-bottom: 3px;
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-mid); border-color: var(--accent); }
.nav-cta {
  background: var(--green-mid) !important; color: white !important;
  padding: 0.55rem 1.4rem !important; border-radius: 50px;
  font-weight: 500 !important; border-bottom: none !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

/* ── MOBILE NAV ── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--green-dark);
  position: absolute; left: 4px; transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ── TOOLS BAR ── */
.tools-bar {
  background: var(--green-dark); padding: 1.1rem 4rem;
  display: flex; align-items: center; gap: 3rem; overflow: hidden;
}
.tools-bar-label {
  font-size: 0.72rem; color: var(--green-light);
  text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; font-weight: 500;
}
.tools-list { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.tool-item { color: rgba(255,255,255,0.75); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.82rem; }

/* ── SECTION BASE ── */
.pw-section { padding: 6rem 4rem; }
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--green-mid); margin-bottom: 0.8rem;
}
.section-title { font-size: clamp(1.8rem,3vw,2.8rem); color: var(--green-dark); margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--text-mid); max-width: 580px; font-weight: 300; margin-bottom: 3rem; line-height: 1.75; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green-mid); color: white; padding: 0.9rem 2rem;
  border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(45,106,53,0.3);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45,106,53,0.4); }
.btn-secondary {
  background: transparent; color: var(--green-mid); padding: 0.9rem 2rem;
  border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 0.95rem;
  border: 2px solid var(--green-light); transition: border-color 0.2s, background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { border-color: var(--green-mid); background: var(--green-pale); transform: translateY(-2px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--off-white); padding: 8rem 4rem 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 700px; }
.page-hero h1 { font-size: clamp(2rem,4vw,3.2rem); color: var(--green-dark); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: var(--text-mid); font-weight: 300; line-height: 1.75; }

/* ── CARDS ── */
.card {
  background: var(--off-white); border: 1px solid var(--border); border-radius: 20px;
  padding: 2rem; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px var(--shadow); border-color: var(--green-light); }
.card-icon {
  width: 50px; height: 50px; background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.card-icon svg { width: 24px; height: 24px; fill: white; }
.card h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.6rem; }
.card p { font-size: 0.88rem; color: var(--text-mid); font-weight: 300; line-height: 1.65; }
.tag {
  display: inline-block; background: var(--green-pale); color: var(--green-mid);
  padding: 0.22rem 0.65rem; border-radius: 50px; font-size: 0.73rem; font-weight: 600;
}
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }

/* ── HERO (Startseite) ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  background: var(--off-white);
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(76,175,80,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-pale); border: 1px solid var(--green-light);
  color: var(--green-mid); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 1.5rem;
  animation: fadeUp 0.5s ease both;
}
.hero-badge::before { content:''; width:7px; height:7px; background:var(--accent); border-radius:50%; }
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--green-dark); margin-bottom: 1.2rem;
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero h1 span { color: var(--green-mid); position: relative; }
.hero h1 span::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; background: var(--accent); border-radius: 2px;
}
.hero-sub {
  font-size: 1.08rem; color: var(--text-mid); max-width: 480px;
  font-weight: 300; margin-bottom: 2rem; line-height: 1.75;
  animation: fadeUp 0.5s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.5s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 2.8rem;
  animation: fadeUp 0.5s 0.4s ease both;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-family:'Outfit',sans-serif; font-size:1.8rem; color:var(--green-dark); font-weight:800; }
.hero-stat span { font-size: 0.78rem; color: var(--text-light); }

/* ── HERO VISUAL CARD ── */
.hero-visual { animation: fadeUp 0.6s 0.15s ease both; }
.hero-card {
  background: white; border-radius: 20px; padding: 2rem;
  box-shadow: 0 16px 60px var(--shadow); border: 1px solid var(--border);
}
.hero-card-title {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem;
  color: var(--green-dark); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-card-title::before { content:''; width:9px; height:9px; background:var(--accent); border-radius:50%; }
.process-steps { display: flex; flex-direction: column; gap: 0.75rem; }
.process-step {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.7rem 1rem; background: var(--off-white); border-radius: 10px;
  border-left: 3px solid var(--green-bright); transition: transform 0.2s;
}
.process-step:hover { transform: translateX(4px); }
.step-num {
  width: 26px; height: 26px; background: var(--green-mid); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.step-text { font-size: 0.83rem; color: var(--text-mid); }

/* ── USPs ── */
#usps { background: white; }
.usps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.usp-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem; background: var(--off-white); border: 1px solid var(--border);
  border-radius: 16px; transition: transform 0.2s;
}
.usp-card:hover { transform: translateY(-3px); }
.usp-icon { font-size: 1.6rem; flex-shrink: 0; }
.usp-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.3rem; }
.usp-card p { font-size: 0.85rem; color: var(--text-mid); font-weight: 300; line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--green-dark); padding: 5rem 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
}
.cta-band h2 { font-size: clamp(1.6rem,3vw,2.4rem); color: white; max-width: 520px; }
.cta-band p { color: rgba(255,255,255,0.6); font-weight:300; margin-top:0.5rem; font-size:0.95rem; }
.btn-accent {
  background: var(--accent); color: var(--green-dark); padding: 1rem 2.2rem;
  border-radius: 50px; text-decoration: none; font-weight: 700;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(118,196,66,0.4); }

/* ── SERVICES (Leistungen) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px var(--shadow);
  border-color: var(--green-light);
}
.service-card.featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.2rem;
}
.service-card.featured .service-icon {
  background: rgba(255,255,255,0.15);
}
.service-icon svg { width: 26px; height: 26px; fill: white; }
.service-card h3 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 0.6rem; }
.service-card.featured h3 { color: white; }
.service-card > p { font-size: 0.9rem; color: var(--text-mid); font-weight: 300; line-height: 1.7; }
.service-card.featured > p { color: rgba(255,255,255,0.75); }

.service-bullets {
  margin-top: 1.2rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.service-bullet {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.85rem; color: var(--text-mid);
}
.service-card.featured .service-bullet { color: rgba(255,255,255,0.8); }
.service-bullet::before {
  content: '\2192'; color: var(--accent); font-weight: 700; flex-shrink: 0;
}

.decision-box {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 4rem;
}
.decision-box h3 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: 1rem; }
.decision-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.5rem;
}
.decision-col h4 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent); }
.decision-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.decision-col li { font-size: 0.87rem; color: var(--text-mid); font-weight: 300; padding-left: 1rem; position: relative; }
.decision-col li::before { content: '\2713'; position: absolute; left: 0; color: var(--green-mid); font-weight: 700; }

/* ── VORGEHEN (Cycle) ── */
.cycle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 860px;
}
.cycle-step-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.cycle-step-card:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 40px var(--shadow);
}
.cycle-step-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green-mid), var(--accent));
  border-radius: 20px 0 0 20px;
}
.cycle-num-big {
  width: 60px; height: 60px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.4rem; color: white;
  flex-shrink: 0;
}
.cycle-content h3 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.cycle-content p { font-size: 0.9rem; color: var(--text-mid); font-weight: 300; line-height: 1.7; margin-bottom: 1rem; }
.cycle-details {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.cycle-detail {
  font-size: 0.83rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 0.5rem;
}
.cycle-detail::before { content: '\2713'; color: var(--green-mid); font-weight: 700; }

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.side-info {
  position: sticky; top: 6rem; align-self: start;
}
.info-card {
  background: var(--green-dark);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}
.info-card h4 { font-size: 1rem; color: var(--accent); margin-bottom: 0.8rem; }
.info-card p { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.65; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.person-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px var(--shadow);
}
.person-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 1.8rem; color: white; margin-bottom: 1.2rem;
}
.person-card h2 { font-size: 1.5rem; color: var(--green-dark); margin-bottom: 0.2rem; }
.person-role { font-size: 0.85rem; color: var(--green-mid); font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.person-bio { font-size: 0.9rem; color: var(--text-mid); font-weight: 300; line-height: 1.75; margin-bottom: 1.5rem; }
.quals { display: flex; flex-direction: column; gap: 0.5rem; }
.qual { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.84rem; color: var(--text-mid); }
.qual::before {
  content: '\2713';
  width: 18px; height: 18px;
  background: var(--green-pale); color: var(--green-mid);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.68rem; font-weight: 700;
  flex-shrink: 0; line-height: 18px; text-align: center;
}

.klemptner-intro {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
}
.klemptner-intro h2 { font-size: 1.5rem; color: var(--green-dark); margin-bottom: 1rem; }
.klemptner-intro p { font-size: 0.92rem; color: var(--text-mid); font-weight: 300; line-height: 1.75; margin-bottom: 1.2rem; }
.klemptner-quote {
  background: var(--green-pale);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.2rem;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--green-dark);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Workflows */
.workflows-section { background: var(--off-white); }
.workflows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.workflow-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.workflow-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--accent));
}
.workflow-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px var(--shadow); }
.workflow-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--green-dark); margin-bottom: 0.2rem; }
.workflow-role { font-size: 0.75rem; color: var(--green-mid); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.workflow-desc { font-size: 0.87rem; color: var(--text-mid); font-weight: 300; line-height: 1.65; margin-bottom: 1rem; }
.workflow-tool {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--green-pale); color: var(--green-mid);
  padding: 0.25rem 0.7rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
}

/* ── PREISE ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.pricing-card {
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border: 1px solid var(--border);
}
.pricing-card--a { background: var(--off-white); }
.pricing-card--b { background: var(--green-dark); color: white; border-color: var(--green-dark); }

.pricing-header { display: flex; align-items: flex-start; gap: 1rem; }
.pricing-icon { font-size: 2.2rem; flex-shrink: 0; }
.pricing-label-small {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--green-mid); margin-bottom: 0.25rem;
}
.pricing-card--b .pricing-label-small { color: var(--accent); }
.pricing-card h2 { font-size: 1.3rem; color: var(--green-dark); margin: 0; }
.pricing-card--b h2 { color: white; }

.pricing-desc { font-size: 0.9rem; color: var(--text-mid); font-weight: 300; line-height: 1.7; }
.pricing-card--b .pricing-desc { color: rgba(255,255,255,0.7); }

.pricing-includes { display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.87rem; color: var(--text-mid);
}
.pricing-card--b .pricing-item { color: rgba(255,255,255,0.82); }
.pricing-item::before { content: '\2192'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.pricing-highlight {
  background: var(--green-pale);
  border-left: 3px solid var(--accent);
  padding: 0.8rem 1rem;
  border-radius: 0 10px 10px 0;
  font-size: 0.83rem;
  color: var(--green-dark);
  font-style: italic;
}
.pricing-card--b .pricing-highlight {
  background: rgba(118,196,66,0.12);
  color: rgba(255,255,255,0.85);
}

.pricing-cta {
  display: block; text-align: center;
  background: var(--green-mid); color: white;
  padding: 0.9rem 1.5rem; border-radius: 50px;
  text-decoration: none; font-weight: 600;
  font-size: 0.9rem; margin-top: auto;
  transition: background 0.2s, transform 0.2s;
}
.pricing-cta:hover { background: var(--green-dark); transform: translateY(-2px); }
.pricing-cta--accent { background: var(--accent); color: var(--green-dark); }
.pricing-cta--accent:hover { background: #8fd44e; }

.note-bar {
  background: var(--green-pale); border: 1px solid var(--green-light);
  border-radius: 14px; padding: 1.2rem 2rem;
  text-align: center; font-size: 0.9rem; color: var(--green-dark); font-weight: 500;
  margin-bottom: 4rem;
}

.faq { max-width: 720px; }
.faq h2 { font-size: 1.8rem; color: var(--green-dark); margin-bottom: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.faq-item h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.88rem; color: var(--text-mid); font-weight: 300; line-height: 1.7; }

/* ── KONTAKT ── */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.kontakt-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.78rem; color: var(--text-light); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(45,106,53,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  background: var(--green-mid); color: white;
  border: none; padding: 1rem 2rem;
  border-radius: 50px; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-2px); }

.kontakt-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; background: var(--off-white); border: 1px solid var(--border);
  border-radius: 14px;
}
.info-icon {
  width: 42px; height: 42px; background: var(--green-mid);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; fill: white; }
.info-text h4 { font-size: 0.8rem; color: var(--text-light); font-weight: 600; margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.06em; }
.info-text p { font-size: 0.92rem; color: var(--text-dark); font-weight: 400; }
.info-text a { color: var(--green-mid); text-decoration: none; }
.info-text a:hover { text-decoration: underline; }

.was-passiert {
  background: var(--green-dark); color: white;
  border-radius: 18px; padding: 1.8rem;
}
.was-passiert h4 { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
.was-step {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.8);
  padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.was-step:last-child { border-bottom: none; }
.was-num {
  width: 22px; height: 22px; background: var(--accent); color: var(--green-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}

/* ── FORM MESSAGE ── */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form-message--success {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  color: var(--green-dark);
}
.form-message--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* ── FOOTER ── */
.pw-footer {
  background: #0f2412; padding: 2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { font-family: 'Outfit', sans-serif; font-weight: 800; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pw-nav { padding: 1rem 1.5rem; }
  .nav-links { 
    display: none; 
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; 
    padding: 1rem 1.5rem; gap: 0.8rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .pw-section { padding: 4rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .tools-bar { padding: 1rem 1.5rem; gap: 1rem; }
  .hero { grid-template-columns:1fr; padding:7rem 1.5rem 3rem; }
  .hero-visual { display: none; }
  .cta-band { flex-direction:column; padding:3rem 1.5rem; text-align:center; }
  .team-grid { grid-template-columns: 1fr; gap: 2rem; }
  .two-col-layout { grid-template-columns: 1fr; }
  .side-info { position: static; }
  .cycle-step-card { grid-template-columns: 50px 1fr; gap: 1rem; }
  .cycle-num-big { width: 44px; height: 44px; font-size: 1.1rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .kontakt-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .decision-grid { grid-template-columns: 1fr; }
  .pw-footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
