/* ===========================================================
   ASP Security — Light Premium Edition
   Großzügige Typografie · viel Weißraum · Syne/Inter
   =========================================================== */

:root {
  --white: #ffffff;
  --paper: #f8f8f8;
  --paper-2: #fafafa;
  --ink: #0a0a0a;
  --ink-2: #2a2a2a;
  --text: #141414;
  --gray: #555555;
  --gray-2: #9a9a9a;
  --line: #e6e6e6;
  --line-2: #dcdcdc;
  --gold: #8a7a5c;

  --maxw: 1360px;        /* Container (Inhalt ~1280px) */
  --pad: 40px;
  --ease: cubic-bezier(0.2, 0.9, 0.4, 1.05);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.4, 1);
  --shadow-soft: 0 24px 45px -20px rgba(0, 0, 0, .14);
  --shadow-lg: 0 34px 70px -28px rgba(0, 0, 0, .25);

  --display: "Syne", system-ui, -apple-system, Segoe UI, sans-serif;
  --body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--body);
  background: var(--white);
  color: var(--text);
  font-size: 1.1875rem;       /* 19px Body */
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 170px 0; }
.section--paper { background: var(--paper); }

/* ---------- Typography ---------- */
.section__title {
  font-family: var(--display); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.12;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);   /* bis 56px */
  color: var(--ink);
}
.section__head { margin-bottom: 84px; max-width: 880px; }
.section__head--center { text-align: center; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.22em; font-size: .875rem; font-weight: 600;
  color: var(--ink-2); margin-bottom: 26px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--ink); }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: rgba(255,255,255,.72); }
.eyebrow--light::before { background: rgba(255,255,255,.55); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--display); font-weight: 600; font-size: 1.0625rem;  /* 17px */
  padding: 18px 36px; border-radius: 2px; border: 1.5px solid transparent;
  cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), transform .12s var(--ease);
}
.btn:active { transform: scale(.98); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); position: relative; overflow: hidden; z-index: 0; }
.btn--fill::before { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); z-index: -1; }
.btn--fill:hover { color: var(--ink); border-color: #fff; }
.btn--fill:hover::before { transform: scaleX(1); }

.link-arrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--ink); }
.link-arrow .arr { transition: transform .25s var(--ease); }
.link-arrow:hover .arr { transform: translateX(5px); }
.link-arrow--underline { position: relative; padding-bottom: 3px; }
.link-arrow--underline::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.service-card:hover .link-arrow--underline::after { transform: scaleX(1); }

.badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: #fff;
  font-family: var(--display); font-weight: 600; font-size: .875rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 100px;
}
.badge span { color: var(--gray-2); }

/* ---------- Custom cursor ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block; position: fixed; top: 0; left: 0; width: 22px; height: 22px;
    border: 1.5px solid var(--ink); border-radius: 50%; background: transparent;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 9999;
    transition: width .2s var(--ease), height .2s var(--ease), background .2s var(--ease), opacity .2s;
    will-change: transform;
  }
  .cursor.is-hover { width: 44px; height: 44px; background: rgba(255,255,255,.6); border-color: var(--ink); }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--ink); z-index: 200; transition: width .1s linear; }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 10001; background: var(--ink); color: #fff; padding: 12px 22px; font-family: var(--display); font-weight: 600; border-radius: 0 0 4px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 2px; }
.btn--outline:focus-visible, .nav__cta:focus-visible, .to-top:focus-visible, .slider__arrow:focus-visible { outline-color: var(--ink); outline-offset: 4px; }
.cta__block :focus-visible { outline-color: #fff; }

/* ---------- Preloader ---------- */
.preloader { position: fixed; inset: 0; background: #fff; z-index: 10000; display: grid; place-items: center; transition: opacity .5s var(--ease), visibility .5s; }
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__brand { display: flex; gap: .04em; font-family: var(--display); font-weight: 800; font-size: clamp(2.5rem, 8vw, 4.5rem); color: var(--ink); letter-spacing: .04em; }
.preloader__brand span { opacity: 0; transform: translateY(18px); animation: plLetter .5s var(--ease) forwards; }
.preloader__brand span:nth-child(1) { animation-delay: .05s; }
.preloader__brand span:nth-child(2) { animation-delay: .13s; }
.preloader__brand span:nth-child(3) { animation-delay: .21s; color: var(--gold); }
@keyframes plLetter { to { opacity: 1; transform: none; } }

/* ===========================================================
   NAV
   =========================================================== */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 22px 0; border-bottom: 1px solid transparent; transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease), border-color .3s var(--ease); }
