/* DachDesk — Ziegelrot #C0392B, Dunkelgrau #374151, Sandgelb #F5CBA7 */
:root {
  --rot:    #C0392B;
  --rot-d:  #a93226;
  --grau:   #374151;
  --grau-l: #6B7280;
  --sand:   #F5CBA7;
  --sand-l: #FDF3E7;
  --weiss:  #FFFFFF;
  --bg:     #F9FAFB;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(55,65,81,.10);
  --radius: 10px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Segoe UI',system-ui,sans-serif;color:var(--grau);background:var(--weiss);line-height:1.6}

/* NAVBAR */
.navbar{position:sticky;top:0;z-index:100;background:var(--weiss);border-bottom:2px solid var(--rot);box-shadow:0 2px 8px rgba(0,0,0,.08)}
.nav-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;height:68px}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.logo-icon{width:40px;height:40px;background:var(--rot);border-radius:8px;display:grid;place-items:center;color:#fff;font-size:20px}
.logo-text{font-size:1.5rem;font-weight:800;color:var(--grau);letter-spacing:-.5px}
.logo-text span{color:var(--rot)}
.nav-links{display:flex;gap:28px;list-style:none}
.nav-links a{text-decoration:none;color:var(--grau-l);font-weight:500;font-size:.95rem;transition:color .2s}
.nav-links a:hover{color:var(--rot)}
.nav-cta{background:var(--rot);color:#fff;padding:10px 22px;border-radius:6px;text-decoration:none;font-weight:700;font-size:.9rem;transition:background .2s}
.nav-cta:hover{background:var(--rot-d)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;border:none;background:none;padding:4px}
.hamburger span{width:24px;height:2px;background:var(--grau);border-radius:2px}

/* HERO */
.hero{background:linear-gradient(135deg,var(--grau) 0%,#1f2937 100%);color:#fff;padding:96px 24px 80px;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='%23C0392B' fill-opacity='0.08'%3E%3Cpolygon points='30 0 60 30 30 60 0 30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.hero-inner{max-width:800px;margin:0 auto;position:relative}
.hero-badge{display:inline-block;background:rgba(192,57,43,.25);border:1px solid rgba(192,57,43,.5);color:var(--sand);padding:6px 16px;border-radius:20px;font-size:.85rem;font-weight:600;margin-bottom:20px;letter-spacing:.5px}
.hero h1{font-size:clamp(2rem,5vw,3.2rem);font-weight:900;line-height:1.15;margin-bottom:20px}
.hero h1 span{color:var(--rot)}
.hero-sub{font-size:1.2rem;color:#d1d5db;max-width:600px;margin:0 auto 36px}
.hero-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.btn-primary{background:var(--rot);color:#fff;padding:14px 32px;border-radius:8px;text-decoration:none;font-weight:700;font-size:1.05rem;border:none;cursor:pointer;transition:background .2s,transform .1s}
.btn-primary:hover{background:var(--rot-d);transform:translateY(-1px)}
.btn-outline{background:transparent;color:#fff;padding:14px 32px;border-radius:8px;text-decoration:none;font-weight:700;font-size:1.05rem;border:2px solid rgba(255,255,255,.4);cursor:pointer;transition:border-color .2s}
.btn-outline:hover{border-color:#fff}
.hero-stats{display:flex;gap:40px;justify-content:center;margin-top:56px;flex-wrap:wrap}
.hero-stat{text-align:center}
.hero-stat strong{display:block;font-size:2rem;font-weight:900;color:var(--sand)}
.hero-stat span{font-size:.9rem;color:#9CA3AF}

/* SECTIONS */
section{padding:80px 24px}
.section-inner{max-width:1200px;margin:0 auto}
.section-label{font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--rot);margin-bottom:10px}
.section-title{font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:800;color:var(--grau);margin-bottom:16px;line-height:1.2}
.section-sub{font-size:1.05rem;color:var(--grau-l);max-width:560px}

/* PROBLEM */
.problem{background:var(--sand-l)}
.problem-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;margin-top:48px}
.pain-list{list-style:none;display:flex;flex-direction:column;gap:16px}
.pain-list li{display:flex;gap:14px;align-items:flex-start;padding:16px;background:#fff;border-radius:8px;border-left:4px solid #DC2626;box-shadow:0 2px 8px rgba(0,0,0,.05)}
.pain-icon{font-size:1.4rem;flex-shrink:0}
.pain-list h4{font-weight:700;margin-bottom:4px;color:var(--grau)}
.pain-list p{font-size:.9rem;color:var(--grau-l)}
.solution-box{background:linear-gradient(135deg,var(--rot),var(--rot-d));color:#fff;border-radius:12px;padding:40px;box-shadow:0 12px 40px rgba(192,57,43,.25)}
.solution-box h3{font-size:1.5rem;font-weight:800;margin-bottom:16px}
.solution-box p{opacity:.9;margin-bottom:24px;font-size:1.05rem}
.solution-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.solution-list li{display:flex;gap:10px;align-items:center;font-size:.95rem}
.solution-list li::before{content:'✓';font-weight:800;background:rgba(255,255,255,.2);border-radius:50%;width:22px;height:22px;display:grid;place-items:center;flex-shrink:0}

/* MODULES */
.modules{background:#fff}
.modules-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:24px;margin-top:48px}
.module-card{border:1px solid var(--border);border-radius:var(--radius);padding:28px;transition:box-shadow .2s,transform .2s;background:#fff}
.module-card:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.module-icon{width:52px;height:52px;background:var(--sand-l);border-radius:10px;display:grid;place-items:center;font-size:1.6rem;margin-bottom:16px}
.module-card h3{font-size:1.1rem;font-weight:700;margin-bottom:8px;color:var(--grau)}
.module-card p{font-size:.9rem;color:var(--grau-l);margin-bottom:12px}
.module-tags{display:flex;flex-wrap:wrap;gap:6px}
.tag{background:var(--sand-l);color:var(--rot);padding:3px 10px;border-radius:20px;font-size:.78rem;font-weight:600}

/* COMPLIANCE */
.compliance{background:var(--grau);color:#fff}
.compliance .section-title{color:#fff}
.compliance-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;margin-top:40px}
.comp-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:24px}
.comp-card h4{font-weight:700;margin-bottom:8px;font-size:1rem;color:var(--sand)}
.comp-card p{font-size:.88rem;color:#9CA3AF;line-height:1.5}
.comp-badge{display:inline-block;background:rgba(192,57,43,.3);border:1px solid var(--rot);color:var(--sand);padding:2px 10px;border-radius:20px;font-size:.75rem;font-weight:700;margin-bottom:10px}

/* PRICING */
.pricing{background:var(--bg)}
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;margin-top:48px;max-width:900px;margin-left:auto;margin-right:auto}
.price-card{background:#fff;border:2px solid var(--border);border-radius:var(--radius);padding:32px;position:relative}
.price-card.featured{border-color:var(--rot);box-shadow:0 8px 32px rgba(192,57,43,.15)}
.featured-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--rot);color:#fff;padding:4px 16px;border-radius:20px;font-size:.8rem;font-weight:700;white-space:nowrap}
.price-tier{font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--grau-l);margin-bottom:8px}
.price-amount{font-size:2.8rem;font-weight:900;color:var(--grau);line-height:1}
.price-amount sub{font-size:1rem;font-weight:500}
.price-amount sup{font-size:1.2rem;vertical-align:super}
.price-period{color:var(--grau-l);font-size:.9rem;margin-bottom:8px}
.price-desc{font-size:.9rem;color:var(--grau-l);margin-bottom:24px;min-height:40px}
.price-features{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:28px}
.price-features li{display:flex;gap:10px;font-size:.9rem;align-items:flex-start}
.price-features li::before{content:'✓';color:var(--rot);font-weight:800;flex-shrink:0}
.price-features li.off{color:var(--grau-l);opacity:.5}
.price-features li.off::before{content:'–';color:var(--grau-l)}
.price-btn{display:block;text-align:center;padding:12px;border-radius:6px;font-weight:700;text-decoration:none;transition:background .2s}
.price-btn.primary{background:var(--rot);color:#fff}
.price-btn.primary:hover{background:var(--rot-d)}
.price-btn.secondary{background:transparent;color:var(--rot);border:2px solid var(--rot)}
.price-btn.secondary:hover{background:var(--sand-l)}

/* TESTIMONIALS */
.testimonials{background:#fff}
.testi-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;margin-top:40px}
.testi-card{border:1px solid var(--border);border-radius:var(--radius);padding:28px;position:relative}
.testi-card::before{content:'"';font-size:4rem;color:var(--sand);position:absolute;top:10px;left:20px;line-height:1;font-family:serif}
.testi-text{margin-top:20px;font-size:.95rem;color:var(--grau);line-height:1.6;font-style:italic;margin-bottom:20px}
.testi-author{display:flex;align-items:center;gap:12px}
.testi-avatar{width:44px;height:44px;background:var(--rot);border-radius:50%;display:grid;place-items:center;color:#fff;font-weight:700;font-size:1rem}
.testi-author strong{display:block;font-weight:700;color:var(--grau);font-size:.9rem}
.testi-author span{font-size:.82rem;color:var(--grau-l)}
.stars{color:#F59E0B;font-size:.9rem;margin-top:2px}

/* CTA BAND */
.cta-band{background:linear-gradient(135deg,var(--rot),#9B1C1C);color:#fff;padding:64px 24px;text-align:center}
.cta-band h2{font-size:clamp(1.5rem,4vw,2.2rem);font-weight:800;margin-bottom:12px}
.cta-band p{opacity:.85;margin-bottom:32px;font-size:1.05rem}
.cta-band-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

/* FOOTER */
footer{background:#111827;color:#9CA3AF;padding:48px 24px 24px}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer-brand .logo-text{color:#fff}
.footer-brand p{margin-top:12px;font-size:.88rem;line-height:1.6;max-width:240px}
.footer-col h4{color:#fff;font-weight:700;margin-bottom:16px;font-size:.9rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.footer-col a{color:#9CA3AF;text-decoration:none;font-size:.88rem;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:1px solid #1F2937;padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:gap;font-size:.82rem}
.footer-bottom a{color:#9CA3AF;text-decoration:none}
.footer-bottom a:hover{color:#fff}

/* RESPONSIVE */
@media(max-width:768px){
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  .problem-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
  .hero-stats{gap:24px}
}
