*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  /* ── Farbkonzept laut Kundenvorgabe ── */
  --blue-dark:#1A365D;       /* Trust Blue dark – Header, H1/H2, Footer */
  --blue:#004B87;            /* Trust Blue – CTAs, Buttons */
  --blue-mid:#1565A8;        /* Hover-Zustand */
  --blue-pale:#E3F2FD;       /* Ice Blue – Sektionshintergründe */
  --blue-xpale:#F0F8FF;      /* Noch heller für Cards */
  --mint:#4CAF50;            /* Akzentfarbe Checkmarks & Highlights */
  --mint-pale:#A8E6CF;       /* Soft Green für Badges */
  --sand:#F5F1E7;            /* Warm Sand – neutrale Sektionen */
  --sand-mid:#EDE9DF;        /* Borders in Sandbereichen */
  --white:#FFFFFF;
  --gray-50:#F7F7F7;
  --gray-100:#EEEEEE;
  --gray-300:#CCCCCC;
  --gray-500:#888888;
  --gray-700:#4A4A4A;
  --text:#1A365D;            /* Überschriften im Trust-Blue */
  --text-body:#374151;       /* Fließtext dunkelgrau */
  --text-light:#6B7280;
  --ff:'Montserrat',system-ui,sans-serif;
  --ease:cubic-bezier(.4,0,.2,1);
  --r:6px;--rl:12px;--rxl:20px;
}
html{scroll-behavior:smooth}

