/* ═══════════════════════════════════════════════════════
   GartenDesk — Landing Page CSS
   Frischgrün #16A34A | Erdbraun #78350F | Orange #FB923C
   ═══════════════════════════════════════════════════════ */
:root {
  --gruen:   #16A34A;
  --gruen-d: #052E16;
  --gruen-m: #15803D;
  --gruen-h: #4ADE80;
  --gruen-l: #F0FDF4;
  --braun:   #78350F;
  --braun-l: #FEF3C7;
  --orange:  #FB923C;
  --orange-d: #C2410C;
  --white:   #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100:#F3F4F6;
  --gray-200:#E5E7EB;
  --gray-500:#6B7280;
  --gray-700:#374151;
  --gray-900:#111827;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius:  12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 900; color: var(--gruen-d);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gruen); }
.nav-logo sup {
  font-size: 0.55rem; font-weight: 700; color: var(--orange);
  vertical-align: super; text-transform: uppercase; letter-spacing: 0.5px;
}
.nav-links { display: flex; list-style: none; gap: 0.3rem; align-items: center; }
.nav-links li a {
  padding: 0.4rem 0.85rem; font-size: 0.9rem; font-weight: 500;
  color: var(--gray-700); border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-links li a:hover { background: var(--gruen-l); color: var(--gruen-m); }
.nav-cta {
  background: var(--gruen) !important; color: #fff !important;
  padding: 0.45rem 1.1rem !important; border-radius: 8px !important;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gruen-m) !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--gruen-d) 0%, #0F4C25 50%, #1A6335 100%);
  color: #fff;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #86efac; font-size: 0.82rem; font-weight: 600;
  padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
  position: relative;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 1.2rem;
  position: relative;
}
.hero h1 em { color: var(--gruen-h); font-style: normal; }
.hero-sub {
  max-width: 680px; margin: 0 auto 2rem;
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  position: relative;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem; position: relative;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: #fff;
  padding: 0.8rem 2rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 15px rgba(251,146,60,0.4);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 0.78rem 1.8rem; border-radius: 10px;
  font-weight: 600; font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.hero-stat-num { font-size: 2rem; font-weight: 900; color: var(--gruen-h); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 0.1rem; }

/* ── PAIN ── */
.pain-section { padding: 5rem 0; background: var(--gray-50); }
.section-label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gruen); margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900; letter-spacing: -0.5px;
  color: var(--gruen-d); margin-bottom: 0.8rem;
}
.section-sub { color: var(--gray-500); max-width: 680px; font-size: 1.05rem; margin-bottom: 2.5rem; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: #fff; border-radius: var(--radius); padding: 1.6rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow); transition: box-shadow 0.2s;
}
.pain-card:hover { box-shadow: var(--shadow-lg); }
.pain-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--gruen-d); margin-bottom: 0.5rem; }
.pain-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.5; }

/* ── FEATURES ── */
.features-section { padding: 5rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  border: 2px solid var(--gray-200);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover { border-color: var(--gruen); box-shadow: var(--shadow-lg); }
.feature-num {
  display: inline-block; width: 32px; height: 32px; border-radius: 8px;
  background: var(--gruen-l); color: var(--gruen-m);
  font-size: 0.75rem; font-weight: 800; line-height: 32px; text-align: center;
  margin-bottom: 0.8rem;
}
.feature-icon { font-size: 2.4rem; margin-bottom: 0.8rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--gruen-d); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.5; }
.feature-list { list-style: none; margin-top: 0.8rem; display: flex; flex-direction: column; gap: 0.35rem; }
.feature-list li { font-size: 0.85rem; color: var(--gray-700); }
.feature-list li::before { content: '✓ '; color: var(--gruen); font-weight: 700; }

/* ── COMPLIANCE ── */
.compliance-section {
  background: linear-gradient(135deg, var(--braun-l) 0%, #fff8ee 100%);
  padding: 4rem 0;
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
}
.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 768px) { .compliance-grid { grid-template-columns: 1fr; } }
.compliance-card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  border-left: 4px solid var(--braun);
}
.compliance-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--braun); margin-bottom: 0.4rem; }
.compliance-card p { font-size: 0.88rem; color: var(--gray-500); }

/* ── PRICING ── */
.pricing-section { padding: 5rem 0; background: var(--gruen-d); color: #fff; }
.pricing-section .section-title { color: #fff; }
.pricing-section .section-sub { color: rgba(255,255,255,0.65); }
.pricing-section .section-label { color: var(--gruen-h); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 2rem auto 0; } }
.pricing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: background 0.2s, transform 0.2s;
}
.pricing-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.pricing-card.featured {
  background: var(--orange); border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(251,146,60,0.35);
  transform: scale(1.03);
}
.pricing-card.featured:hover { background: var(--orange-d); }
.pricing-tier { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: 0.3rem; }
.pricing-price span { font-size: 1rem; font-weight: 500; opacity: 0.7; }
.pricing-desc { font-size: 0.85rem; opacity: 0.7; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-features li { font-size: 0.9rem; }
.pricing-features li::before { content: '✓ '; font-weight: 700; }
.pricing-cta {
  display: block; text-align: center; margin-top: 1.5rem;
  background: rgba(255,255,255,0.2); color: #fff;
  padding: 0.7rem 1.5rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s;
}
.pricing-cta:hover { background: rgba(255,255,255,0.35); }
.pricing-card.featured .pricing-cta { background: rgba(0,0,0,0.2); }
.pricing-card.featured .pricing-cta:hover { background: rgba(0,0,0,0.35); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 5rem 0; background: var(--gray-50); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); position: relative;
}
.testi-quote {
  font-size: 3rem; color: var(--gruen); opacity: 0.3;
  line-height: 1; margin-bottom: 0.5rem; font-family: Georgia, serif;
}
.testi-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.6; font-style: italic; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gruen-l); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--gruen-d); }
.testi-role { font-size: 0.78rem; color: var(--gray-500); }
.stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 0.8rem; }

/* ── CTA ── */
.cta-section {
  padding: 5rem 1.5rem; text-align: center;
  background: linear-gradient(135deg, var(--gruen) 0%, var(--gruen-m) 100%);
  color: #fff;
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 1rem; }
.cta-section p { font-size: 1.05rem; opacity: 0.85; max-width: 560px; margin: 0 auto 2rem; }
.cta-section .btn-primary { background: #fff; color: var(--gruen-d); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.cta-section .btn-primary:hover { background: var(--gruen-l); }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.5); }

/* ── FOOTER ── */
footer {
  background: var(--gruen-d); color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap;
}
.footer-logo { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 0.4rem; }
.footer-logo span { color: var(--gruen-h); }
.footer-tagline { font-size: 0.82rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1160px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}

/* ── Responsive nav ── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .hero { padding: 3.5rem 1rem 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.5rem; }
}

/* ── Utility ── */
.text-gruen { color: var(--gruen); }
.text-orange { color: var(--orange); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
