:root{
  --accent: #ED6B21;
  --accent2: #0F172A;
  --text: #0B1220;
  --muted: #5B6475;
  --bg: #ffffff;
  --bg2: #F6F7FA;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
.container{ width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }
.lead{ font-size: 18px; color: var(--muted); max-width: 60ch; }

.accent{ color: var(--accent); }

/* Topbar */
.topbar{
  background: #0B0F17;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}
.topbar__left, .topbar__right{ display:flex; gap: 12px; align-items:center; flex-wrap: wrap; }
.topbar__link{ opacity: 0.9; }
.topbar__link:hover{ opacity: 1; text-decoration: underline; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{ display:flex; align-items:center; gap: 12px; }
.brand__logo{
  width: 44px; height: 44px; object-fit: contain;
  border-radius: 10px;
}
.brand__text{ display:flex; flex-direction: column; line-height: 1.1; }
.brand__name{ font-weight: 800; letter-spacing: -0.02em; }
.brand__sub{ font-size: 12px; color: var(--muted); }

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
  font-weight: 600;
  color: rgba(11, 18, 32, 0.8);
}
.nav a, .nav li a{ padding: 8px 10px; border-radius: 10px; display:inline-block; }
.nav a:hover, .nav li a:hover{ background: rgba(237,107,33,0.08); color: var(--text); }
.nav ul{ list-style:none; display:flex; gap:18px; padding:0; margin:0; }

.header__actions{ display:flex; align-items:center; gap: 10px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(237,107,33,0.22);
}
.btn--primary:hover{ box-shadow: 0 14px 26px rgba(237,107,33,0.28); }
.btn--ghost{
  background: rgba(15,23,42,0.04);
  border-color: rgba(15,23,42,0.10);
}
.btn--ghost:hover{ background: rgba(15,23,42,0.07); }
.btn--full{ width: 100%; }

/* Burger */
.burger{
  display:none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.03);
  padding: 10px;
}
.burger span{
  display:block;
  height: 2px;
  background: var(--accent2);
  margin: 5px 0;
  border-radius: 2px;
}

/* Mobile menu */
.mobile{
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.97);
}
.mobile__inner{
  padding: 12px 0 18px;
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.mobile__link{
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 700;
  color: rgba(11,18,32,0.86);
}
.mobile__link:hover{ background: rgba(237,107,33,0.08); }
.mobile__cta{ display:flex; gap: 10px; margin-top: 10px; }

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  padding: 54px 0 34px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}
.hero__bg{
  position:absolute;
  inset: -140px -140px auto auto;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle at 30% 30%, rgba(237,107,33,0.24), rgba(237,107,33,0.00) 55%),
    radial-gradient(circle at 70% 70%, rgba(15,23,42,0.12), rgba(15,23,42,0.00) 60%);
  filter: blur(2px);
  transform: rotate(10deg);
  pointer-events: none;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  font-weight: 600;
  color: rgba(11,18,32,0.82);
}
.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(237,107,33,0.14);
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.hero__cta{ display:flex; gap: 10px; margin: 18px 0 18px; flex-wrap: wrap; }

.hero__meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}
.meta{
  display:flex;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.8);
}
.meta__icon{ width: 34px; height: 34px; display:grid; place-items:center; background: rgba(237,107,33,0.10); border-radius: 12px; }
.meta__title{ font-weight: 800; font-size: 14px; letter-spacing: -0.01em; }
.meta__text{ font-size: 13px; color: var(--muted); }

/* Cards */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
}
.card--glass{
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.card--soft{
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
}
.card__top{ padding: 18px 18px 0; }
.card__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  padding: 14px 18px 0;
}
.card__actions{ padding: 16px 18px 18px; display:flex; flex-direction: column; gap: 10px; }

.mini{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.02);
}
.mini__kicker{ font-size: 12px; color: var(--muted); font-weight: 700; }
.mini__value{ font-weight: 800; letter-spacing: -0.02em; }