.nav.scrolled { background: rgba(255,255,255,.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom-color: var(--line); box-shadow: 0 8px 30px -20px rgba(0,0,0,.3); padding: 13px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.nav__logo img { height: 46px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 42px; }
.nav__menu > a { font-family: var(--display); font-weight: 600; font-size: 1.0625rem; color: var(--ink); position: relative; padding: 4px 0; }
.nav__menu > a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--ink); transition: width .25s var(--ease); }
.nav__menu > a:hover::after { width: 100%; }
.nav__cta { display: inline-flex; align-items: center; gap: 9px; background: var(--ink); color: #fff; font-family: var(--display); font-weight: 600; font-size: 1rem; padding: 14px 26px; border-radius: 2px; transition: background .2s var(--ease); }
.nav__cta .arr { transition: transform .25s var(--ease); }
.nav__cta:hover { background: var(--ink-2); }
.nav__cta:hover .arr { transform: translateX(4px); }
.nav__cta--mobile { display: none; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 102; }
.nav__backdrop { display: none; }
.nav__burger span { width: 28px; height: 2px; background: var(--ink); transition: .3s var(--ease); border-radius: 2px; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; padding: 150px 0 90px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; will-change: transform; }
.loaded .hero__bg img { animation: heroZoom 1.8s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(115deg, rgba(8,8,8,.82) 0%, rgba(8,8,8,.55) 45%, rgba(8,8,8,.28) 100%); }
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 840px; color: #fff; }
.hero__content .badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.hero__content .badge span { color: rgba(255,255,255,.55); }
.hero__title { font-family: var(--display); font-weight: 700; font-size: clamp(2.9rem, 7.4vw, 5.75rem); line-height: 1.02; letter-spacing: -0.025em; color: #fff; margin: 20px 0 26px; text-shadow: 0 2px 28px rgba(0,0,0,.4); }
.hero__title span { display: block; }
.hero__title span[data-word="2"] { color: var(--gold); }
.hero__lead { color: rgba(255,255,255,.92); font-size: 1.375rem; line-height: 1.5; max-width: 680px; margin-bottom: 38px; text-shadow: 0 1px 14px rgba(0,0,0,.35); }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__stats { font-size: 1.0625rem; color: rgba(255,255,255,.85); }
.hero__stats strong { color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.hero__stats span { color: rgba(255,255,255,.4); margin: 0 8px; }

/* Buttons auf dunklem Bild */
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #ececec; box-shadow: var(--shadow-lg); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Hero load animations */
[data-word] { opacity: 0; transform: translateY(24px); }
.loaded [data-word] { animation: wordIn .6s var(--ease) forwards; }
.loaded [data-word="1"] { animation-delay: .15s; }
.loaded [data-word="2"] { animation-delay: .27s; }
.loaded [data-word="3"] { animation-delay: .39s; }
@keyframes wordIn { to { opacity: 1; transform: none; } }
[data-load] { opacity: 0; transform: translateY(18px); }
.loaded [data-load] { animation: wordIn .6s var(--ease) forwards; }
.loaded [data-load="1"] { animation-delay: .05s; }
.loaded [data-load="2"] { animation-delay: .5s; }
.loaded [data-load="3"] { animation-delay: .6s; }
.loaded [data-load="4"] { animation-delay: .72s; }

/* ===========================================================
   TRUST / PILLARS
   =========================================================== */
.trust__head { display: grid; grid-template-columns: 7fr 5fr; gap: 70px; align-items: end; margin-bottom: 100px; }
.trust__intro p { color: var(--gray); font-size: 1.1875rem; line-height: 1.65; }
.trust__intro p + p { margin-top: 20px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.pillar { padding: 54px 50px 16px 0; border-right: 1px solid var(--line); }
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar:not(:first-child) { padding-left: 50px; }
.pillar__no { display: block; font-family: var(--display); font-weight: 700; font-size: 3rem; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 22px; line-height: 1; }
.pillar h3 { font-family: var(--display); font-weight: 600; font-size: 1.5rem; line-height: 1.25; color: var(--ink); margin-bottom: 16px; }
.pillar p { color: var(--gray); font-size: 1.125rem; line-height: 1.6; }

/* ===========================================================
   LEISTUNGEN
   =========================================================== */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.service-card:hover { transform: translateY(-8px); border-bottom: 2px solid var(--ink); box-shadow: var(--shadow-soft); }
.service-card__media { overflow: hidden; aspect-ratio: 16 / 10; background: var(--paper-2); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; flex: 1; }
.service-card__body h3 { font-family: var(--display); font-weight: 600; font-size: 1.75rem; letter-spacing: -0.01em; color: var(--ink); }
.service-card__body p { color: var(--gray); font-size: 1.125rem; line-height: 1.6; flex: 1; }
.service-card__body .link-arrow { margin-top: 8px; }

/* ===========================================================
   WARUM ASP
   =========================================================== */
.why__grid { display: grid; grid-template-columns: 7fr 5fr; gap: 80px; align-items: center; }
.why__list { list-style: none; margin-top: 48px; display: flex; flex-direction: column; gap: 36px; }
.why__list li { display: flex; gap: 26px; }
.why__no { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--gray-2); padding-top: 4px; min-width: 34px; }
.why__list h3 { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; }
.why__list p { color: var(--gray); font-size: 1.125rem; line-height: 1.6; }
.why__media { height: 100%; }
.video-ph { width: 100%; height: 100%; min-height: 480px; background: var(--paper); border: 1px dashed var(--line-2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; border-radius: 4px; }
.video-ph__icon { width: 92px; height: 92px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; }
.video-ph__icon svg { width: 32px; height: 32px; margin-left: 4px; }
.video-ph__label { font-family: var(--display); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .875rem; color: var(--gray); }

/* ===========================================================
   IN ZAHLEN
   =========================================================== */
.stats__head { margin-bottom: 70px; }
.stats__row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--ink); }
.stat { padding: 56px 36px 16px 0; border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: none; }
.stat:not(:first-child) { padding-left: 36px; }
.stat::after { content: ""; position: absolute; left: 0; top: -2px; height: 2px; width: 0; background: var(--gold); transition: width .6s var(--ease) .15s; }
.stat.in::after { width: 38%; }
.stat__num { font-family: var(--display); font-weight: 700; font-size: clamp(3rem, 5.2vw, 4.5rem); line-height: 1; letter-spacing: -0.03em; color: var(--ink); display: inline-block; transition: transform .2s var(--ease); }
.stat:hover .stat__num { transform: scale(1.08); }
.stat__label { color: var(--gray); font-size: 1rem; margin-top: 18px; }

/* ===========================================================
   TESTIMONIALS (Slideshow)
   =========================================================== */
.slider { max-width: 960px; margin: 0 auto; }
.slider__viewport { overflow: hidden; }
.slider__track { display: flex; transition: transform .6s var(--ease); }
.slide { min-width: 100%; padding: 8px 16px; text-align: center; }
.slide blockquote {
  font-family: var(--display); font-weight: 500; font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem); line-height: 1.45; letter-spacing: -0.01em;
  color: var(--ink); max-width: 840px; margin: 0 auto 40px;
}
.slide figcaption { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; margin: 0; }
.slide .rule { width: 48px; height: 2px; background: var(--ink); margin-bottom: 18px; }
.slide figcaption strong { font-family: var(--display); font-weight: 700; font-size: 1.125rem; color: var(--ink); }
.slide figcaption span { color: var(--gray); font-size: .9375rem; }

.slider__nav { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 52px; }
.slider__arrow { width: 50px; height: 50px; border: 1px solid var(--line-2); background: var(--white); color: var(--ink); border-radius: 50%; cursor: pointer; font-size: 1.15rem; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.slider__arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.slider__dots { display: flex; gap: 10px; }
.slider__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line-2); cursor: pointer; padding: 0; transition: background .25s var(--ease), transform .25s var(--ease); }
.slider__dots button.active { background: var(--ink); transform: scale(1.3); }

