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

/* ── Brand Tokens (source: Mama mit Mitte Style Board) ── */
:root {
  /* Brand Palette */
  --bg-beige:       #FAF1E4;
  --bg-beige-mid:   #F5E8D4;
  --brand-terra:    #D36C4E;
  --brand-terra-dk: #B85A3D;
  --accent-teal:    #2C95B1;
  --accent-teal-dk: #227A93;
  --accent-yellow:  #FFB656;
  --accent-yellow-dk: #E5A030;
  --text-brown:     #3E2C23;
  --text-muted:     #7A5C4F;
  --white:          #FFFFFF;

  /* Shadows (warm-tinted) */
  --shadow-sm: 0 2px 8px rgba(211,108,78,0.08);
  --shadow-md: 0 8px 24px rgba(211,108,78,0.12);
  --shadow-lg: 0 20px 48px rgba(62,44,35,0.15);

  /* Radii */
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   30px;
  --radius-pill: 50px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text-brown);
  background-color: var(--bg-beige);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--text-brown); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--brand-terra); }
h3 { font-size: 1.35rem; color: var(--text-brown); }
h4 { font-size: 1.05rem; color: var(--text-brown); }

p { margin-bottom: 1.2rem; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

a {
  text-decoration: none;
  color: var(--accent-teal);
  transition: color 0.25s ease;
}
a:hover { color: var(--brand-terra); }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 0; }

/* ── Floating Navbar ── */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1160px;
  background: rgba(250, 241, 228, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(211, 108, 78, 0.15);
  border-radius: var(--radius-pill);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-brown);
  letter-spacing: 0.01em;
}
.navbar-brand span { color: var(--brand-terra); }

.navbar-cta {
  background: var(--brand-terra);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(211,108,78,0.3);
}
.navbar-cta:hover { background: var(--brand-terra-dk); transform: translateY(-1px); color: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--brand-terra);
  color: var(--white);
  padding: 1rem 2.4rem;
  border-radius: var(--radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(211,108,78,0.3);
}
.btn:hover { background: var(--brand-terra-dk); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(211,108,78,0.38); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--brand-terra);
  border: 2px solid var(--brand-terra);
  box-shadow: none;
}
.btn-outline:hover { background: var(--brand-terra); color: var(--white); box-shadow: 0 4px 16px rgba(211,108,78,0.25); }

.btn-yellow {
  background: var(--accent-yellow);
  color: var(--text-brown);
  box-shadow: 0 4px 16px rgba(255,182,86,0.3);
}
.btn-yellow:hover { background: var(--accent-yellow-dk); color: var(--text-brown); box-shadow: 0 8px 24px rgba(255,182,86,0.38); }

.btn-teal {
  background: var(--accent-teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(44,149,177,0.3);
}
.btn-teal:hover { background: var(--accent-teal-dk); color: var(--white); box-shadow: 0 8px 24px rgba(44,149,177,0.38); }

/* ── Section Labels ── */
.section-label {
  text-align: center;
  color: var(--brand-terra);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-title { text-align: center; margin-bottom: 0.75rem; }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

/* ── Hero ── */
.hero {
  display: flex;
  align-items: center;
  gap: 5rem;
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-content { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(211,108,78,0.1);
  color: var(--brand-terra);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(211,108,78,0.2);
}

.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content p {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image { flex: 1; position: relative; }

.hero-image-inner {
  border-radius: 40% 60% 60% 40% / 50% 50% 60% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-image-inner img { width: 100%; height: 100%; object-fit: cover; }

.hero-blob {
  position: absolute;
  inset: -5%;
  background: radial-gradient(ellipse, rgba(211,108,78,0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-blob 6s ease-in-out infinite;
}
@keyframes pulse-blob {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.08); opacity: 1; }
}

.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; }

.stat-pill {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(211,108,78,0.12);
  text-align: center;
}
.stat-pill strong { display: block; font-family: 'Quicksand', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--brand-terra); }
.stat-pill span   { font-size: 0.8rem; color: var(--text-muted); }

/* ── Teasers ── */
.teasers-section { padding: 4rem 0 6rem; }

.teasers { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.teaser-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(211,108,78,0.08);
  border-top: 4px solid var(--accent-teal);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.teaser-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.teaser-icon {
  width: 56px; height: 56px;
  background: rgba(44,149,177,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
}
.teaser-card h3 { color: var(--accent-teal); margin-bottom: 0.75rem; }
.teaser-card p  { color: var(--text-muted); margin-bottom: 0; font-size: 0.95rem; }

/* ── Philosophy / About ── */
.philosophy-section { background: var(--white); }

.philosophy-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.philosophy-image {
  flex: 1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 480px;
}
.philosophy-image img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-text { flex: 1; }

.icon-list { margin-top: 2rem; }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--bg-beige);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-yellow);
}
.icon-list .lucide { color: var(--brand-terra); flex-shrink: 0; width: 24px; height: 24px; margin-top: 2px; }

/* ── Pain Points ── */
.pain-section { background: var(--bg-beige); }

.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.pain-text p {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent-yellow);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.benefit-list { display: flex; flex-direction: column; gap: 1rem; }

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(211,108,78,0.07);
  transition: transform 0.2s ease;
  cursor: default;
}
.benefit-item:hover { transform: translateX(4px); }

.benefit-icon {
  width: 40px; height: 40px;
  background: rgba(44,149,177,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-teal);
  flex-shrink: 0;
}
.benefit-item h4 { font-size: 1rem; color: var(--text-brown); margin-bottom: 0.3rem; }
.benefit-item p  { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* ── Transformation ── */
.transformation-section { background: var(--white); text-align: center; }

.transformation-circles {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.transformation-circles::before {
  content: '';
  position: absolute;
  top: 90px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-yellow), var(--brand-terra));
  z-index: 0;
}
.circle-step { flex: 1; max-width: 300px; position: relative; z-index: 1; }

.circle {
  width: 180px; height: 180px;
  background: var(--white);
  border-radius: 50%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--bg-beige-mid);
  box-shadow: var(--shadow-md);
  color: var(--brand-terra);
  transition: all 0.3s ease;
  cursor: default;
}
.circle:hover { border-color: var(--accent-yellow); box-shadow: var(--shadow-lg); transform: scale(1.06); }
.circle .lucide { width: 40px; height: 40px; margin-bottom: 0.6rem; }
.circle strong { font-size: 0.9rem; color: var(--text-brown); text-align: center; line-height: 1.3; }