/* Sections */
.section{ padding: 64px 0; }
.section--alt{ background: var(--bg2); border-top: 1px solid rgba(15,23,42,0.06); border-bottom: 1px solid rgba(15,23,42,0.06); }
.section__head{ margin-bottom: 22px; }
.section__head h2{
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
}
.section__head p{ margin: 0; }

/* Grid */
.grid{ display:grid; gap: 14px; }
.grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

/* List */
.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 6px 0; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}
.step{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display:flex;
  gap: 12px;
}
.step__nr{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 900;
  color: #fff;
  background: var(--accent);
}
.step h3{ margin: 0 0 6px; font-size: 16px; letter-spacing: -0.02em; }
.step p{ margin: 0; font-size: 14px; }

.callout{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(237,107,33,0.12), rgba(15,23,42,0.02));
  border: 1px solid rgba(237,107,33,0.18);
}

/* Features */
.feature{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}
.feature__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(237,107,33,0.10);
  margin-bottom: 10px;
  font-size: 20px;
}
.feature h3{ margin: 0 0 6px; letter-spacing: -0.02em; }
.feature p{ margin: 0; }

/* FAQ */
.faq{
  display:grid;
  gap: 10px;
}
.faq__item{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fff;
}
.faq__item summary{
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.faq__item p{ margin: 10px 0 0; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}
.contact__links{ display:flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.link{ padding: 10px 12px; border-radius: 12px; background: rgba(15,23,42,0.03); border: 1px solid var(--border); }
.link:hover{ background: rgba(237,107,33,0.06); border-color: rgba(237,107,33,0.18); }

.split{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed rgba(15,23,42,0.16);
}
.kicker{ font-size: 12px; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }

/* Form */
.form{ display:flex; flex-direction: column; gap: 12px; }
.form__row{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
label{ display:flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: 14px; }
input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  outline: none;
  font: inherit;
  background: #fff;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(237,107,33,0.55);
  box-shadow: 0 0 0 4px rgba(237,107,33,0.14);
}

/* Footer */
.footer{
  background: #0B0F17;
  color: rgba(255,255,255,0.86);
  padding: 28px 0;
}
.footer__inner{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.footer__brand{ display:flex; align-items:center; gap: 12px; }
.footer__brand img{ width: 44px; height: 44px; object-fit: contain; border-radius: 10px; }
.footer__name{ font-weight: 900; letter-spacing: -0.02em; }
.footer__links{ display:flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.footer__links a{ opacity: 0.9; }
.footer__links a:hover{ opacity: 1; text-decoration: underline; }
.footer__copy{ grid-column: 1 / -1; font-size: 13px; }

/* WhatsApp deaktiviert */
.fab{ display:none; }

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__meta{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; }
  .footer__links{ justify-content: flex-start; }
  .mobile__cta{ flex-direction: column; }
}


/* Price table */
.table-wrap{ overflow:auto; border-radius: var(--radius); border:1px solid var(--border); background:#fff; }
.price-table{ width:100%; border-collapse: separate; border-spacing: 0; min-width: 760px; }
.price-table th, .price-table td{ padding: 12px 12px; text-align: left; border-bottom:1px solid rgba(15,23,42,0.08); vertical-align: top; }
.price-table th{ position: sticky; top: 0; background: rgba(246,247,250,0.92); backdrop-filter: blur(8px); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(11,18,32,0.78); }
.price-table tr:last-child td{ border-bottom: none; }
.price-table td strong{ font-weight: 900; }
.price-tag{ display:inline-flex; align-items:center; gap:8px; padding: 6px 10px; border-radius: 999px; border:1px solid rgba(237,107,33,0.20); background: rgba(237,107,33,0.08); font-weight: 800; }
.note{ font-size: 13px; color: var(--muted); }
.h3{ margin:0 0 10px; }


/* Header logo-only layout */
.brand--logo-only{ gap: 0; }
.brand--logo-only .brand__logo{
  width: 140px;
  height: auto;
  border-radius: 0;
}

@media (max-width: 768px){
  .brand--logo-only .brand__logo{
    width: 110px;
  }
}


/* Language switcher (Polylang) */
.brosfs-lang{ display:flex; align-items:center; }
.brosfs-lang select{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.03);
  font-weight: 800;
  font-size: 13px;
}
.lang-hint{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.03);
  font-weight: 900;
  font-size: 13px;
}


/* Header Navigation Fixes */
.header__nav{
  display:flex;
  align-items:center;
  gap:16px;
}
.header__nav a{
  white-space:nowrap;
}


/* Compact form in hero card */
.form--compact label{ margin-bottom: 10px; }
.form--compact input, .form--compact select, .form--compact textarea{
  padding: 11px 12px;
}
.form--compact .form__row{ gap: 10px; }


/* Wide form section */
.form--wide .form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form--wide label{
  margin-bottom: 10px;
}
@media (max-width: 900px){
  .form--wide .form__row{
    grid-template-columns: 1fr;
  }
}


.section--accent h2,
.section--accent h3{
  font-weight: 900;
}
.section--accent h2 span,
.section--accent h3 span{
  color: var(--accent);
}


/* HERO-style headlines (black + orange), used across site */
h2.headline-accent, h3.headline-accent, h1.headline-accent, .headline-accent{
  color: #0b1220;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
}

/* Large section titles like the hero look */
h2.headline-accent, .section .section__head h2.headline-accent{
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}
h3.headline-accent{
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.15;
}

/* Orange signal word */
.headline-accent span, h2.headline-accent span, h3.headline-accent span, h1.headline-accent span{
  color: var(--accent);
}

/* Small underline bar to echo the hero feel (subtle) */
.headline-accent::after{
  content: "";
  display: block;
  height: 6px;
  width: 100%;
  margin-top: 14px;
  border-radius: 999px;
  background: #0b1220;
  opacity: 1;
}

/* Only show underline on major section titles (h2) */
h3.headline-accent::after{ display:none; }

/* Helper for section titles to match hero look */
.section-title{ color:#0b1220; font-weight:900; letter-spacing:-0.02em; line-height:1.05; margin:0 0 14px; font-size:clamp(2.2rem,4vw,3.1rem);}
.section-title span{ color: var(--accent); }
.section-title::after{ content:""; display:block; height:6px; width:100%; margin-top:14px; border-radius:999px; background:#0b1220; }


/* Ablauf: remove any leftover price button/link (defensive) */
body.page-template-template-ablauf a[href*="preise"],
body.page-template-template-ablauf a[href*="preisseite"],
body.page-template-template-ablauf a[href*="price"]{
  display:none !important;
}

/* Hide any empty button/link that could render as a small orange pill */
body.page-template-template-ablauf a.btn:empty,
body.page-template-template-ablauf button.btn:empty{
  display:none !important;
}


/* Unser Team page */
.team-hero{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}
.team-hero__media{
  border-radius: 22px;
  overflow:hidden;
  background:#0b1220;
  box-shadow: var(--shadow);
}
.team-hero__img{
  width:100%;
  height:auto;
  display:block;
}
.team-card{
  border-radius: 22px;
}
.team-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.team-cta{
  display:flex;
  gap:12px;
  margin-top:16px;
  flex-wrap:wrap;
}
.team-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}
.person{
  border-radius: 22px;
}
.person__top{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom: 10px;
}
.person__avatar{
  width:46px;
  height:46px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background: rgba(237,107,33,.12);
  color: var(--accent);
}
.person__name{
  font-weight:900;
  font-size: 1.1rem;
}
.person__role{
  color: var(--muted);
  font-size: .95rem;
}
.person__list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: #1b2430;
}
.person__list li{
  margin: 6px 0;
  color: var(--muted);
}
.person__quote{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(11,18,32,.04);
  border: 1px solid rgba(11,18,32,.06);
  color:#0b1220;
  font-weight:700;
}
@media (max-width: 980px){
  .team-hero{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
}


/* Navigation: avoid wrapping labels like 'Unser Team' */
.nav a{ white-space: nowrap; }


.team-bottom-cta{
  border-radius: 22px;
  margin-top: 18px;
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.team-cta-bottom{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