.thema-title-icon{display:flex;align-items:center;justify-content:center;width:44px;height:44px;background:var(--blue-pale);border-radius:var(--r);margin-bottom:12px;color:var(--blue);flex-shrink:0}
.thema-title-icon svg{stroke:var(--blue)}
.acc-icon svg{stroke:var(--blue)}
.dd-icon svg{stroke:var(--blue)}
.t-icon svg{stroke:#fff}

body{font-family:var(--ff);color:var(--text-body);background:var(--white);line-height:1.7;overflow-x:hidden}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:var(--blue-dark);
  border-bottom:3px solid var(--blue);
  height:72px;display:flex;align-items:center;padding:0 5%;gap:32px;
}
.nav-logo{display:flex;align-items:center;gap:12px;text-decoration:none;flex-shrink:0}
.nav-logo-mark{
  width:40px;height:40px;border-radius:var(--r);
  background:var(--blue);border:2px solid rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:15px;color:#fff;letter-spacing:-.5px;flex-shrink:0
}
.nav-logo-text{line-height:1.15}
.nav-logo-name{font-size:16px;font-weight:700;color:#fff;letter-spacing:.01em}
.nav-logo-sub{font-size:10px;font-weight:400;color:rgba(255,255,255,.45);letter-spacing:.1em;text-transform:uppercase}
.nav-links{display:flex;align-items:center;gap:4px;list-style:none;flex:1}
.nav-links>li{position:relative}
.nav-links>li>a{
  color:rgba(255,255,255,.75);text-decoration:none;
  font-size:13px;font-weight:500;letter-spacing:.03em;
  padding:8px 14px;border-radius:var(--r);
  display:flex;align-items:center;gap:5px;
  transition:color .2s,background .2s;white-space:nowrap
}
.nav-links>li>a:hover,.nav-links>li.open>a{color:#fff;background:rgba(255,255,255,.1)}
.nav-links>li>a svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;transition:transform .2s}
.nav-links>li.open>a svg{transform:rotate(180deg)}
.dropdown{
  position:absolute;top:calc(100% + 10px);left:0;
  background:var(--white);border:1px solid var(--gray-100);
  border-top:3px solid var(--blue);border-radius:var(--rl);
  padding:8px;min-width:250px;
  opacity:0;pointer-events:none;transform:translateY(-6px);
  transition:opacity .2s var(--ease),transform .2s var(--ease);
  box-shadow:0 12px 36px rgba(0,0,0,.12)
}
.nav-links>li.open .dropdown{opacity:1;pointer-events:auto;transform:none}
.dropdown a{
  display:flex;align-items:center;gap:10px;padding:9px 12px;
  border-radius:var(--r);text-decoration:none;
  color:var(--text-body);font-size:13px;font-weight:500;
  transition:background .15s,color .15s;white-space:nowrap
}
.dropdown a:hover{background:var(--blue-pale);color:var(--blue)}
.dd-icon{width:30px;height:30px;border-radius:var(--r);background:var(--blue-pale);display:flex;align-items:center;justify-content:center;font-size:15px;flex-shrink:0}
.nav-spacer{flex:1}
.nav-cta{
  background:var(--white);color:var(--blue)!important;
  padding:10px 22px;border-radius:var(--r);
  font-size:13px;font-weight:700;text-decoration:none;
  white-space:nowrap;letter-spacing:.02em;
  transition:background .2s,transform .2s;flex-shrink:0;
  border:2px solid transparent
}
.nav-cta:hover{background:var(--blue-pale);transform:translateY(-1px)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px}
.hamburger span{width:22px;height:2px;background:#fff;display:block;transition:.3s}
.mob-menu{
  display:none;position:fixed;top:72px;left:0;right:0;
  background:var(--blue-dark);z-index:199;
  padding:16px 5%;border-bottom:3px solid var(--blue);
  flex-direction:column;gap:4px;
  max-height:calc(100vh - 72px);overflow-y:auto
}
.mob-menu.open{display:flex}
.mob-menu a{color:rgba(255,255,255,.8);text-decoration:none;font-size:15px;padding:10px 14px;border-radius:var(--r);transition:background .2s;font-weight:500}
.mob-menu a:hover{background:rgba(255,255,255,.1)}
.mob-cat{font-size:10px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.4);padding:14px 14px 4px}
.mob-cta{background:var(--white)!important;color:var(--blue)!important;font-weight:700;margin-top:12px;text-align:center;border-radius:var(--r)}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero{min-height:100vh;position:relative;overflow:hidden;display:flex;align-items:center;padding:100px 5% 60px}
.hero-bg{
  position:absolute;inset:0;
  background:url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&q=80') center/cover no-repeat;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(110deg, rgba(26,54,93,.93) 45%, rgba(0,75,135,.65) 100%)
}
.hero-content{position:relative;z-index:1;max-width:680px}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);
  color:#fff;font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  padding:7px 16px;border-radius:100px;margin-bottom:28px
}
.hero-badge::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--mint);animation:blink 2s infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.25}}
h1{font-size:clamp(34px,5.2vw,60px);font-weight:700;color:#fff;line-height:1.15;margin-bottom:20px;letter-spacing:-.02em}
h1 span.gold{color:#7EC8E3}
.hero-sub{font-size:17px;color:rgba(255,255,255,.65);line-height:1.8;margin-bottom:40px;font-weight:300;max-width:500px}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap}
.btn-blue{background:var(--blue);color:#fff;padding:15px 34px;border-radius:var(--r);font-size:14px;font-weight:700;text-decoration:none;transition:background .2s,transform .2s;display:inline-block;letter-spacing:.02em;border:2px solid var(--blue)}
.btn-blue:hover{background:var(--blue-mid);transform:translateY(-2px)}
.btn-white{border:2px solid rgba(255,255,255,.35);color:#fff;padding:15px 34px;border-radius:var(--r);font-size:14px;font-weight:600;text-decoration:none;transition:.2s;display:inline-block}
.btn-white:hover{border-color:#fff;background:rgba(255,255,255,.1);transform:translateY(-2px)}
.hero-stats{
  display:flex;gap:0;margin-top:56px;padding-top:44px;
  border-top:1px solid rgba(255,255,255,.12);flex-wrap:wrap
}
.hstat{padding-right:40px;border-right:1px solid rgba(255,255,255,.12)}
.hstat+.hstat{padding-left:40px}
.hstat:last-child{border-right:none}
.hstat-n{font-size:34px;font-weight:700;color:#7EC8E3;line-height:1;margin-bottom:5px}
.hstat-l{font-size:12px;color:rgba(255,255,255,.45);font-weight:500}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
#trust{background:var(--blue);padding:0 5%}
.trust-row{display:flex;align-items:stretch;flex-wrap:wrap}
.trust-item{
  display:flex;align-items:center;gap:12px;
  flex:1;min-width:200px;padding:20px 0;
  color:rgba(255,255,255,.9);font-size:13px;font-weight:500;
  border-right:1px solid rgba(255,255,255,.12)
}
.trust-item:last-child{border-right:none}
.trust-item+.trust-item{padding-left:28px}
.t-icon{font-size:20px;flex-shrink:0}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
section{padding:96px 5%}
.stag{
  font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--blue);display:flex;align-items:center;gap:10px;margin-bottom:14px
}
.stag::before{content:'';width:24px;height:2px;background:var(--blue);display:block}
.stag.center{justify-content:center}
.stag.center::before,.stag.center::after{display:none}
h2{font-size:clamp(24px,3.6vw,40px);font-weight:700;color:var(--text);line-height:1.2;letter-spacing:-.015em;margin-bottom:16px}
h2 em{font-style:normal;color:var(--blue)}
.lead{font-size:16px;color:var(--text-light);font-weight:400;line-height:1.8;max-width:520px}
.center-block{text-align:center;display:flex;flex-direction:column;align-items:center}
.center-block h2,.center-block .lead{max-width:600px}

/* ══════════════════════════════════════════
   ÜBER UNS (kurze Intro-Sektion)
══════════════════════════════════════════ */
#intro{background:var(--sand)}
.intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.intro-img{border-radius:var(--rl);overflow:hidden;box-shadow:0 16px 48px rgba(0,0,0,.1)}
.intro-img img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.usp-list{list-style:none;margin-top:28px;display:flex;flex-direction:column;gap:12px}
.usp-list li{display:flex;align-items:flex-start;gap:12px;font-size:14.5px;color:var(--text-body);font-weight:400}
.usp-check{
  width:22px;height:22px;border-radius:50%;
  background:var(--mint-pale);border:1.5px solid var(--mint);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:2px;font-size:11px;color:var(--mint)
}
.intro-text .lead{margin-bottom:0}

/* ══════════════════════════════════════════
   THEMENWELTEN
══════════════════════════════════════════ */
#themenwelten{background:var(--white);padding-top:80px;padding-bottom:80px}
.themen-head{text-align:center;margin-bottom:52px}
.themen-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:4px;border-radius:var(--rxl);overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.09)}
.thema-card{background:var(--white);overflow:hidden;cursor:pointer;transition:transform .3s var(--ease);position:relative}
.thema-card:hover{transform:scale(1.015);z-index:2}
.thema-img{width:100%;aspect-ratio:16/9;object-fit:cover;display:block;transition:filter .35s}
.thema-card:hover .thema-img{filter:brightness(.85)}
.thema-body{padding:26px 30px 30px;border-top:3px solid var(--blue)}
.thema-eyebrow{font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--blue);opacity:.65;margin-bottom:8px}
.thema-title{font-size:20px;font-weight:700;color:var(--text);margin-bottom:10px;line-height:1.3}
.thema-desc{font-size:13.5px;color:var(--text-light);line-height:1.7;margin-bottom:18px;font-weight:400}
.thema-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:18px}
.thema-tag{font-size:11px;color:var(--blue);background:var(--blue-pale);padding:4px 10px;border-radius:100px;font-weight:600;border:1px solid rgba(0,75,135,.15)}
.thema-link{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:700;color:var(--blue);text-decoration:none;letter-spacing:.02em;transition:gap .2s}
.thema-link:hover{gap:11px}
.thema-link svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