.circle-step > p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.circle-quote { color: var(--accent-teal); font-weight: 700; font-size: 0.9rem; font-style: italic; }

.forest-image {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 420px;
}
.forest-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Products ── */
.products-section { background: var(--bg-beige); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(211,108,78,0.08);
  border-top: 4px solid var(--brand-terra);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card h3 { color: var(--brand-terra); margin-bottom: 0.5rem; }
.product-card .card-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }

.product-card.featured {
  background: var(--text-brown);
  color: rgba(255,255,255,0.9);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  border-top-color: var(--accent-yellow);
}
.product-card.featured h3  { color: var(--accent-yellow); }
.product-card.featured p   { color: rgba(255,255,255,0.8); }
.product-card.featured li  { color: rgba(255,255,255,0.85); }

.featured-badge {
  display: inline-block;
  background: var(--brand-terra);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.featured-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.featured-box p { color: rgba(255,255,255,0.9); font-weight: 600; margin-bottom: 1rem; }

.check-list { margin: 1.25rem 0; flex-grow: 1; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.check-list .lucide { color: var(--accent-teal); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.product-card.featured .check-list .lucide { color: var(--accent-yellow); }

.checkbox-wrap {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s;
}
.checkbox-wrap:hover { background: rgba(255,255,255,0.15); }
.checkbox-wrap input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--brand-terra); }

/* ── CTA Section ── */
.cta-section { background: var(--text-brown); text-align: center; }
.cta-section h2  { color: var(--white); }
.cta-section p   { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 2.5rem; }

/* ── Footer ── */
footer {
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(62,44,35,0.1);
}
footer p       { margin-bottom: 0.5rem; }
footer strong  { color: var(--brand-terra); }

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { gap: 3rem; }
  .philosophy-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .navbar { width: calc(100% - 2rem); padding: 0.7rem 1.25rem; }

  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 5rem;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-content p  { max-width: 100%; }
  .hero-buttons    { justify-content: center; }
  .hero-stats      { justify-content: center; }
  .hero-image-inner { aspect-ratio: 4/3; }

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

  .philosophy-inner { flex-direction: column; gap: 2.5rem; }
  .philosophy-image { min-height: 320px; border-radius: var(--radius-lg); }

  .pain-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .transformation-circles { flex-direction: column; align-items: center; gap: 3rem; }
  .transformation-circles::before { display: none; }

  .product-card.featured { grid-template-columns: 1fr; gap: 2rem; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }
}

@media (max-width: 480px) {
  .hero-stats  { flex-direction: column; align-items: center; gap: 1rem; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ── Solution / Lösung + Vorgehen ── */
.solution-section { background: var(--white); }

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--bg-beige);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.approach-list .lucide {
  color: var(--brand-terra);
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
}

.approach-closing {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--brand-terra);
  font-size: 0.95rem;
}

/* ── Nutzenbetonung ── */
.nutzung-section {
  background: var(--bg-beige-mid);
  padding: 5rem 0;
}
.nutzung-section h2 {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-brown);
}

/* ── Product card icon ── */
.product-card-icon {
  width: 64px; height: 64px;
  background: rgba(211,108,78,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-terra);
  margin-bottom: 1.5rem;
}

.product-webinar { border-top-color: var(--accent-teal); }

.product-closing {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── Responsive additions ── */
@media (max-width: 768px) {
  .solution-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .nutzung-section h2 { font-size: 1.5rem; }
}
