@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');

/* styles.css — Hero breiter (Full-bleed), Menü + Smooth-Scroll Offset */

:root{
  --bg: #f4f6f7;
  --card: #ffffff;
  --text: #0f141a;
  --muted: #6b737c;

  --accent: #ff5a2a;
  --heroLeft: rgba(0, 42, 63, .88);

  --radius: 30px;
  --shadow: 0 18px 50px rgba(0,0,0,.10);

  --headerH: 78px;
  --wrapW: 1200px;

  /* Hero: Außenabstand (oben = links/rechts) */
  --heroGap: 18px;

}

*{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--headerH) + 22px);
}

body{
  margin: 0;
  font-family: 'Satoshi', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
}

/* Reset (wichtig, sonst "figure" Margin-Versatz) */
figure, article, section, main{ margin: 0; }

/* Layout helpers */
.wrap{
  max-width: var(--wrapW);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
}

.section{
  padding: clamp(44px, 6vw, 88px) 0;
  scroll-margin-top: calc(var(--headerH) + 22px);
}

.section-alt{
  background: rgba(255,255,255,.55);
}

/* Header */
.site-header{
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
}

.header-inner{
  max-width: var(--wrapW);
  margin: 0 auto;
  padding: 10px clamp(12px, 3vw, 20px);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled .header-inner{
  background: rgba(255,255,255,.88);
  border-color: rgba(0,0,0,.06);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img{
  height: 26px;
  width: auto;
  display: block;
}

.nav{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .01em;
  padding: 10px 8px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.site-header.is-scrolled .nav-link{
  color: rgba(15, 20, 26, .82);
}
.nav-link:hover{
  background: rgba(255,255,255,.14);
}
.site-header.is-scrolled .nav-link:hover{
  background: rgba(0,0,0,.06);
}

.nav-link.is-active{
  background: rgba(255,255,255,.16);
}
.site-header.is-scrolled .nav-link.is-active{
  background: rgba(0,0,0,.06);
}

.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cta-icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.cta-icon svg{
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

/* Mobile Toggle */
.nav-toggle{
  display:none;
  margin-left:auto;
  background:transparent;
  border:0;
  padding:10px;
  border-radius:12px;
  cursor:pointer;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:3px;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background: rgba(255,255,255,.92);
  border-radius:99px;
  margin:0;
  transition: transform .18s ease, opacity .18s ease, width .18s ease, background-color .18s ease;
  transform-origin:center;
}
.site-header.is-scrolled .nav-toggle span{
  background: rgba(15, 20, 26, .82);
}

/* HERO — NEW: deutlich breiter (fast Full-bleed) */
.hero{
  padding-top: calc(var(--headerH) + 52px);
  padding-bottom: clamp(70px, 7vw, 120px);
  position: relative;

  /* vorher: max-width limitiert. Jetzt: volle Breite */
  max-width: none;
  margin: var(--heroGap) var(--heroGap) 0 var(--heroGap);
  /* links/rechts gleicher Abstand wie oben */
  padding-left: 0;
  padding-right: 0;
}

.hero-bg{
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);

  background:
    linear-gradient(90deg, var(--heroLeft) 0%, rgba(0,42,63,.55) 40%, rgba(0,42,63,0) 72%),
    url("/assets/images/header.png");
  background-size: cover;
  background-position: center right;
}

/* Content bleibt "wrap" – Text schön links, Bild breit */
.hero-content{
  position: relative;
  padding: clamp(30px, 5vw, 70px);
}

.hero-copy{
  max-width: 640px;
  color: #fff;
}

.hero-kicker{
  margin: 0 0 16px 0;
  font-size: 13px;
  opacity: .85;
  letter-spacing: .03em;
}

.hero-title{
  margin: 0;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: .98;
  letter-spacing: -0.02em;
  font-weight: 900;
}

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

.hero-sub{
  margin: 18px 0 26px 0;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.2;
  opacity: .95;
}
.hero-sub em{ font-style: italic; }

.hero-btn{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px 14px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  transition: transform .15s ease, filter .15s ease;
}
.hero-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.hero-btn-icon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--accent);
  display: grid;
  place-items: center;
}
.hero-btn-icon svg{
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

.hero-note{
  margin: 20px 0 0 0;
  font-size: 16px;
  opacity: .85;
  max-width: 30ch;
}

/* Cards / Sections */
.two-card{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  overflow: hidden;
}

.image-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-card, .content-card{ min-height: 420px; }

.content-card{
  padding: clamp(22px, 3.2vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 12px;
}
.kicker::before{
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  display: inline-block;
}

h2{
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.text{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  max-width: 58ch;
}

.cta-row{ margin-top: 18px; }

.cta{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12px;
  box-shadow: 0 14px 28px rgba(255, 90, 42, .25);
  transition: transform .15s ease, filter .15s ease;
}
.cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* Other sections */
.section-head{
  margin-bottom: 22px;
  display: grid;
  gap: 10px;
}

.grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mini{
  padding: 22px;
}
.mini h3{ margin: 0 0 8px 0; }
.mini p{ margin: 0; color: var(--muted); line-height: 1.6; }


.steps{
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.steps li{
  background: var(--card);
  border-radius: 22px;
  padding: 18px 18px 18px 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.step-nr{
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(255,90,42,.14);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.steps h3{ margin: 0 0 6px 0; }
.steps p{ margin: 0; color: var(--muted); line-height: 1.6; }

.faq{
  display: grid;
  gap: 12px;
}
.faq details{
  padding: 18px 18px;
}
.faq summary{
  cursor: pointer;
  font-weight: 800;
}
.faq p{
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact{
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.contact h3{ margin: 0 0 10px 0; }
.contact p{ margin: 6px 0; color: var(--muted); }
.contact a{ color: var(--text); }

.footer{
  padding: 30px 0 60px 0;
  color: rgba(0,0,0,.55);
}

/* WHY / WARUM WIR — Layout wie Referenz */
.why{
  background: transparent;
}

.why-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 74px auto;
}

.why-head h2{
  margin: 0;
  font-size: clamp(44px, 4.3vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 900;
  text-transform: none;
}


.why-head p{
  margin: 14px auto 0 auto;
  color: rgba(15, 20, 26, .62);
  font-size: 14px;
  line-height: 1.9;
  max-width: 62ch;
}

.why-grid{
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(70px, 10vw, 180px);
  row-gap: 54px;
}

.why-item{
  display: grid;
  gap: 12px;
  align-content: start;
}

.why-icon{
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.why-icon svg{
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-title{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.why-text{
  margin: 0;
  color: rgba(15, 20, 26, .62);
  font-size: 13px;
  line-height: 1.75;
  max-width: 60ch;
}

/* Responsive */
@media (max-width: 980px){
  .why-head{ margin-bottom: 48px; }
  .why-grid{ grid-template-columns: 1fr; row-gap: 34px; }
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display: none; }
  .nav-toggle{ display: flex; }

  body.nav-open .nav{
    display: grid;
    position: absolute;
    top: 64px;
    right: 10px;
    left: 10px;
    padding: 14px;
    gap: 8px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,.10);
  }

  body.nav-open .nav-link{
    color: rgba(15, 20, 26, .86);
    background: rgba(0,0,0,.04);
  }
  body.nav-open .nav-cta{
    justify-content: space-between;
  }

  .two-card{
    grid-template-columns: 1fr;
  }
  .image-card, .content-card{ min-height: 280px; }

  .grid3{
    grid-template-columns: 1fr;
  }
  .steps{
    grid-template-columns: 1fr;
  }
  .contact{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================
   Prozess (Video-Look)
   ========================= */
.section-process{
  background: #f4f6f7;
}

.section-process .wrap{
  max-width: 1200px;
}

.process-head{
  text-align: center;
  padding-top: 10px;
}

.process-kicker{
  display: inline-block;
  color: #f1501a;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  margin-bottom: 14px;
}

.process-title{
  margin: 0 auto;
  max-width: 980px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.03;
  font-size: clamp(38px, 4.6vw, 66px);
  text-transform: none;
}

.process-cta{
  margin: 34px auto 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px 14px 26px;
  border-radius: 999px;
  background: #0f141a;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  transition: transform .15s ease, filter .15s ease;
}

.process-cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.process-cta-icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f1501a;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.process-cta-icon svg{
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-timeline{
  position: relative;
  margin-top: 54px;
  padding: 44px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 120px;
  --lineH: 0px; /* wird per JS gesetzt */
}

.process-line{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-line-bg,
.process-line-fg{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  border-radius: 99px;
}

.process-line-bg{
  height: 100%;
  background: rgba(22,48,67,.10);
}

.process-line-fg{
  height: var(--lineH);
  background: #163043;
  box-shadow: 0 0 0 1px rgba(22,48,67,.06);
}

.process-row{
  display: grid;
  grid-template-columns: minmax(0,1fr) 120px minmax(0,1fr);
  align-items: start;
  position: relative;
}

.process-spacer{ min-height: 1px; }

.process-node{
  display: flex;
  justify-content: center;
  /* Dot sitzt bewusst im "Gap" zwischen Cards */
  margin-top: -34px;
}

.process-dot{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(22,48,67,.16);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: background .2s ease, transform .2s ease;
}

.process-dot svg{
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,.45);
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-dot.is-done{
  background: #163043;
  transform: translateZ(0);
}

.process-dot.is-done svg{
  stroke: #fff;
}

.process-card{
  width: min(540px, 100%);
  background: #163043;
  border-radius: 28px;
  padding: 46px 52px 44px;
  color: #fff;
}

.process-row.is-left .process-card{ justify-self: end; }
.process-row.is-right .process-card{ justify-self: start; }

.process-num{
  color: #f1501a;
  font-weight: 900;
  letter-spacing: .01em;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 12px;
}

.process-card h3{
  margin: 0 0 14px 0;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 800;
}

.process-card p{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  font-size: 14px;
}

.process-note{
  margin: 56px auto 0 auto;
  max-width: 980px;
  text-align: center;
  display: grid;
  gap: 14px;
}

.process-note-icon{
  width: 38px;
  height: 38px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  color: #f1501a;
}

.process-note-icon svg{
  width: 26px;
  height: 26px;
  stroke: #f1501a;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-note p{
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: rgba(0,0,0,.85);
}

.process-note em{
  font-style: italic;
}

/* =========================
   Leistungen (Was wir liefern) — Vorlage-Layout
   ========================= */

.services{
  background: #fff;
}

.services-wrap{
  max-width: 1460px; /* wie Vorlage: breiter als Standard */
}

.services-top{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  column-gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.services-title{
  margin: 0;
  font-size: clamp(58px, 5.9vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: none;
}

.services-sub{
  margin: 24px 0 0 0;
  color: rgba(15, 20, 26, .62);
  font-size: 18px;
  line-height: 1.7;
  max-width: 54ch;
}

.services-image{
  margin: 40px 0 0 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.services-image img{
  width: 100%;
  height: min(460px, 42vw);
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.services-right{
  display: grid;
  gap: 36px;
  padding-top: 12px;
}

.services-card{
  background: rgba(15, 20, 26, .04);
  border-radius: 28px;
  padding: clamp(34px, 3.4vw, 54px);
}

.services-icon{
  width: 38px;
  height: 38px;
  color: var(--accent);
  margin-bottom: 22px;
}

.services-icon svg{
  width: 38px;
  height: 38px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-card h3{
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 800;
  text-transform: none;
}

.services-card p{
  margin: 18px 0 0 0;
  color: rgba(15, 20, 26, .62);
  font-size: 18px;
  line-height: 1.75;
  max-width: 56ch;
}

/* Bottom 6 items */
.services-grid{
  margin-top: clamp(56px, 6vw, 84px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(44px, 6vw, 92px);
  row-gap: 48px;
}

.services-item{
  display: grid;
  gap: 12px;
  align-content: start;
}

.services-item-ico{
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.services-item-ico svg{
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-item h4{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
}

.services-item p{
  margin: 0;
  color: rgba(15, 20, 26, .62);
  font-size: 14px;
  line-height: 1.75;
  max-width: 44ch;
}

@media (max-width: 980px){
  .services-top{
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
  .services-right{ padding-top: 0; }
  .services-image img{
    height: 320px;
    min-height: 260px;
  }
  .services-grid{
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
}

/* =========================
   Footer — Vorlage-Layout (Dark Card)
   ========================= */

.site-footer{
  padding: clamp(40px, 6vw, 78px) 0 clamp(26px, 4vw, 46px) 0;
  background: transparent;
}

.footer-card{
  max-width: min(1560px, calc(100% - 40px));
  margin: 0 auto;
  border-radius: 40px;
  padding: clamp(44px, 5.6vw, 78px) clamp(34px, 4.6vw, 64px);

  background:
    radial-gradient(1100px 600px at 75% 0%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 58%),
    radial-gradient(900px 520px at 0% 40%, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 50%),
    #050505;

  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.footer-top{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(44px, 6vw, 96px);
  align-items: start;
  padding-bottom: clamp(46px, 6vw, 70px);
}

/* vertical divider */
.footer-top::after{
  content: "";
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,.12);
  transform: translateX(-0.5px);
}

.footer-col{ min-width: 0; }

.footer-brand{
  margin-bottom: 26px;
}

.footer-mark{
  display: inline-flex;
  align-items: flex-start;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-size: 54px;
  line-height: 1;
}
.footer-mark span{
  font-size: .55em;
  line-height: 1;
  margin-left: 2px;
  transform: translateY(6px);
  display: inline-block;
}

.footer-title{
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
}

.footer-text{
  margin: 18px 0 0 0;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.9;
}

.footer-right-title{
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
}

.footer-right-text{
  margin: 18px 0 0 0;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.9;
  max-width: 56ch;
}

.footer-cta{
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 18px;

  padding: 16px 18px 16px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: rgba(15,20,26,.92);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 900;
  font-size: 13px;

  box-shadow: 0 18px 44px rgba(0,0,0,.35);
  transition: transform .15s ease, filter .15s ease;
}
.footer-cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.footer-cta-icon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.footer-cta-icon svg{
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-hr{
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 0;
}

.footer-bottom{
  padding-top: clamp(32px, 4.4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.footer-nav a{
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  transition: color .15s ease;
}
.footer-nav a:hover{
  color: rgba(255,255,255,.9);
}

.footer-copy{
  color: rgba(255,255,255,.45);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .footer-card{
    border-radius: 30px;
    padding: 38px 22px;
  }
  .footer-top{
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }
  .footer-top::after{ display: none; }
  .footer-nav{ gap: 20px; }
  .footer-cta{ width: fit-content; }
}

/* =========================
   FAQ (Häufig gestellte Fragen) — Vorlage-Style
   ========================= */

.faq-section{
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(70px, 8vw, 110px);
}

.faq-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 54px auto;
}

.faq-head h2{
  margin: 0;
  font-size: clamp(44px, 5.2vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 900;
  text-transform: none;
}

.faq-head p{
  margin: 14px auto 0 auto;
  color: rgba(15, 20, 26, .62);
  font-size: 18px;
  line-height: 1.6;
  max-width: 62ch;
}

.faq-list{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item{
  border-radius: 18px;
  background: rgba(15, 20, 26, .04);
  overflow: hidden;
}

.faq-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 22px 26px;
  border: 0;
  background: transparent;
  cursor: pointer;

  font-size: 20px;
  font-weight: 700;
  color: rgba(15, 20, 26, .92);
  text-align: left;
}

.faq-btn:hover{
  background: rgba(15, 20, 26, .02);
}

.faq-q{
  display: block;
  line-height: 1.35;
}

.faq-plus{
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 22px;
  transform-origin: 50% 50%;
  transition: transform .18s ease;
}

.faq-plus::before,
.faq-plus::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 99px;
  transform: translate(-50%, -50%);
}

.faq-plus::after{
  width: 2.5px;
  height: 18px;
}

.faq-btn[aria-expanded="true"] .faq-plus{
  transform: rotate(45deg);
}

.faq-panel{
  padding: 0 26px 20px 26px;
}

.faq-panel-inner p{
  margin: 0;
  color: rgba(15, 20, 26, .62);
  font-size: 15px;
  line-height: 1.75;
  max-width: 88ch;
}

/* FAQ animation */
.faq-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-item.is-open .faq-panel{
  padding-top: 0;
  padding-bottom: 20px;
}

/* Mobile tweaks */
@media (max-width: 980px){
  .faq-head{ margin-bottom: 40px; }
  .faq-head p{ font-size: 16px; }
  .faq-btn{ font-size: 18px; padding: 18px 18px; }
  .faq-panel{ padding-left: 18px; padding-right: 18px; }
}

/* Responsive */
@media (max-width: 980px){
  .process-title{ font-size: clamp(32px, 6.8vw, 52px); }
  .process-timeline{
    gap: 70px;
    padding-top: 30px;
  }

  .process-row{
    grid-template-columns: 34px 1fr;
    column-gap: 18px;
  }

  .process-line-bg,
  .process-line-fg{
    left: 17px;
    transform: none;
  }

  .process-spacer{ display: none; }

  .process-node{ grid-column: 1; margin-top: 10px; justify-content: flex-start; }
  .process-card{ grid-column: 2; justify-self: stretch; padding: 34px 26px; }
  .process-row.is-left .process-card,
  .process-row.is-right .process-card{ justify-self: stretch; }

  .process-num{ font-size: 44px; }
  .process-note p{ font-size: 18px; }
}


/* Open state -> X icon */
body.nav-open .nav-toggle span:nth-child(1){
  transform: translateY(5px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2){
  opacity: 0;
  transform: scaleX(.2);
}
body.nav-open .nav-toggle span:nth-child(3){
  transform: translateY(-5px) rotate(-45deg);
}

<!-- adminhub-cookie-banner:start -->
<link rel="stylesheet" href="/assets/css/cookie-consent.css">
<script src="/assets/js/cookie-consent.js" defer></script>
<!-- adminhub-cookie-banner:end -->