/* ══════════════════════════════════════════
   LEISTUNGEN
══════════════════════════════════════════ */
#leistungen{background:var(--blue-pale)}
#leistungen h2{color:var(--text)}
#leistungen .lead{color:var(--text-light)}
.lkat-tabs{display:flex;gap:8px;margin:32px 0 36px;flex-wrap:wrap}
.lkat-btn{
  background:var(--white);border:2px solid var(--gray-100);
  color:var(--text-light);padding:10px 22px;border-radius:100px;
  font-family:var(--ff);font-size:13px;font-weight:600;cursor:pointer;
  transition:.2s;white-space:nowrap
}
.lkat-btn.active{background:var(--blue);border-color:var(--blue);color:#fff}
.lkat-btn:hover:not(.active){border-color:var(--blue);color:var(--blue);background:var(--blue-xpale)}
.lkat-panel{display:none}
.lkat-panel.active{display:block}
.acc-list{display:flex;flex-direction:column;gap:4px}
.acc-item{background:var(--white);border-radius:var(--rl);overflow:hidden;border:1.5px solid var(--gray-100);transition:border-color .2s}
.acc-item.open{border-color:var(--blue)}
.acc-head{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;cursor:pointer;user-select:none;transition:background .2s;gap:14px}
.acc-head:hover{background:var(--blue-xpale)}
.acc-head-left{display:flex;align-items:center;gap:14px;flex:1}
.acc-icon{width:40px;height:40px;border-radius:var(--r);background:var(--blue-pale);display:flex;align-items:center;justify-content:center;font-size:19px;flex-shrink:0}
.acc-head-title{font-size:15.5px;font-weight:700;color:var(--text);line-height:1.25}
.acc-head-slogan{font-size:12px;color:var(--text-light);font-weight:400;margin-top:2px;font-style:italic}
.acc-arrow{width:28px;height:28px;border-radius:50%;border:1.5px solid var(--gray-200);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform .3s,background .2s,border-color .2s}
.acc-arrow svg{width:12px;height:12px;stroke:var(--gray-500);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.acc-item.open .acc-arrow{transform:rotate(180deg);background:var(--blue);border-color:var(--blue)}
.acc-item.open .acc-arrow svg{stroke:#fff}
.acc-body{max-height:0;overflow:hidden;transition:max-height .42s var(--ease)}
.acc-item.open .acc-body{max-height:700px}
.acc-inner{padding:4px 22px 24px;display:grid;grid-template-columns:1.1fr 1fr;gap:28px;align-items:start}
.acc-text{font-size:14px;color:var(--text-body);line-height:1.85;font-weight:400}
.acc-bullets{list-style:none;display:flex;flex-direction:column;gap:9px}
.acc-bullets li{display:flex;align-items:flex-start;gap:10px;font-size:13.5px;color:var(--text-body)}
.acc-bullets li::before{content:'✓';color:var(--mint);font-weight:700;flex-shrink:0;margin-top:1px;font-size:14px}
.acc-cta{
  display:inline-flex;align-items:center;gap:7px;
  margin-top:18px;background:var(--blue);color:#fff;
  padding:10px 22px;border-radius:var(--r);font-size:13px;
  font-weight:700;text-decoration:none;transition:.2s;
  font-family:var(--ff);border:none;cursor:pointer;letter-spacing:.02em
}
.acc-cta:hover{background:var(--blue-mid);transform:translateY(-1px)}
.acc-cta svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2.5}
.acc-divider{padding-left:22px;margin-bottom:4px;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--blue);opacity:.6}

/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
#team{background:var(--white)}
.team-intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center;margin-bottom:64px}
.team-photo{border-radius:var(--rl);overflow:hidden;box-shadow:0 16px 52px rgba(0,0,0,.1)}
.team-photo img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.team-intro-text .lead{margin-bottom:28px}
.team-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:24px}
.team-card{background:var(--white);border:1.5px solid var(--gray-100);border-radius:var(--rl);overflow:hidden;transition:transform .3s,box-shadow .3s}
.team-card:hover{transform:translateY(-5px);box-shadow:0 16px 44px rgba(0,0,0,.09)}
.team-avatar{width:100%;aspect-ratio:1;background:linear-gradient(145deg,var(--blue),var(--blue-dark));display:flex;align-items:center;justify-content:center;font-size:38px;font-weight:700;color:rgba(255,255,255,.9);letter-spacing:.05em;position:relative;overflow:hidden}
.team-av-pat{position:absolute;inset:0;opacity:.07;background-image:repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 1px,transparent 12px)}
.team-avatar span{position:relative;z-index:1}
.team-info{padding:18px 20px 22px}
.team-name{font-size:17px;font-weight:700;color:var(--text);margin-bottom:3px}
.team-role{font-size:12px;color:var(--blue);font-weight:700;letter-spacing:.04em;text-transform:uppercase;margin-bottom:10px}
.team-desc{font-size:13px;color:var(--text-light);line-height:1.65}

