
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./archivo-viet.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./archivo-latext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: 'Archivo', sans-serif; background: #fff; color: #15171C; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: 'Archivo', sans-serif; }
input, select, textarea { font-family: 'Archivo', sans-serif; }

/* Utilities */
.wrap { max-width: 1240px; margin: 0 auto; width: 100%; padding: 0 clamp(18px,5vw,40px); }
.only-desktop { display: flex; }
.only-mobile { display: none; }

@media (max-width: 920px) {
  .only-desktop { display: none !important; }
  .only-mobile { display: flex !important; }
}

/* Animations */
@keyframes kb { from { transform: scale(1.001); } to { transform: scale(1.07); } }
@keyframes bnc { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }

/* Counter animations via CSS @property */
@property --n60 { syntax: '<integer>'; initial-value: 0; inherits: false; }
@property --n100 { syntax: '<integer>'; initial-value: 0; inherits: false; }
@property --n300 { syntax: '<integer>'; initial-value: 0; inherits: false; }
@property --n2 { syntax: '<integer>'; initial-value: 0; inherits: false; }

@keyframes c60  { from { --n60: 0;  } to { --n60: 60;  } }
@keyframes c100 { from { --n100: 0; } to { --n100: 100; } }
@keyframes c300 { from { --n300: 0; } to { --n300: 300; } }
@keyframes c2   { from { --n2: 0;   } to { --n2: 2;     } }

.stat-60::after  { content: counter(n, decimal); counter-reset: n var(--n60);  animation: c60  1.8s cubic-bezier(.2,.7,.2,1) forwards; animation-timeline: view(); animation-range: entry 0% cover 40%; }
.stat-100::after { content: counter(n, decimal); counter-reset: n var(--n100); animation: c100 1.8s cubic-bezier(.2,.7,.2,1) forwards; animation-timeline: view(); animation-range: entry 0% cover 40%; }
.stat-300::after { content: counter(n, decimal); counter-reset: n var(--n300); animation: c300 2s   cubic-bezier(.2,.7,.2,1) forwards; animation-timeline: view(); animation-range: entry 0% cover 40%; }
.stat-2::after   { content: counter(n, decimal); counter-reset: n var(--n2);   animation: c2   1.8s cubic-bezier(.2,.7,.2,1) forwards; animation-timeline: view(); animation-range: entry 0% cover 40%; }