/* ===========================================================
   TEAM
   =========================================================== */
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.team-card__ph { aspect-ratio: 4 / 4.2; background: var(--paper-2); color: #cdd1d8; display: grid; place-items: center; }
.team-card__ph svg { width: 46%; height: 46%; }
.team-card__info { padding: 34px 36px 36px; border-top: 2px solid var(--ink); }
.team-card__role { display: block; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .8125rem; color: var(--ink-2); margin-bottom: 10px; }
.team-card__info h3 { font-family: var(--display); font-weight: 700; font-size: 1.625rem; letter-spacing: -0.01em; color: var(--ink); }
.team-card__bio { color: var(--gray); font-size: 1rem; line-height: 1.55; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s var(--ease), opacity .35s var(--ease), margin-top .4s var(--ease); }
.team-card:hover .team-card__bio { max-height: 100px; opacity: 1; margin-top: 14px; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq__inner { max-width: 960px; }
.accordion { border-top: 1px solid var(--line-2); }
.acc-item { border-bottom: 1px solid var(--line-2); }
.acc-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; background: none; border: none; cursor: pointer; text-align: left; padding: 34px 4px; color: var(--ink); font-family: var(--display); font-weight: 600; font-size: clamp(1.2rem, 1.8vw, 1.375rem); line-height: 1.3; transition: color .2s var(--ease); }
.acc-trigger:hover { color: var(--ink-2); }
.acc-icon { position: relative; width: 28px; height: 28px; flex: none; transition: transform .25s var(--ease); }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink); transition: transform .25s var(--ease), background .2s var(--ease); }
.acc-icon::before { width: 18px; height: 2px; transform: translate(-50%,-50%); }
.acc-icon::after { width: 2px; height: 18px; transform: translate(-50%,-50%); }
.acc-item.is-open .acc-icon { transform: rotate(90deg); }
.acc-item.is-open .acc-icon::before, .acc-item.is-open .acc-icon::after { background: var(--gold); }
.acc-item.is-open .acc-icon::after { opacity: 0; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease-in-out; }
.acc-panel p { padding: 0 70px 34px 4px; color: var(--gray); font-size: 1.125rem; line-height: 1.65; }

