/* HB Studio – Shared Styles */
/* Farben: BCG Dunkelgrün #1B4332 */

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

:root {
  --gruen:      #1B4332;
  --gruen-mid:  #2D6A4F;
  --gruen-hell: #52B788;
  --gruen-bg:   #F0F7F4;
  --gruen-lt:   #D8EDDF;
  --weiss:      #FFFFFF;
  --grau-d:     #1A1A1A;
  --grau-m:     #4A4A4A;
  --grau-l:     #6B6B6B;
  --grau-bg:    #F8F8F6;
  --border:     #D0E4D9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400; color: var(--grau-d); background: var(--weiss); overflow-x: hidden; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--weiss); border-bottom: 1.5px solid var(--gruen); padding: 0 60px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gruen); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.logo-mark span:first-child { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; color: var(--gruen); line-height: 1; }
.logo-mark span:last-child { font-size: 7px; color: var(--gruen); letter-spacing: 1px; line-height: 1; }
.logo-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--gruen); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--grau-m); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gruen); }
.nav-cta { background: var(--gruen); color: #FFFFFF !important; border: none; padding: 11px 22px; border-radius: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--gruen-mid); }

/* BUTTONS */
.btn-primary { background: var(--gruen); color: var(--weiss); border: none; padding: 13px 26px; border-radius: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: var(--gruen-mid); }
.btn-secondary { background: transparent; color: var(--gruen); border: 2px solid var(--gruen); padding: 11px 26px; border-radius: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-secondary:hover { background: var(--gruen); color: var(--weiss); }
.btn-white { background: var(--weiss); color: var(--gruen); border: none; padding: 13px 26px; border-radius: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-outline-white { background: transparent; color: var(--weiss); border: 2px solid rgba(255,255,255,0.5); padding: 11px 26px; border-radius: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s; }
.btn-outline-white:hover { border-color: var(--weiss); }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow { font-size: 12px; font-weight: 600; color: var(--gruen-hell); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--gruen); margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--grau-l); font-weight: 300; max-width: 500px; margin: 0 auto; line-height: 1.65; }

/* PAGE HERO (Unterseiten) */
.page-hero { background: var(--gruen); padding: 70px 60px; }
.page-hero-badge { display: inline-block; background: rgba(255,255,255,0.15); color: var(--weiss); font-size: 11px; font-weight: 600; padding: 4px 14px; border-radius: 20px; margin-bottom: 18px; letter-spacing: 0.5px; }
.page-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 700; color: var(--weiss); line-height: 1.2; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); font-weight: 300; max-width: 560px; line-height: 1.7; margin-bottom: 28px; }

/* TRUST BAR */
.trust-bar { background: var(--weiss); border-bottom: 1px solid var(--border); padding: 18px 60px; display: flex; align-items: center; gap: 36px; }
.trust-label { font-size: 12px; color: var(--grau-l); font-weight: 500; white-space: nowrap; }
.trust-items { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grau-m); font-weight: 500; }
.trust-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gruen-hell); }

/* CARDS */
.card { border: 1.5px solid var(--border); border-radius: 16px; padding: 30px 26px; background: var(--weiss); transition: all 0.25s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gruen); transform: scaleX(0); transition: transform 0.25s; }
.card:hover { border-color: var(--gruen); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(27,67,50,0.1); }
.card:hover::before { transform: scaleX(1); }
.card-icon { width: 50px; height: 50px; background: var(--gruen-bg); border-radius: 12px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon svg { width: 22px; height: 22px; stroke: var(--gruen); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-price { display: inline-block; background: var(--gruen-bg); color: var(--gruen); border: 1px solid var(--border); font-size: 11px; font-weight: 600; padding: 3px 12px; border-radius: 20px; margin-bottom: 10px; }
.card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--gruen); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--grau-m); line-height: 1.65; margin-bottom: 18px; font-weight: 300; }
.card-link { font-size: 14px; color: var(--gruen); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.card-link:hover { gap: 10px; }

/* CTA SECTION */
.cta-section { background: var(--gruen); padding: 70px 60px; text-align: center; }
.cta-section h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--weiss); margin-bottom: 14px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.72); font-weight: 300; margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: #111; padding: 48px 60px 30px; }
.footer-top { display: grid; grid-template-columns: 1fr repeat(3, auto); gap: 56px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .logo-name { font-size: 18px; color: var(--gruen-hell); display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); font-weight: 300; line-height: 1.65; max-width: 210px; }
.footer-col h4 { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 9px; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: var(--gruen-hell); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); font-weight: 300; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gruen-hell); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 52px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 21px; left: calc(16.666% + 18px); right: calc(16.666% + 18px); height: 1.5px; background: var(--border); }
.step { text-align: center; }
.step-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--gruen); color: var(--weiss); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; position: relative; z-index: 1; }
.step h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--gruen); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--grau-m); line-height: 1.65; font-weight: 300; }

/* NETLIFY FORM */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--grau-m); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; color: var(--grau-d); background: var(--weiss); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gruen); }
.form-group textarea { min-height: 120px; resize: vertical; }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 48px 20px; }
  .hero-visual { display: none; }
  .piller-section, .how-section, .team-section, .cta-section { padding: 52px 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar { padding: 16px 20px; flex-wrap: wrap; }
  .page-hero { padding: 48px 20px; }
  .page-hero h1 { font-size: 32px; }
}
