/* =========================
   Base
========================= */
:root{
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #4a4a4a;
  --line: rgba(0,0,0,.14);

  --container: 1320px;
  --radius: 999px;

  --shadow: 0 14px 30px rgba(0,0,0,.12);
  --shadow-soft: 0 10px 22px rgba(0,0,0,.08);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

/* =========================
   Buttons
========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}

.btn-primary{
  background: #000;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost{
  background: transparent;
  border-color: rgba(0,0,0,.25);
  color: #000;
}

.btn-ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,.45);
}

/* =========================
   Header
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.header-inner{
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.brand-mark{
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 20px;
}

.nav{
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
}

.nav a{
  font-weight: 650;
  font-size: 16px;
  opacity: .9;
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover{
  border-bottom-color: rgba(0,0,0,.35);
}

.burger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 10px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.burger span{
  height: 2px;
  background: #000;
  border-radius: 10px;
  opacity: .85;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo{
  height: 28px;     /* Größe */
  width: auto;
  display: block;
}

/* =========================
   HERO (Sage-like)
========================= */
.hero--dark{
  background: #050505;
  color: #fff;
  padding: 90px 0 70px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
}

.hero-eyebrow{
  font-weight: 800;
  letter-spacing: .02em;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
  font-size: 25px;
}

.hero-title--dark{
  color: #fff;
  text-shadow: none;
  font-size: 35px;
  text-align: left;
}

.hero-subtitle--dark{
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-top: 18px;
  font-size: 20px;
  font-weight: 600;
}

.hero-actions--left{
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Buttons im Sage-Stil */
.btn-accent{
  background: #15408d;          /* blau */
  color: #000000;
  border: 1px solid transparent;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.btn-accent:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
}

.btn-outline-light{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-outline-light:hover{
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
}

/* Social proof row */
.hero-proof{
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-weight: 650;
  font-size: 13px;
}
.hero-proof .dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: #19d44b;
  box-shadow: 0 0 0 6px rgba(25,212,75,.14);
}

/* RIGHT side image/card */
.hero-right{
  position: relative;
  display: grid;
  justify-items: end;
  gap: 14px;
}

.hero-mock{
  width: min(560px, 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}

.hero-mock img{
  width: 100%;
  height: auto;
  display: block;
}

/* optional badges */
.hero-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mini-badge{
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.8);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: rgba(255,255,255,.04);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .hero-right{
    justify-items: start;
  }
  .hero-badges{
    justify-content: flex-start;
  }
}

/* =========================
   Split Layout (About)
========================= */
.section{
  padding: 50px 0;
}

.split-inner{
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
}

.media-placeholder{
  width: 100%;
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(0,0,0,.14);
  background: radial-gradient(900px 500px at 50% 35%, rgba(0,0,0,.08), transparent 55%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.media-placeholder span{
  font-weight: 800;
  color: rgba(0,0,0,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 25px;
}

.split-content .btn{
  margin-top: 26px;
}

/* =========================
   Cards
========================= */


.section-head{
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card{
  border: 1px solid rgba(0,0,0,.12);
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0,0,0,.2);
}

.card-title{
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.card-text{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.card img{
  display: block;
  margin: 0 auto 14px;  /* mittig + etwas Abstand zur Überschrift */
}

.card-title{
  font-size: 18px;   /* vorher 16 */
}

.card-text{
  font-size: 15.5px; /* vorher 14 */
  line-height: 1.6;
}
.card img{
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
}

/* =========================
   Contact
========================= */
/* Privacy-Checkbox: Text links, Häkchen rechts */
.form .form-row.privacy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form .form-row.privacy-row label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.form .form-row.privacy-row input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
/* Checkbox-Row schön ausrichten */
.form .privacy-row {
  margin-top: 8px;
  margin-bottom: 18px; /* Abstand zum Absenden-Button */
}

.form .privacy-label {
  display: flex;
  align-items: flex-start; /* Checkbox oben am Text ausrichten */
  gap: 20px;              /* Abstand Checkbox <-> Text */
  line-height: 1.35;
}

.form .privacy-label input[type="checkbox"] {
  margin-top: 3px;  /* optisch mittig zum ersten Textline */
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.contact-inner{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(26px, 4vw, 70px);
  align-items: start;
}

.contact-badges{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge{
  border: 1px solid rgba(0,0,0,.16);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(0,0,0,.75);
}

.form{
  width: 100%;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field{
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

label span{
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(0,0,0,.5);
  margin-left: 6px;
}

input, textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.20);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  font-weight: 600;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  background: #fff;
}

textarea{
  border-radius: 16px;
  resize: vertical;
  min-height: 140px;
}

input:focus, textarea:focus{
  border-color: rgba(0,0,0,.55);
  box-shadow: 0 0 0 4px rgba(0,0,0,.08);
}

.form-note{
  margin-top: 12px;
  color: rgba(0,0,0,.55);
  font-size: 12px;
  font-weight: 600;
}

/* =========================
   Footer
========================= */
.site-footer{
  background: #cfcfcf;
  padding: 70px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}

.footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.footer-title{
  font-weight: 950;
  letter-spacing: .05em;
  font-size: 18px;
  text-transform: uppercase;
}

.footer-sub{
  margin-top: 10px;
  color: rgba(0,0,0,.55);
  font-weight: 650;
  font-size: 12px;
}

.footer-head{
  font-weight: 950;
  letter-spacing: .04em;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-text{
  margin-top: 10px;
  color: rgba(0,0,0,.65);
  font-weight: 650;
  font-size: 13px;
}

.footer-links{
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.footer-links a{
  color: rgba(0,0,0,.75);
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
  border-bottom: 2px solid transparent;
}

.footer-links a:hover{
  border-bottom-color: rgba(0,0,0,.35);
}
.footer-brand{
  display: flex;
  align-items: center;  /* vertikal mittig */
  gap: 10px;            /* Abstand zwischen Logo & Text */
}

.footer-logo{
  height: 28px;         /* nach Wunsch */
  width: auto;
  display: block;
}

.footer-name{
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .header-inner{
    grid-template-columns: 1fr auto auto;
  }
  .nav{
    display: none;
    position: absolute;
    top: 76px;
    right: 28px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 180px;
  }
  .nav.is-open{ display: flex; }
  .burger{ display: inline-flex; }

  .split-inner,
  .contact-inner{
    grid-template-columns: 1fr;
  }

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

  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }

  .hero-content{
    width: min(var(--container), calc(100% - 56px));
    margin-inline: auto;
  }
}

@media (max-width: 520px){
  .container{
    width: calc(100% - 34px);
  }

  .hero-media{
    width: calc(100% - 34px);
    height: 54vh;
  }

  .form-row{
    grid-template-columns: 1fr;
  }

  .footer-inner{
    grid-template-columns: 1fr;
  }
}




/* Stufen-Hintergründe */
.section-bg-1{ background: #f7f7f7; } /* sehr hell */
.section-bg-2{ background: #efefef; }
.section-bg-3{ background: #e5e5e5; }
.section-bg-4{ background: #dbdbdb; } /* am dunkelsten */