/* ===========================================================
   CTA
   =========================================================== */
.cta { background: var(--white); }
.cta__block { position: relative; overflow: hidden; max-width: 1040px; margin: 0 auto; text-align: center; background: var(--ink); color: #fff; border-radius: 8px; padding: clamp(64px, 8vw, 104px) clamp(32px, 6vw, 88px); }
.cta__deco { position: absolute; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; top: -130px; right: -100px; animation: floatDeco 7s ease-in-out infinite; }
@keyframes floatDeco { 0%,100% { transform: translateY(0); } 50% { transform: translateY(22px); } }
.cta__title { position: relative; font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; letter-spacing: -0.02em; color: #fff; max-width: 760px; margin: 0 auto; }
.cta__text { position: relative; color: rgba(255,255,255,.78); font-size: 1.25rem; line-height: 1.55; max-width: 600px; margin: 24px auto 42px; }
.cta__actions { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta__call { position: relative; color: rgba(255,255,255,.85); font-family: var(--display); font-weight: 600; font-size: 1.0625rem; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px; transition: color .2s var(--ease), border-color .2s var(--ease); }
.cta__call:hover { color: #fff; border-color: #fff; }
.cta__note { position: relative; margin-top: 24px; font-size: .9375rem; color: var(--gold); font-weight: 600; letter-spacing: .02em; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--white); border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 56px; padding: 100px 40px 70px; }
.footer__logo { height: 56px; width: auto; margin-bottom: 26px; }
.footer__claim { color: var(--text); font-size: 1.125rem; line-height: 1.6; max-width: 340px; margin-bottom: 16px; }
.footer__tag { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 1rem; }
.footer__col h4 { font-family: var(--display); font-weight: 700; letter-spacing: .02em; font-size: 1.0625rem; color: var(--ink); margin-bottom: 24px; }
.footer__col a { display: block; width: -moz-fit-content; width: fit-content; color: var(--gray); font-size: .9375rem; line-height: 1.45; padding: 7px 0; position: relative; }
.footer__col > a::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 0; height: 1.5px; background: var(--ink); transition: width .25s var(--ease); }
.footer__col > a:hover { color: var(--ink); }
.footer__col > a:hover::after { width: 100%; }
.footer__contact p { color: var(--gray); font-size: .9375rem; line-height: 1.6; padding: 7px 0; }
.footer__social { display: flex; gap: 14px; margin-top: 18px; }
.footer__social a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); transition: transform .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.footer__social a:hover { transform: scale(1.15) rotate(5deg); color: var(--gold); border-color: var(--gold); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 28px 40px; border-top: 1px solid var(--line); color: var(--gray-2); font-size: .8125rem; }
.footer__legal a:hover { color: var(--ink); }
.footer__legal span { margin: 0 6px; color: var(--line-2); }

/* ===========================================================
   SCROLL TO TOP
   =========================================================== */
.to-top { position: fixed; right: 30px; bottom: 30px; width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; z-index: 90; opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--ink-2); }
.to-top:hover svg { transform: translateY(-3px); }
.to-top svg { width: 21px; height: 21px; transition: transform .25s var(--ease); }