/* Scroll-reveal */
.rv { opacity: 0; transform: translateY(32px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.rv.visible { opacity: 1; transform: translateY(0); }
@supports not (animation-timeline: view()) { .rv { opacity: 1; transform: none; } }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,237,0,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.site-header .wrap { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { align-items: center; gap: clamp(14px,2vw,30px); }
.navlink { font: 600 15px/1 'Archivo', sans-serif; color: #15171C; letter-spacing: .01em; transition: color .2s; }
.navlink:hover { color: #004f9f; }
.nav-divider { width: 1px; height: 26px; background: rgba(0,79,159,.28); }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font: 700 15px 'Archivo', sans-serif; color: #15171C; transition: color .2s; }
.nav-phone:hover { color: #004f9f; }
.btn-cta-nav {
  display: inline-flex; align-items: center; gap: 8px;
  background: #004f9f; color: #fff;
  font: 800 15px 'Archivo', sans-serif;
  padding: 12px 20px; border-radius: 3px;
  letter-spacing: .005em;
  transition: background .2s, transform .2s;
}
.btn-cta-nav:hover { background: #003c7a; transform: translateY(-1px); }
.hamburger {
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: #004f9f; border: none; border-radius: 4px; cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: #ffed00; padding: 0 clamp(18px,5vw,40px) 24px;
  display: none; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; height: 68px; flex: none; }
.mobile-menu-close {
  width: 48px; height: 48px; background: #004f9f; border: none; border-radius: 4px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.mobile-nav-links a {
  font: 700 28px 'Archivo', sans-serif; color: #15171C;
  padding: 14px 0; border-bottom: 1px solid rgba(0,79,159,.16);
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-cta-area { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: clamp(580px,90vh,900px);
  display: flex; align-items: flex-end;
  overflow: hidden; background: #00254d;
}
.hero-bg-wrap {
  position: absolute; inset: 0;
  animation: kb 22s ease-out forwards;
}
.hero-bg-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,30,61,.92) 0%, rgba(0,30,61,.66) 42%, rgba(0,30,61,.28) 100%);
}
.hero-fade-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; height: 160px;
  background: linear-gradient(to top, rgba(0,30,61,.85), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(72px,10vw,120px) 0 clamp(48px,7vw,96px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,237,0,.14); border: 1px solid rgba(255,237,0,.4);
  color: #ffed00; font: 700 12.5px 'Archivo', sans-serif;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 100px; margin-bottom: 26px;
}
.hero-eyebrow span { width: 7px; height: 7px; background: #ffed00; border-radius: 50%; flex: none; }
.hero h1 {
  font: 800 clamp(40px,7.4vw,90px)/1.0 'Archivo', sans-serif;
  letter-spacing: -.03em; color: #fff; max-width: 15ch;
}
.hero h1 .hl { color: #ffed00; }
.hero-sub {
  margin: 24px 0 0;
  font: 400 clamp(17px,2.1vw,23px)/1.5 'Archivo', sans-serif;
  color: rgba(255,255,255,.85); max-width: 620px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ffed00; color: #15171C;
  font: 800 17px 'Archivo', sans-serif;
  padding: 17px 28px; border-radius: 4px;
  transition: background .2s, transform .2s;
}
.btn-hero-primary:hover { background: #fff34d; transform: translateY(-2px); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); color: #fff;
  font: 700 17px 'Archivo', sans-serif;
  padding: 17px 28px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.32);
  transition: background .2s, border-color .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.13); border-color: #fff; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.78); font: 600 14px 'Archivo', sans-serif;
}
.hero-recruiter-badge {
  position: absolute;
  top: clamp(30px,8vh,96px); right: clamp(18px,5vw,40px); z-index: 4;
  width: 176px; height: 176px; border-radius: 50%;
  background: #C8201A;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1px;
  box-shadow: 0 18px 44px rgba(0,0,0,.38);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s;
  padding: 0 14px;
}
.hero-recruiter-badge:hover { transform: translateY(-8px); box-shadow: 0 26px 54px rgba(0,0,0,.48); }
.scroll-down {
  position: absolute; left: 50%; bottom: 20px;
  transform: translateX(-50%); z-index: 2;
}

/* ===== TRUST / KENNZAHLEN ===== */
.trust-section { background: #fff; padding: clamp(56px,8vw,104px) clamp(18px,5vw,40px); }
.stats-grid {
  background-color: #fff;
  background-image:
    linear-gradient(to right, rgba(0,79,159,.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,79,159,.18) 1px, transparent 1px);
  background-size: calc(100%/54) 100%, 100% 22px;
  background-position: 0 0, 0 11px;
  border-right: 1px solid rgba(0,79,159,.18);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px,1fr));
}
.stat-cell {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  padding: clamp(36px,5vw,54px) 28px;
}
.stat-num {
  display: flex; align-items: baseline;
  font: 800 clamp(46px,6vw,78px)/1 'Archivo', sans-serif; color: #15171C;
}
.stat-suffix { font: 800 clamp(34px,4.4vw,56px) 'Archivo', sans-serif; color: #15171C; }
.stat-label { font: 600 15px 'Archivo', sans-serif; color: #15171C; letter-spacing: .01em; }
.about-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
  gap: clamp(36px,5vw,72px); align-items: center;
  margin-top: clamp(48px,6vw,84px);
}
.about-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 13px 'Archivo', sans-serif; letter-spacing: .18em; text-transform: uppercase;
  color: #15171C; margin-bottom: 18px;
}
.about-eyebrow span { width: 22px; height: 3px; background: #ffed00; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.about-pill {
  font: 600 14px 'Archivo', sans-serif; color: #15171C;
  background: #F1F3F7; padding: 9px 15px; border-radius: 100px;
}
.about-cert {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 30px; padding-top: 26px; border-top: 1px solid #E7E9EE;
}
.about-cert-label { font: 700 12px 'Archivo', sans-serif; letter-spacing: .16em; text-transform: uppercase; color: #5A6472; }
.about-img-wrap {
  position: relative;
  will-change: transform;
}
.about-img-inner {
  height: clamp(320px,42vw,460px);
  border-radius: 6px;
  overflow: hidden;
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-addr-badge {
  position: absolute; left: -6px; bottom: -22px;
  background: #ffed00; color: #15171C;
  padding: 18px 24px; border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,79,159,.22);
}
.about-addr-badge .city { font: 800 30px/1 'Archivo', sans-serif; }
.about-addr-badge .street { font: 600 13px 'Archivo', sans-serif; margin-top: 4px; letter-spacing: .04em; }

/* ===== LEISTUNGEN ===== */
.leistungen-section { background: #F4F5F7; padding: clamp(64px,9vw,120px) clamp(18px,5vw,40px); }
.section-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px,5vw,56px); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 13px 'Archivo', sans-serif; letter-spacing: .18em; text-transform: uppercase;
  color: #15171C; margin-bottom: 16px;
}
.section-eyebrow span { width: 22px; height: 3px; background: #ffed00; }
.section-eyebrow.light { color: #ffed00; }
.section-eyebrow.light span { background: #ffed00; }
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: clamp(16px,2vw,24px);
}
.leistung-card {
  background: #fff; border: 1px solid #E7E9EE; border-radius: 8px;
  padding: 34px 30px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.leistung-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px rgba(0,79,159,.13); border-color: #ffed00; }
.leistung-card.inverted { background: #004f9f; border-color: #004f9f; }
.leistung-card.inverted:hover { box-shadow: 0 24px 44px rgba(0,79,159,.22); }
.leistung-icon {
  width: 54px; height: 54px; border-radius: 8px; background: #004f9f;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.leistung-card.inverted .leistung-icon { background: #ffed00; }
.leistung-title { font: 800 22px 'Archivo', sans-serif; color: #15171C; letter-spacing: -.01em; }
.leistung-card.inverted .leistung-title { color: #fff; }
.leistung-desc { font: 400 15.5px/1.55 'Archivo', sans-serif; color: #5A6472; }
.leistung-card.inverted .leistung-desc { color: rgba(255,255,255,.78); }
.leistung-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 14px 'Archivo', sans-serif; color: #ffed00; margin-top: 4px;
}

/* ===== WARUM MEINERS ===== */
.warum-section { background: #16181D; padding: clamp(64px,9vw,120px) clamp(18px,5vw,40px); }
.warum-header { text-align: center; max-width: 680px; margin: 0 auto clamp(40px,5vw,64px); }
.warum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
  gap: 1px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px; overflow: hidden;
}
.warum-cell {
  background: #16181D; padding: clamp(28px,3vw,40px);
  transition: background .25s;
}
.warum-cell:hover { background: #1C1F26; }
.warum-num { font: 800 15px 'Archivo', sans-serif; color: #ffed00; letter-spacing: .08em; margin-bottom: 18px; }
.warum-title { font: 800 21px 'Archivo', sans-serif; color: #fff; margin-bottom: 10px; letter-spacing: -.01em; }
.warum-desc { font: 400 15.5px/1.6 'Archivo', sans-serif; color: rgba(255,255,255,.62); }

/* ===== REFERENZEN ===== */
.referenzen-section { background: #fff; padding: clamp(64px,9vw,120px) clamp(18px,5vw,40px); }
.ref-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.refpill {
  font: 700 14px 'Archivo', sans-serif;
  padding: 10px 18px; border-radius: 100px; cursor: pointer;
  transition: all .2s; border: 1.5px solid #D6DAE2;
  background: #fff; color: #5A6472;
}
.refpill.active { background: #ffed00; border-color: #ffed00; color: #15171C; }
.ref-slider-wrap { display: flex; align-items: center; gap: clamp(8px,1.5vw,18px); }
.ref-btn {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  border: none; background: #004f9f; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,79,159,.34);
  transition: transform .2s, background .2s, opacity .25s, visibility .25s;
}
.ref-btn:hover { background: #003c7a; transform: scale(1.08); }
.ref-btn.hidden { opacity: 0; visibility: hidden; }
.ref-viewport { flex: 1; min-width: 0; overflow: hidden; padding: 6px 0 16px; }
.ref-track {
  display: flex; gap: clamp(16px,2vw,24px);
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.ref-card {
  flex: 0 0 min(380px,84vw); border-radius: 8px; overflow: hidden;
  background: #004f9f; position: relative; min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid #E7E9EE;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.ref-card:hover { transform: translateY(-4px); }
.ref-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.ref-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,5,15,.95) 0%, rgba(0,8,22,.75) 30%, rgba(0,12,32,.45) 52%, rgba(0,15,38,.18) 70%, rgba(0,15,38,0) 88%);
}
.ref-card-content {
  position: relative; z-index: 3; padding: 20px 24px 24px;
  background: rgba(0,10,28,.52); overflow: hidden;
}
.ref-cat {
  display: inline-block; font: 700 11.5px 'Archivo', sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
  color: #15171C; background: #ffed00; padding: 5px 11px;
  border-radius: 100px; margin-bottom: 12px;
}
.ref-title { font: 800 21px/1.15 'Archivo', sans-serif; color: #fff; margin-bottom: 7px; }
.ref-desc {
  font: 400 14.5px/1.5 'Archivo', sans-serif; color: rgba(255,255,255,.88);
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.ref-card:hover .ref-desc { max-height: 120px; }

/* ===== REZENSIONEN ===== */
.rezensionen-section { background: #ffed00; padding: clamp(64px,9vw,120px) clamp(18px,5vw,40px); }
.rez-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px,5vw,52px); }
.google-badge {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid #E7E9EE; border-radius: 12px;
  padding: 16px 22px; box-shadow: 0 10px 30px rgba(0,79,159,.06);
}
.google-stars { display: inline-flex; gap: 1px; }
.rez-slider-wrap { display: flex; align-items: center; gap: clamp(8px,1.5vw,18px); }
.rez-btn {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  border: none; background: #004f9f; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,79,159,.34);
  transition: transform .2s, background .2s, opacity .25s, visibility .25s;
}
.rez-btn:hover { background: #003c7a; transform: scale(1.08); }
.rez-btn.hidden { opacity: 0; visibility: hidden; }
.rez-viewport { flex: 1; min-width: 0; overflow: hidden; padding: 6px 0 16px; }
.rez-track {
  display: flex; gap: clamp(16px,2vw,24px);
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.review-card {
  flex: 0 0 min(400px,84vw);
  position: relative; background: #fff; border: 1px solid #E7E9EE;
  border-radius: 12px; padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s, box-shadow .25s;
  font-family: 'Archivo', sans-serif;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(0,79,159,.1); }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: #004f9f;
  display: flex; align-items: center; justify-content: center;
  font: 800 18px 'Archivo', sans-serif; color: #fff; flex: none;
}

/* ===== KONTAKT ===== */
.kontakt-section { background: #F4F5F7; padding: clamp(64px,9vw,120px) clamp(18px,5vw,40px); }
.kontakt-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: clamp(32px,4vw,56px);
}
.kontakt-phone {
  display: flex; align-items: center; gap: 18px;
  background: #004f9f; border-radius: 10px; padding: 22px 26px; margin-bottom: 14px;
  transition: background .2s;
}
.kontakt-phone:hover { background: #003c7a; }
.kontakt-phone-icon {
  width: 52px; height: 52px; border-radius: 10px; background: #ffed00;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.form-card {
  background: #fff; border: 1px solid #E7E9EE; border-radius: 12px;
  padding: clamp(26px,3vw,40px); box-shadow: 0 18px 50px rgba(0,79,159,.07);
}
.form-card form { display: flex; flex-direction: column; gap: 16px; }
.form-label { display: flex; flex-direction: column; gap: 7px; }
.form-label span { font: 600 13px 'Archivo', sans-serif; color: #5A6472; }
.kfield {
  font: 500 16px 'Archivo', sans-serif; color: #16181D;
  padding: 13px 14px; border: 1px solid #D6DAE2; border-radius: 6px;
  outline: none; width: 100%; transition: border-color .2s;
  background: #fff;
}
.kfield:focus { border-color: #004f9f; }
/* Einheitliche Feldhöhen (iOS rendert select/date sonst abweichend) */
input.kfield, select.kfield { height: 50px; }
select.kfield { -webkit-appearance: none; appearance: none; background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235A6472' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center; padding-right: 38px; }
input[type="date"].kfield { -webkit-appearance: none; appearance: none; display: block; min-width: 0; }
input[type="date"].kfield::-webkit-date-and-time-value { text-align: left; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 16px; }
.success-state {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 380px; gap: 18px;
}
.success-state.visible { display: flex; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%; background: #ffed00;
  display: flex; align-items: center; justify-content: center;
}

/* ===== FOOTER ===== */
.site-footer { background: #111317; padding: clamp(56px,7vw,88px) clamp(18px,5vw,40px) 40px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: clamp(32px,4vw,56px);
  padding-bottom: clamp(36px,4vw,52px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.social-btn:hover { background: #ffed00; border-color: #ffed00; }
.footer-col-title { font: 700 13px 'Archivo', sans-serif; letter-spacing: .14em; text-transform: uppercase; color: #ffed00; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font: 500 15px 'Archivo', sans-serif; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-regions { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-region { font: 500 13.5px 'Archivo', sans-serif; color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); padding: 6px 12px; border-radius: 100px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-top: 26px; }
.footer-copy { font: 400 13.5px 'Archivo', sans-serif; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font: 500 13.5px 'Archivo', sans-serif; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-legal a:hover { color: #fff; }

/* ===== BACK TO TOP ===== */
.btt {
  position: fixed; right: 22px; bottom: 28px; z-index: 79;
  width: 48px; height: 48px; border-radius: 50%; background: #004f9f;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,30,61,.32);
  transition: background .2s, transform .2s, opacity .35s;
  opacity: 0; pointer-events: none;
}
.btt.visible { opacity: 1; pointer-events: auto; }
.btt:hover { background: #003c7a; transform: translateY(-3px); }

@media (max-width: 920px) {
  .site-logo { height: 46px !important; }
  .site-header .wrap { height: 68px; }
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .hero-recruiter-badge { display: none; }
  .warum-grid { grid-template-columns: 1fr 1fr; }
  .about-addr-badge { left: 10px; }
}
@media (max-width: 480px) {
  .warum-grid { grid-template-columns: 1fr; }
}

/* H2 styles */
h2.section-title {
  font: 800 clamp(28px,3.8vw,46px)/1.07 'Archivo', sans-serif;
  letter-spacing: -.02em; color: #15171C;
}
h2.section-title.light { color: #fff; }
h2.section-title.hero-h2 {
  font: 800 clamp(30px,4.4vw,52px)/1.05 'Archivo', sans-serif;
}
p.body-text { font: 400 17px/1.65 'Archivo', sans-serif; color: #444B55; }

/* ── Slider pagination dots ─────────────────────────────────────────────── */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C8CDD6;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
  flex: none;
}
.slider-dot.active {
  background: #004f9f;
  transform: scale(1.35);
}

/* ── Mobile slider & layout fixes ─────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Hide nav arrows — swipe instead */
  .ref-btn, .rez-btn { display: none !important; }

  /* Sliders: allow horizontal touch without triggering page scroll */
  .ref-viewport, .rez-viewport { touch-action: pan-y; }

  /* Review header: stack badge below heading */
  .rez-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .google-badge { align-self: stretch; justify-content: center; }

  /* Cards: reduce min padding so they breathe */
  .review-card { padding: 20px 18px; }

  /* Ref cards: ensure full height on mobile */
  .ref-card { min-height: 260px; }

  /* Stats grid: always 2×2 on mobile */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 30px 10px 30px 18px; }
  .stat-num { font-size: 42px; }
  .stat-suffix { font-size: 30px; }
  .stat-label { font-size: 14px; }

  /* Zertifikats-Badges: kleiner, damit nichts rechts rausläuft */
  .about-cert { gap: 14px; }
  .about-cert img[alt*="Bundesverband"] { height: 42px !important; }
  .about-cert img[alt*="ASS-G"] { height: 96px !important; }

  /* Section-Headline darf umbrechen, nie abschneiden */
  h2.section-title { overflow-wrap: break-word; }
}

/* ── Counter: hide CSS ::after when JS fallback takes over ──────────────── */
[data-js-counter]::after { content: none !important; }