/* ══════════════════════════════════════════
   BEWERTUNGEN
══════════════════════════════════════════ */
#bewertungen{background:var(--blue-pale)}
.bew-top{display:flex;align-items:flex-start;justify-content:space-between;flex-wrap:wrap;gap:24px;margin-bottom:44px}
.bew-score-box{background:var(--white);border:1.5px solid var(--gray-100);border-left:4px solid var(--blue);border-radius:var(--rl);padding:18px 24px;display:flex;align-items:center;gap:16px}
.bew-big{font-size:44px;font-weight:700;color:var(--blue);line-height:1}
.bew-stars{color:#F59E0B;font-size:16px;letter-spacing:2px;display:block;margin-bottom:4px}
.bew-sub-text{font-size:12px;color:var(--text-light)}
.bew-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}
.bew-card{background:var(--white);border:1.5px solid var(--gray-100);border-radius:var(--rl);padding:22px 24px;border-top:3px solid var(--blue)}
.bew-stars-card{color:#F59E0B;font-size:14px;margin-bottom:12px;letter-spacing:1px}
.bew-text{font-size:14px;color:var(--text-body);line-height:1.8;font-style:italic;margin-bottom:16px}
.bew-author{font-size:13px;font-weight:700;color:var(--text)}
.bew-date{font-size:11.5px;color:var(--text-light);margin-top:2px}
.bew-hint{font-size:11px;color:var(--text-light);text-align:center;margin-top:20px;opacity:.6}

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
#cta{background:var(--blue-dark);text-align:center;padding:96px 5%;position:relative;overflow:hidden}
#cta::before{content:'';position:absolute;inset:0;background-image:repeating-linear-gradient(45deg,transparent,transparent 60px,rgba(255,255,255,.02) 60px,rgba(255,255,255,.02) 61px)}
.cta-inner{position:relative;z-index:1}
.cta-h2{font-size:clamp(28px,4.5vw,46px);font-weight:700;color:#fff;margin-bottom:16px;line-height:1.2}
.cta-h2 em{font-style:normal;color:#7EC8E3}
.cta-lead{font-size:16px;color:rgba(255,255,255,.55);margin-bottom:40px;font-weight:400;max-width:480px;margin-left:auto;margin-right:auto;line-height:1.8}
.cta-hint{font-size:12px;color:rgba(255,255,255,.3);margin-top:16px;letter-spacing:.03em}

/* ══════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════ */
#kontakt{background:var(--sand)}
.kontakt-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:72px;align-items:start}
.kinfo-lead{font-size:15px;color:var(--text-body);line-height:1.8;margin-bottom:32px}
.kinfo-list{list-style:none;display:flex;flex-direction:column;gap:14px}
.kinfo-list li{display:flex;align-items:flex-start;gap:14px;font-size:14px;color:var(--text-body)}
.ki-icon{width:36px;height:36px;background:var(--blue);border-radius:var(--r);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ki-icon svg{width:16px;height:16px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.ki-label{font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.09em;color:var(--text-light);margin-bottom:2px}
.kform{display:flex;flex-direction:column;gap:14px;background:var(--white);padding:36px;border-radius:var(--rxl);border:1.5px solid var(--sand-mid);box-shadow:0 8px 32px rgba(0,0,0,.06)}
.frow{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.fgrp{display:flex;flex-direction:column;gap:5px}
.fgrp label{font-size:12px;font-weight:700;color:var(--text);letter-spacing:.03em}
.fgrp input,.fgrp select,.fgrp textarea{
  padding:11px 14px;border:1.5px solid var(--gray-200);
  border-radius:var(--r);font-family:var(--ff);font-size:14px;
  color:var(--text-body);background:var(--gray-50);outline:none;
  transition:border-color .2s,background .2s;width:100%
}
.fgrp input:focus,.fgrp select:focus,.fgrp textarea:focus{border-color:var(--blue);background:var(--white)}
.fgrp textarea{resize:vertical;min-height:100px}
.fsubmit{background:var(--blue);color:#fff;border:none;padding:14px 36px;border-radius:var(--r);font-family:var(--ff);font-size:14px;font-weight:700;cursor:pointer;transition:.2s;align-self:flex-start;letter-spacing:.02em}
.fsubmit:hover{background:var(--blue-mid);transform:translateY(-1px)}
.cb-row{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:var(--text-light)}
.cb-row input{width:15px;height:15px;margin-top:2px;accent-color:var(--blue);flex-shrink:0;cursor:pointer}
.form-legal{font-size:11.5px;color:var(--text-light);line-height:1.6}
.form-legal a{color:var(--blue)}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer{background:var(--blue-dark);color:rgba(255,255,255,.5);padding:60px 5% 28px}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:44px;margin-bottom:44px}
.fbrand-name{font-size:17px;font-weight:700;color:#fff;margin-bottom:10px;display:block}
.fbrand-name span{color:#7EC8E3}
.fbrand-p{font-size:13px;color:rgba(255,255,255,.38);line-height:1.75;margin-bottom:20px}
.fsocial{display:flex;gap:10px}
.fsocial a{width:34px;height:34px;border:1px solid rgba(255,255,255,.12);border-radius:var(--r);display:flex;align-items:center;justify-content:center;transition:.2s}
.fsocial a:hover{border-color:rgba(255,255,255,.4);background:rgba(255,255,255,.08)}
.fsocial svg{width:15px;height:15px;stroke:rgba(255,255,255,.45);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.fcol h4{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.8);margin-bottom:16px}
.fcol ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.fcol a{color:rgba(255,255,255,.38);text-decoration:none;font-size:13px;font-weight:400;transition:color .2s}
.fcol a:hover{color:#7EC8E3}
.footer-hr{height:1px;background:rgba(255,255,255,.08);margin-bottom:22px}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,.28)}
.flegal{display:flex;gap:20px;flex-wrap:wrap}
.flegal a{color:rgba(255,255,255,.28);text-decoration:none;font-size:12px;transition:color .2s}
.flegal a:hover{color:#7EC8E3}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .65s var(--ease),transform .65s var(--ease)}
.reveal.vis{opacity:1;transform:none}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1024px){
  .nav-links{display:none}.hamburger{display:flex}
  .intro-grid,.team-intro-grid,.kontakt-grid{grid-template-columns:1fr;gap:40px}
  .themen-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .acc-inner{grid-template-columns:1fr}
}
@media(max-width:640px){
  section{padding:64px 5%}
  .hstat+.hstat{padding-left:22px}.hstat{padding-right:22px}
  .frow{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;align-items:flex-start}
  .trust-row{gap:0}
  .trust-item{padding:14px 0;border-right:none;border-bottom:1px solid rgba(255,255,255,.1);width:100%}
  .trust-item:last-child{border-bottom:none}
  .kform{padding:22px}
}