/* ===========================================================
   REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .5s var(--ease-soft), transform .5s var(--ease-soft); will-change: transform, opacity; }
.reveal--left { transform: translateX(-34px); }
.reveal--right { transform: translateX(34px); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, [data-load], [data-word] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .cursor { display: none !important; }
  .preloader { display: none !important; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1100px) {
  .section { padding: 110px 0; }
  .trust__head, .why__grid, .testi__grid { grid-template-columns: 1fr; gap: 50px; }
  .hero { min-height: 80vh; padding: 130px 0 80px; }
  .services__grid, .team__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); padding: 36px 0; }
  .pillar:not(:first-child) { padding-left: 0; }
  .stats__row { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  :root { --pad: 24px; }
  .section { padding: 90px 0; }
  .section__head { margin-bottom: 56px; }
  .hero__title { font-size: clamp(2.6rem, 12vw, 3.2rem); }
  .hero__lead { font-size: 1.1875rem; }
  .nav__menu { position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(86vw, 340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; background: #fff; padding: 100px 36px 40px; transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: -22px 0 60px -22px rgba(0,0,0,.4); z-index: 101; }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu > a { font-size: 1.5rem; font-weight: 700; padding: 12px 0; opacity: 0; transform: translateX(16px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
  .nav__menu > a::after { display: none; }
  .nav__menu.open > a { opacity: 1; transform: none; }
  .nav__menu.open > a:nth-child(1) { transition-delay: .08s; }
  .nav__menu.open > a:nth-child(2) { transition-delay: .13s; }
  .nav__menu.open > a:nth-child(3) { transition-delay: .18s; }
  .nav__menu.open > a:nth-child(4) { transition-delay: .23s; }
  .nav__menu.open > a:nth-child(5) { transition-delay: .28s; }
  /* Mobile-CTA als sichtbarer Button (Specificity schlägt .nav__menu > a) */
  .nav__menu .nav__cta--mobile { display: inline-flex; color: #fff; background: var(--ink); font-size: 1.0625rem; font-weight: 600; padding: 16px 28px; margin-top: 20px; border-radius: 2px; }
  .nav__menu .nav__cta--mobile:hover { background: var(--ink-2); }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--line); }

  .nav__backdrop { display: block; position: fixed; inset: 0; background: rgba(10,10,10,.45); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; z-index: 95; }
  .nav__backdrop.show { opacity: 1; visibility: visible; }

  .services__grid, .team__grid { grid-template-columns: 1fr; }
  .stats__row { grid-template-columns: 1fr; }
  .stat { border-right: none; padding-left: 0 !important; }
  .testi-lead { padding: 44px 32px; }
  .testi-side { gap: 40px; }
  .footer__top { grid-template-columns: 1fr; gap: 44px; padding: 64px 24px 48px; }
  .footer__bottom { flex-direction: column; gap: 10px; align-items: flex-start; padding: 22px 24px; }
}
