
:root{
  --bg:#08101f;
  --bg-2:#0d1730;
  --panel:rgba(255,255,255,.05);
  --panel-2:rgba(255,255,255,.04);
  --line:rgba(255,255,255,.10);
  --text:#edf3ff;
  --muted:#b6c2df;
  --blue:#2f7cff;
  --cyan:#69e0ff;
  --shadow:0 20px 50px rgba(0,0,0,.28);
  --radius:24px;
  --max:1180px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  line-height:1.6;
  background:
    radial-gradient(circle at top right, rgba(47,124,255,.16), transparent 28%),
    radial-gradient(circle at left center, rgba(105,224,255,.10), transparent 22%),
    linear-gradient(180deg,#08101f 0%, #0c1530 100%);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(92%,var(--max));margin:0 auto}
.page-offset{scroll-margin-top:110px}

header{
  position:sticky;top:0;z-index:1000;
  background:rgba(8,13,28,.82);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.07);
  box-shadow:0 8px 30px rgba(0,0,0,.18);
}
.nav{
  min-height:84px;
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;padding:8px 0;
}
.logo-brand{
  display:inline-flex;align-items:center;gap:14px;
  font-weight:700;letter-spacing:.06em;flex-shrink:0
}
.site-logo{width:64px;height:64px;object-fit:contain}
.brand-text{color:var(--blue);line-height:1.1}
.nav-links{
  display:flex;gap:20px;flex-wrap:wrap;align-items:center;justify-content:center
}
.nav-links a{
  color:var(--muted);font-size:.95rem;white-space:nowrap;transition:.2s ease
}
.nav-links a:hover,.nav-links a.active{color:var(--text)}
.nav-cta{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:999px;font-weight:700;
  transition:transform .2s ease,opacity .2s ease;border:none;cursor:pointer
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  color:#08111f;box-shadow:var(--shadow)
}
.btn-secondary{
  color:var(--text);
  background:rgba(255,255,255,.04);
  border:1px solid var(--line)
}

.btn-teams{
  background: linear-gradient(135deg, #28a8ea, #7ee6ff);
  color: #07101d;
  box-shadow: 0 18px 40px rgba(41,168,234,.28);
  border: 1px solid rgba(255,255,255,.10);
}
.btn-teams:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(41,168,234,.34);
}

.hero, .page-hero{padding:92px 0 54px}
.hero-grid{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,460px);
  gap:72px;align-items:start
}
.eyebrow{
  display:inline-block;margin-bottom:18px;padding:8px 14px;border-radius:999px;
  border:1px solid rgba(105,224,255,.25);background:rgba(255,255,255,.04);
  color:var(--cyan);font-size:.88rem;letter-spacing:.04em
}
h1{
  font-size:clamp(2.7rem,5vw,4.8rem);
  line-height:1.04;margin-bottom:22px;max-width:12ch;text-wrap:balance
}
.hero-copy p,.page-hero p{
  font-size:1.11rem;color:var(--muted);max-width:58ch;margin-bottom:28px
}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:28px}
.hero-points{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.mini-card{
  background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:18px;
  padding:16px;color:var(--muted)
}

.hero-visual{
  position:relative;border-radius:30px;overflow:hidden;min-height:620px;
  border:1px solid rgba(255,255,255,.10);box-shadow:var(--shadow)
}
.hero-visual img{
  width:100%;height:100%;object-fit:cover
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(5,10,20,.10),rgba(5,10,20,.62))
}
.hero-card{
  position:absolute;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  width:min(calc(100% - 48px), 760px);
  background:rgba(6,11,24,.78);border:1px solid rgba(255,255,255,.08);
  border-radius:24px;padding:22px;backdrop-filter:blur(10px)
}
.hero-card h3{font-size:1.5rem;line-height:1.15;margin-bottom:10px}
.hero-card p{color:var(--muted);margin-bottom:0;font-size:1rem;max-width:none}

section{padding:34px 0}
.section-title{
  font-size:clamp(2rem,3vw,3rem);
  margin-bottom:14px
}
.section-lead{
  color:var(--muted);max-width:72ch;margin-bottom:28px
}
.grid-2,.grid-3{display:grid;gap:18px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{
  background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  padding:28px;box-shadow:var(--shadow)
}
.card h3{font-size:1.25rem;margin-bottom:12px}
.card p,.card li{color:var(--muted)}
.card ul{padding-left:18px;margin-top:10px}

.home-card-grid .card{
  transition:
    transform .26s ease,
    box-shadow .26s ease,
    border-color .26s ease,
    background-color .26s ease,
    filter .26s ease;
  will-change:transform;
}
.home-card-grid .card::before{
  background:
    radial-gradient(circle at 22% 24%, rgba(105,224,255,.08) 0%, rgba(47,124,255,.05) 26%, transparent 58%),
    linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.05) 50%, rgba(255,255,255,0) 100%);
}
.home-card-grid .card h3,
.home-card-grid .card p{
  transition:transform .26s ease, color .26s ease;
}
.home-card-grid .card:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 52px rgba(0,0,0,.30);
  border-color:rgba(105,224,255,.18);
  filter:brightness(1.015);
}
.home-card-grid .card:hover::before{
  opacity:.72;
}
.home-card-grid .card:hover h3{
  transform:translateY(-1px);
}
.home-card-grid .card:hover p{
  color:#c4d2eb;
}

body.no-scroll-reveal .hero-copy,
body.no-scroll-reveal .hero-visual,
body.no-scroll-reveal .page-hero .container,
body.no-scroll-reveal .card,
body.no-scroll-reveal .band,
body.no-scroll-reveal .partner-logo-box,
body.no-scroll-reveal .profile-photo-wrap,
body.no-scroll-reveal .teams-callout{
  opacity:1 !important;
}

.band{
  border-radius:30px;overflow:hidden;border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);position:relative;min-height:360px;
  transform:translateY(0);
  transition:
    transform .55s cubic-bezier(.22,1,.36,1),
    box-shadow .55s cubic-bezier(.22,1,.36,1)
}
.band img{
  width:100%;height:100%;object-fit:cover;
  transform:scale(1);
  filter:saturate(1) brightness(1);
  transition:
    transform .85s cubic-bezier(.22,1,.36,1),
    filter .85s ease
}
.band-copy{
  position:absolute;left:28px;right:28px;bottom:28px;
  background:rgba(6,11,24,.76);border:1px solid rgba(255,255,255,.08);
  border-radius:24px;padding:22px;max-width:620px;
  transform:translateY(0);
  transition:
    transform .78s cubic-bezier(.22,1,.36,1),
    box-shadow .78s cubic-bezier(.22,1,.36,1),
    border-color .62s ease,
    background .62s ease
}
.band-copy h2{
  font-size:1.8rem;
  margin-bottom:8px;
  transform:translateY(0);
  transition:transform .62s cubic-bezier(.22,1,.36,1), color .48s ease;
}
.band-copy p{
  color:var(--muted);
  transform:translateY(0);
  transition:transform .68s cubic-bezier(.22,1,.36,1), color .5s ease
}

.partner-logos{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px
}
.partner-logo-box{
  display:flex;flex-direction:column;align-items:center;justify-content:flex-start;
  min-height:240px;padding:22px;border-radius:22px;border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03)
}
.partner-logo{width:100%;height:auto;object-fit:contain;max-height:110px;margin-bottom:14px}
.partner-logo-klarstand{max-height:86px}
.partner-logo-prodevelop{max-height:120px}
.partner-copy{color:var(--muted);font-size:.98rem;line-height:1.6;width:100%}
.partner-copy strong{color:var(--text)}

.about-profile{
  display:grid;grid-template-columns:340px 1fr;gap:22px;align-items:stretch
}
.profile-photo-wrap{
  position:relative;border-radius:24px;overflow:hidden;border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg,rgba(47,124,255,.10),rgba(255,255,255,.03));
  box-shadow:var(--shadow)
}
.profile-photo{width:100%;height:100%;min-height:420px;object-fit:cover;object-position:center top}
.profile-badge{
  transition: transform .35s ease, box-shadow .35s ease;
  position:absolute;left:18px;bottom:18px;padding:10px 14px;border-radius:999px;
  background:rgba(7,13,28,.78);border:1px solid rgba(255,255,255,.12);
  color:var(--cyan);font-size:.84rem;letter-spacing:.06em;font-weight:700
}

.contact-wrap{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.contact-box a,.footer a,.legal a{color:var(--cyan)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:12px}
.field{display:flex;flex-direction:column;gap:8px}
.field-full{grid-column:1 / -1}
.field label{font-weight:700;font-size:.95rem}
.field input,.field textarea{
  width:100%;padding:14px 16px;border-radius:16px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.10);
  color:var(--text);font:inherit;outline:none
}
.field input:focus,.field textarea:focus{
  border-color:rgba(105,224,255,.55);
  box-shadow:0 0 0 3px rgba(105,224,255,.10)
}
.note{color:var(--muted);font-size:.95rem;margin-top:10px}
.legal h3{margin:24px 0 10px;font-size:1.08rem}


.footer{
  padding: 36px 0 46px;
  color: var(--muted);
  font-size: .94rem;
}
.footer-inner{
  text-align: center;
}
.footer-line{
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 20px;
}

.footer-copy{
  margin: 0;
}
.footer-slogan{
  margin-top: 10px;
  color: var(--text);
  font-weight: 700;
}
.footer-subline{
  margin-top: 4px;
  color: var(--cyan);
}
.footer-links{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer-address{
  margin-top: 12px;
  line-height: 1.65;
}
@media (max-width: 640px){
  .footer{
    padding: 30px 0 40px;
  }
  .footer-inner{
    text-align: left;
  }
  .footer-links{
    justify-content: flex-start;
    gap: 8px;
    line-height: 1.6;
  }
  .footer-address{
    max-width: 32ch;
  }
}
@media (max-width:1320px){
  .hero-grid{grid-template-columns:1fr;gap:28px}
  .hero-visual{max-width:760px;width:100%;margin-left:auto}
}
@media (max-width:980px){
  .grid-2,.grid-3,.contact-wrap,.about-profile,.partner-logos,.form-grid,.hero-points{
    grid-template-columns:1fr
  }
  .nav{align-items:flex-start;flex-direction:column}
}
@media (max-width:640px){
  .site-logo{width:54px;height:54px}
  .brand-text{font-size:.95rem}
  h1{font-size:clamp(2.2rem,10vw,3.4rem);max-width:none}
  .btn{width:100%}
  .hero-actions{flex-direction:column;width:100%}
  .hero,.page-hero{padding-top:74px}
}


.teams-callout{
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(126,230,255,.18);
  background:
    radial-gradient(circle at top right, rgba(126,230,255,.12), transparent 35%),
    linear-gradient(145deg, rgba(20,45,88,.92), rgba(12,24,46,.96));
  box-shadow: 0 22px 46px rgba(24,126,194,.22);
}
.teams-callout h3{
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.teams-callout p{
  color: var(--muted);
  margin-bottom: 16px;
}
.teams-callout .btn{
  width: auto;
}


.graph-highlight{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,0.95fr);
  gap:18px;
  align-items:stretch;
}
.graph-image-card{
  overflow:hidden;
  padding:0;
}
.graph-image{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}
.graph-copy{
  display:grid;
  gap:18px;
}
.graph-note{
  color:var(--muted);
}
@media (max-width:980px){
  .graph-highlight{
    grid-template-columns:1fr;
  }
  .graph-image{
    min-height:300px;
  }
}


/* subtle motion */
@media (prefers-reduced-motion: no-preference){
  .is-visible{
    opacity: 1;
    transform: translateY(0);
  }

  .card:hover,
  .partner-logo-box:hover,
  .teams-callout:hover{
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 30px 62px rgba(0,0,0,.38);
    border-color: rgba(105,224,255,.26);
    filter: brightness(1.02);
  }

  .band:hover,
  .profile-photo-wrap:hover{
    transform: translateY(-6px) scale(1.008);
    box-shadow: 0 30px 62px rgba(0,0,0,.38);
    filter: brightness(1.02);
  }

  .btn{
    transition: transform .2s ease, opacity .2s ease, box-shadow .25s ease, filter .25s ease;
  }

  .btn:hover{
    filter: brightness(1.06);
    box-shadow: 0 18px 38px rgba(0,0,0,.20);
  }

  .site-logo{
    transition: transform .35s ease, filter .35s ease;
  }

  .logo-brand:hover .site-logo{
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 10px 20px rgba(47,124,255,.18));
  }

  .hero-visual img,
  .band img{
    transition: transform 1.2s ease;
  }

  .hero-visual:hover img,
  .band:hover img{
    transform: scale(1.03);
  }
}


.contact-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,460px);
  gap:72px;
  align-items:center;
}
.contact-hero-visual{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  min-height:620px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}
.contact-hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.contact-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(5,10,20,.08),rgba(5,10,20,.48));
}
.contact-hero-card{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  background:rgba(6,11,24,.78);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:20px;
  backdrop-filter:blur(10px);
}
.contact-hero-card h3{
  font-size:1.35rem;
  margin-bottom:8px;
}
.contact-hero-card p{
  color:var(--muted);
}
@media (max-width:1320px){
  .contact-hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .contact-hero-visual{
    max-width:760px;
    width:100%;
    margin-left:auto;
  }
}
@media (max-width:640px){
  .contact-hero-visual{
    min-height:360px;
  }
}


/* stronger partner animations */
.partner-logos .partner-logo-box{
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.partner-logos .partner-logo-box::before{
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(105,224,255,.16) 0%, rgba(47,124,255,.10) 30%, transparent 65%);
  opacity: 0;
  transform: scale(.8);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.partner-logos .partner-logo-box:hover{
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 34px 70px rgba(0,0,0,.42);
  border-color: rgba(105,224,255,.30);
  background: linear-gradient(145deg, rgba(17,34,68,.95), rgba(11,22,44,.96));
}
.partner-logos .partner-logo-box:hover::before{
  opacity: 1;
  transform: scale(1);
}
.partner-logos .partner-logo{
  transition: transform .45s ease, filter .45s ease;
}
.partner-logos .partner-logo-box:hover .partner-logo{
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 10px 24px rgba(105,224,255,.16));
}
.partner-logos .partner-copy{
  transition: transform .35s ease, color .35s ease;
}
.partner-logos .partner-logo-box:hover .partner-copy{
  transform: translateY(-2px);
  color: #c9d7f3;
}


/* stronger button animation */
.btn{
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition:
    transform .28s cubic-bezier(.22,.61,.36,1),
    box-shadow .28s ease,
    filter .28s ease,
    background .35s ease,
    border-color .28s ease,
    color .28s ease;
}
.btn::before{
  content: "";
  position: absolute;
  top: -120%;
  left: -35%;
  width: 30%;
  height: 340%;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.28) 50%,
    rgba(255,255,255,0) 100%
  );
  opacity: 0;
  transition: left .55s ease, opacity .35s ease;
  pointer-events: none;
}
.btn:hover{
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.07);
}
.btn:hover::before{
  left: 120%;
  opacity: 1;
}
.btn:active{
  transform: translateY(-1px) scale(.99);
}
.btn-primary:hover{
  box-shadow: 0 24px 52px rgba(47,124,255,.34);
}
.btn-secondary:hover{
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  border-color: rgba(105,224,255,.26);
  background: rgba(255,255,255,.08);
}
.btn-teams:hover{
  box-shadow: 0 24px 52px rgba(41,168,234,.38);
}


.usecase-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:84px;
  align-items:center;
}
.usecase-visual{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  min-height:460px;
  max-width:380px;
  width:100%;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  background:
    radial-gradient(circle at top right, rgba(105,224,255,.08), transparent 32%),
    linear-gradient(145deg, rgba(10,18,38,.98), rgba(16,29,54,.96));
  margin-left:auto;
  margin-top: 145px;
}
.usecase-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.usecase-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(5,10,20,.06), rgba(5,10,20,.34));
}
.usecase-note{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:var(--cyan);
  font-size:.82rem;
  letter-spacing:.04em;
}
.usecase-targets li{
  margin-bottom:8px;
}
.usecase-visual{
    max-width:820px;
    width:100%;
    margin-left:auto;
  }
}
@media (max-width:640px){
  .usecase-visual{
    min-height:340px;
  }
}


/* polished fitment use case */
.usecase-copy{
  position: relative;
  z-index: 2;
}
.usecase-copy h1{
  max-width: 8.6ch;
}
.usecase-lead{
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 22px;
}
.usecase-visual{
  background:
    radial-gradient(circle at top right, rgba(105,224,255,.08), transparent 32%),
    linear-gradient(145deg, rgba(10,18,38,.98), rgba(16,29,54,.96));
}
.usecase-visual-frame{
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.usecase-hero-card{
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(6,11,24,.84);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 14px 16px;
  backdrop-filter: blur(10px);
}
.usecase-hero-card h3{
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.usecase-hero-card p{
  color: var(--muted);
}
.usecase-badges{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 10px;
}
.usecase-badge{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  color: var(--muted);
  font-size: .94rem;
}
.usecase-badge strong{
  color: var(--text);
}
.usecase-grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
@media (max-width: 980px){
  .usecase-grid-3{
    grid-template-columns: 1fr;
  }
}


.usecase-visual{
    max-width:820px;
    width:100%;
    margin-left:auto;
  }
  .usecase-copy h1{
    max-width: 10ch;
  }
}


@media (max-width: 1380px){
  .usecase-hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .usecase-visual{
    max-width:760px;
    min-height:420px;
    width:100%;
    margin-left:auto;
    margin-right:auto;
    margin-top: 0;
  }
  .usecase-copy h1{
    max-width: 10ch;
  }
}


/* portrait and contact image animation */
.profile-photo{
  transition: transform .9s ease, filter .35s ease;
}
.profile-photo-wrap:hover .profile-photo{
  transform: scale(1.04);
  filter: brightness(1.03);
}

.contact-hero-visual{
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.contact-hero-visual img{
  transition: transform 1s ease, filter .35s ease;
}
.contact-hero-visual:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 62px rgba(0,0,0,.38);
  border-color: rgba(105,224,255,.24);
}
.contact-hero-visual:hover img{
  transform: scale(1.04);
  filter: brightness(1.03);
}


.leistungen-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,460px);
  gap:72px;
  align-items:center;
}
.leistungen-hero-visual{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  min-height:560px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.leistungen-hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform 1s ease, filter .35s ease;
}
.leistungen-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(5,10,20,.08),rgba(5,10,20,.40));
}
.leistungen-hero-card{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  background:rgba(6,11,24,.78);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:20px;
  backdrop-filter:blur(10px);
}
.leistungen-hero-card h3{
  font-size:1.28rem;
  margin-bottom:8px;
}
.leistungen-hero-card p{
  color:var(--muted);
}
.leistungen-hero-visual:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 62px rgba(0,0,0,.38);
  border-color: rgba(105,224,255,.24);
}
.leistungen-hero-visual:hover img{
  transform: scale(1.04);
  filter: brightness(1.03);
}
@media (max-width:1320px){
  .leistungen-hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .leistungen-hero-visual{
    max-width:760px;
    width:100%;
    margin-left:auto;
  }
}
@media (max-width:640px){
  .leistungen-hero-visual{
    min-height:360px;
  }
}


/* stronger animation for articlecrossing graph */
.graph-image-card{
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease, filter .38s ease;
}
.graph-image{
  transition: transform 1.15s ease, filter .45s ease;
}
.graph-image-card::before{
  content:"";
  position:absolute;
  inset:-20%;
  background: radial-gradient(circle, rgba(105,224,255,.16) 0%, rgba(47,124,255,.10) 35%, transparent 68%);
  opacity:0;
  transform: scale(.88);
  transition: opacity .42s ease, transform .42s ease;
  pointer-events:none;
}
.graph-image-card:hover{
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 34px 70px rgba(0,0,0,.42);
  border-color: rgba(105,224,255,.28);
  filter: brightness(1.02);
}
.graph-image-card:hover::before{
  opacity:1;
  transform: scale(1);
}
.graph-image-card:hover .graph-image{
  transform: scale(1.055);
  filter: brightness(1.06) saturate(1.06);
}


/* cookie consent */
.cookie-banner{
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 5000;
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(12,24,48,.98), rgba(16,34,66,.98));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.34);
  border-radius: 26px;
  padding: 24px 26px;
  backdrop-filter: blur(14px);
}
.cookie-banner.is-hidden{ display:none; }
.cookie-title{
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-text{
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.cookie-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
  align-items:center;
}
.cookie-link{
  color: var(--cyan);
  text-decoration:none;
  font-weight:700;
}
.cookie-settings-btn{
  position: fixed;
  left: 20px;
  bottom: 18px;
  z-index: 4900;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(9,18,35,.92);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
  cursor: pointer;
}
.cookie-settings-btn.is-hidden{ display:none; }
@media (max-width:640px){
  .cookie-banner{
    left:12px;
    right:12px;
    bottom:12px;
    padding:18px;
    border-radius:20px;
  }
  .cookie-title{ font-size:1.25rem; }
  .cookie-actions .btn{ width:100%; }
}


.about-hero-visual{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  min-height:520px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  background:
    radial-gradient(circle at top right, rgba(105,224,255,.08), transparent 35%),
    linear-gradient(145deg, rgba(10,18,38,.98), rgba(16,29,54,.96));
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.about-hero-visual img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:34px;
  transition: transform 1s ease, filter .35s ease;
}
.about-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(5,10,20,.04),rgba(5,10,20,.20));
  pointer-events:none;
}
.about-hero-visual:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 62px rgba(0,0,0,.38);
  border-color: rgba(105,224,255,.24);
}
.about-hero-visual:hover img{
  transform: scale(1.04);
  filter: brightness(1.03);
}


.about-top-logo-visual{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  min-height:520px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  background:
    radial-gradient(circle at top right, rgba(105,224,255,.08), transparent 35%),
    linear-gradient(145deg, rgba(10,18,38,.98), rgba(16,29,54,.96));
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.about-top-logo-image{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:26px 26px 150px 26px;
  transition: transform 1s ease, filter .35s ease;
}
.about-top-logo-visual:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 62px rgba(0,0,0,.38);
  border-color: rgba(105,224,255,.24);
}
.about-top-logo-visual:hover .about-top-logo-image{
  transform: scale(1.04);
  filter: brightness(1.03);
}


.about-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,460px);
  gap:72px;
  align-items:center;
}
.about-top-logo-visual{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  min-height:520px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  background:
    radial-gradient(circle at top right, rgba(105,224,255,.08), transparent 35%),
    linear-gradient(145deg, rgba(10,18,38,.98), rgba(16,29,54,.96));
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.about-top-logo-image{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:26px 26px 150px 26px;
  transition: transform 1s ease, filter .35s ease;
}
.about-top-logo-visual:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 62px rgba(0,0,0,.38);
  border-color: rgba(105,224,255,.24);
}
.about-top-logo-visual:hover .about-top-logo-image{
  transform: scale(1.04);
  filter: brightness(1.03);
}
@media (max-width:1320px){
  .about-hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .about-top-logo-visual{
    max-width:760px;
    width:100%;
    margin-left:auto;
  }
}
@media (max-width:640px){
  .about-top-logo-visual{
    min-height:360px;
  }
}


.about-logo-slogan{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  width:min(88%, 760px);
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(6,11,24,.80);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  box-shadow:0 16px 34px rgba(0,0,0,.22);
  z-index:12;
  transition:
    transform .38s cubic-bezier(.22,.61,.36,1),
    box-shadow .38s ease,
    border-color .38s ease,
    background .38s ease,
    filter .38s ease;
}
.about-logo-slogan strong{
  font-size:1.02rem;
  margin-bottom:4px;
  color:var(--text);
  line-height:1.35;
}
.about-logo-slogan span{
  color:var(--cyan);
  font-size:.98rem;
}


.articlecross-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,460px);
  gap:72px;
  align-items:center;
}
.articlecross-hero-visual{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  min-height:560px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease, filter .38s ease;
}
.articlecross-hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform 1.15s ease, filter .45s ease;
}
.articlecross-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(5,10,20,.08),rgba(5,10,20,.38));
}
.articlecross-hero-card{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  background:rgba(6,11,24,.78);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:18px 20px;
  backdrop-filter:blur(10px);
}
.articlecross-hero-card h3{
  font-size:1.2rem;
  margin-bottom:8px;
}
.articlecross-hero-card p{
  color:var(--muted);
}
.articlecross-hero-visual::before{
  content:"";
  position:absolute;
  inset:-20%;
  background: radial-gradient(circle, rgba(105,224,255,.16) 0%, rgba(47,124,255,.10) 35%, transparent 68%);
  opacity:0;
  transform: scale(.88);
  transition: opacity .42s ease, transform .42s ease;
  pointer-events:none;
}
.articlecross-hero-visual:hover{
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 34px 70px rgba(0,0,0,.42);
  border-color: rgba(105,224,255,.28);
  filter: brightness(1.02);
}
.articlecross-hero-visual:hover::before{
  opacity:1;
  transform: scale(1);
}
.articlecross-hero-visual:hover img{
  transform: scale(1.055);
  filter: brightness(1.06) saturate(1.06);
}
@media (max-width:1320px){
  .articlecross-hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .articlecross-hero-visual{
    max-width:760px;
    width:100%;
    margin-left:auto;
  }
}
@media (max-width:640px){
  .articlecross-hero-visual{
    min-height:360px;
  }
}


/* stronger homepage block animation */
.home-card-boost{
  position: relative;
  overflow: hidden;
  transition:
    transform .38s cubic-bezier(.22,.61,.36,1),
    box-shadow .38s ease,
    border-color .38s ease,
    background .38s ease,
    filter .38s ease;
}
.home-card-boost::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 20% 30%, rgba(105,224,255,.12) 0%, rgba(47,124,255,.08) 24%, transparent 58%),
    linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.10) 50%, rgba(255,255,255,0) 100%);
  opacity:0;
  transform: scale(.9) translateX(-8%);
  transition: opacity .42s ease, transform .42s ease;
  pointer-events:none;
}
.home-card-boost > *{
  position: relative;
  z-index: 1;
}
.home-card-boost h3,
.home-card-boost p,
.home-card-boost .mini-card{
  transition: transform .35s ease, color .35s ease, opacity .35s ease;
}
.home-card-boost:hover{
  transform: translateY(-9px) scale(1.012);
  box-shadow: 0 34px 72px rgba(0,0,0,.42);
  border-color: rgba(105,224,255,.26);
  filter: brightness(1.02);
}
.home-card-boost:hover::before{
  opacity:1;
  transform: scale(1) translateX(0);
}
.home-card-boost:hover h3{
  transform: translateY(-2px);
}
.home-card-boost:hover p{
  transform: translateY(-1px);
  color:#c9d7f3;
}
.home-card-boost:hover .mini-card{
  transform: translateY(-2px);
}


/* stronger full animation for homepage top-right hero block */
.hero-visual{
  transition:
    transform .42s cubic-bezier(.22,.61,.36,1),
    box-shadow .42s ease,
    border-color .42s ease,
    filter .42s ease,
    background .42s ease;
}
.hero-visual::before{
  content:"";
  position:absolute;
  inset:-18%;
  background:
    radial-gradient(circle at 25% 20%, rgba(105,224,255,.14) 0%, rgba(47,124,255,.08) 28%, transparent 58%),
    linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.12) 48%, rgba(255,255,255,0) 100%);
  opacity:0;
  transform: scale(.92) translateX(-6%);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events:none;
  z-index:0;
}
.hero-visual > *{
  position:relative;
  z-index:1;
}
.hero-visual img{
  transition: transform 1.2s ease, filter .45s ease;
}
.hero-overlay{
  transition: opacity .35s ease, background .35s ease;
}
.hero-card{
  transition:
    transform .38s ease,
    box-shadow .38s ease,
    border-color .38s ease,
    background .38s ease;
}
.hero-card h3,
.hero-card p,
.hero-card .eyebrow{
  transition: transform .35s ease, color .35s ease, opacity .35s ease;
}
.hero-visual:hover{
  transform: translateY(-10px) scale(1.014);
  box-shadow: 0 36px 78px rgba(0,0,0,.44);
  border-color: rgba(105,224,255,.30);
  filter: brightness(1.02);
}
.hero-visual:hover::before{
  opacity:1;
  transform: scale(1) translateX(0);
}
.hero-visual:hover img{
  transform: scale(1.065);
  filter: brightness(1.07) saturate(1.06);
}
.hero-visual:hover .hero-overlay{
  background: linear-gradient(180deg, rgba(5,10,20,.04), rgba(5,10,20,.34));
}
.hero-visual:hover .hero-card{
  transform: translateX(-50%) translateY(-4px);
}
.hero-visual:hover .hero-card h3{
  transform: translateY(-2px);
}
.hero-visual:hover .hero-card p{
  transform: translateY(-1px);
  color:#c9d7f3;
}
.hero-visual:hover .hero-card .eyebrow{
  transform: translateY(-1px);
}


/* stronger global text block animation */
.card,
.partner-logo-box,
.teams-callout,
.contact-box,
.graph-copy .card,
.usecase-copy,
.usecase-badge,
.about-logo-slogan{
  position: relative;
  overflow: hidden;
  transition:
    transform .38s cubic-bezier(.22,.61,.36,1),
    box-shadow .38s ease,
    border-color .38s ease,
    background .38s ease,
    filter .38s ease;
}
.card::before,
.partner-logo-box::before,
.teams-callout::before,
.contact-box::before,
.graph-copy .card::before,
.usecase-copy::before,
.usecase-badge::before,
.about-logo-slogan::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 20% 30%, rgba(105,224,255,.12) 0%, rgba(47,124,255,.08) 24%, transparent 58%),
    linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,0) 100%);
  opacity:0;
  transform: scale(.9) translateX(-8%);
  transition: opacity .42s ease, transform .42s ease;
  pointer-events:none;
}
.card > *,
.partner-logo-box > *,
.teams-callout > *,
.contact-box > *,
.graph-copy .card > *,
.usecase-copy > *,
.usecase-badge > *,
.about-logo-slogan > *{
  position: relative;
  z-index: 1;
}
.card h2, .card h3, .card p, .card li,
.partner-logo-box h2, .partner-logo-box h3, .partner-logo-box p,
.teams-callout h2, .teams-callout h3, .teams-callout p,
.contact-box h2, .contact-box h3, .contact-box p,
.graph-copy .card h2, .graph-copy .card h3, .graph-copy .card p,
.usecase-copy h1, .usecase-copy p,
.usecase-badge strong, .usecase-badge span,
.about-logo-slogan strong, .about-logo-slogan span{
  transition: transform .35s ease, color .35s ease, opacity .35s ease;
}
.card:hover,
.partner-logo-box:hover,
.teams-callout:hover,
.contact-box:hover,
.graph-copy .card:hover,
.usecase-copy:hover,
.usecase-badge:hover,
.about-logo-slogan:hover{
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(0,0,0,.30);
  border-color: rgba(105,224,255,.18);
  filter: brightness(1.015);
}
.card:hover::before,
.partner-logo-box:hover::before,
.teams-callout:hover::before,
.contact-box:hover::before,
.graph-copy .card:hover::before,
.usecase-copy:hover::before,
.usecase-badge:hover::before,
.about-logo-slogan:hover::before{
  opacity:1;
  transform: scale(1) translateX(0);
}
.card:hover h2, .card:hover h3,
.partner-logo-box:hover h2, .partner-logo-box:hover h3,
.teams-callout:hover h2, .teams-callout:hover h3,
.contact-box:hover h2, .contact-box:hover h3,
.graph-copy .card:hover h2, .graph-copy .card:hover h3,
.usecase-copy:hover h1,
.about-logo-slogan:hover strong{
  transform: translateY(-1px);
}
.card:hover p, .card:hover li,
.partner-logo-box:hover p,
.teams-callout:hover p,
.contact-box:hover p,
.graph-copy .card:hover p,
.usecase-copy:hover p,
.usecase-badge:hover span,
.about-logo-slogan:hover span{
  color:#c4d2eb;
}





.hero-cta-note{
  margin-top: 14px;
  color: var(--muted);
  font-size: .98rem;
}


/* mobile overlay cards lower and lighter without changing desktop */
@media (max-width: 768px){
  .hero-card,
  .leistungen-hero-card,
  .articlecross-hero-card,
  .contact-hero-card{
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px 16px 18px;
    border-radius: 18px;
    background: rgba(6,11,24,.72);
    backdrop-filter: blur(8px);
  }

  .hero-card{
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(calc(100% - 28px), 92vw);
  }

  .hero-card h3,
  .leistungen-hero-card h3,
  .articlecross-hero-card h3,
  .contact-hero-card h3{
    font-size: 1.05rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .hero-card p,
  .leistungen-hero-card p,
  .articlecross-hero-card p,
  .contact-hero-card p{
    font-size: .96rem;
    line-height: 1.5;
  }

  .hero-visual,
  .leistungen-hero-visual,
  .articlecross-hero-visual,
  .contact-hero-visual{
    min-height: 430px;
  }
}





.contact-signature-card{
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(6,11,24,.82);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition:
    transform .38s cubic-bezier(.22,.61,.36,1),
    box-shadow .38s ease,
    border-color .38s ease,
    background .38s ease,
    filter .38s ease;
}
.contact-signature-card h3{
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.contact-signature-card p{
  color: var(--muted);
  line-height: 1.65;
}


.contact-signature-card::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 20% 30%, rgba(105,224,255,.12) 0%, rgba(47,124,255,.08) 24%, transparent 58%),
    linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,0) 100%);
  opacity:0;
  transform: scale(.9) translateX(-8%);
  transition: opacity .42s ease, transform .42s ease;
  pointer-events:none;
}
.contact-signature-card > *{
  position:relative;
  z-index:1;
}
.contact-signature-card h3,
.contact-signature-card p{
  transition: transform .35s ease, color .35s ease, opacity .35s ease;
}
.contact-signature-card:hover{
  transform: translateY(-9px) scale(1.012);
  box-shadow: 0 34px 72px rgba(0,0,0,.42);
  border-color: rgba(105,224,255,.26);
  filter: brightness(1.02);
}
.contact-signature-card:hover::before{
  opacity:1;
  transform: scale(1) translateX(0);
}
.contact-signature-card:hover h3{
  transform: translateY(-2px);
}
.contact-signature-card:hover p{
  transform: translateY(-1px);
  color:#c9d7f3;
}




.contact-signature-card--inside{
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
  margin-top: 0;
  z-index: 3;
}

@media (max-width: 768px){
  .contact-hero-visual{
    min-height: 520px;
  }
  .contact-signature-card--inside{
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px 18px 20px;
    border-radius: 18px;
  }
}








  transition:
    transform .42s cubic-bezier(.22,.61,.36,1),
    box-shadow .42s ease,
    border-color .42s ease,
    filter .42s ease;
}
.profile-photo-wrap.about-hero-visual::before{
  content:"";
  position:absolute;
  inset:-18%;
  background:
    radial-gradient(circle at 25% 20%, rgba(105,224,255,.14) 0%, rgba(47,124,255,.08) 28%, transparent 58%),
    linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.10) 48%, rgba(255,255,255,0) 100%);
  opacity:0;
  transform: scale(.92) translateX(-6%);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events:none;
  z-index:0;
}
.profile-photo-wrap.about-hero-visual > *{
  position:relative;
  z-index:1;
}
.profile-photo-wrap.about-hero-visual:hover{
  transform: translateY(-10px) scale(1.014);
  box-shadow: 0 36px 78px rgba(0,0,0,.44);
  border-color: rgba(105,224,255,.30);
  filter: brightness(1.02);
}
.profile-photo-wrap.about-hero-visual:hover::before{
  opacity:1;
  transform: scale(1) translateX(0);
}
.profile-photo-wrap.about-hero-visual:hover .profile-photo{
  transform: scale(1.06);
  filter: brightness(1.06) saturate(1.05);
}
.profile-photo-wrap.about-hero-visual:hover .profile-badge{
  transition: transform .35s ease, box-shadow .35s ease;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,.24);
}





@media (max-width: 768px){
  .about-photo-copy--inside{
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 20;
    padding: 18px 18px 20px;
    border-radius: 18px;
  }
}


.about-closing-note{
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.65;
}







.profile-photo-wrap.about-hero-visual{
  position:relative;
  overflow:hidden;
  min-height:560px;
  transition:
    transform .42s cubic-bezier(.22,.61,.36,1),
    box-shadow .42s ease,
    border-color .42s ease,
    filter .42s ease;
}

.profile-photo-wrap.about-hero-visual::before{
  content:"";
  position:absolute;
  inset:-18%;
  background:
    radial-gradient(circle at 25% 20%, rgba(105,224,255,.14) 0%, rgba(47,124,255,.08) 28%, transparent 58%),
    linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.10) 48%, rgba(255,255,255,0) 100%);
  opacity:0;
  transform: scale(.92) translateX(-6%);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events:none;
  z-index:0;
}

.profile-photo-wrap.about-hero-visual > *{
  position:relative;
  z-index:1;
}

.profile-photo-wrap.about-hero-visual:hover{
  transform: translateY(-10px) scale(1.014);
  box-shadow: 0 36px 78px rgba(0,0,0,.44);
  border-color: rgba(105,224,255,.30);
  filter: brightness(1.02);
}

.profile-photo-wrap.about-hero-visual:hover::before{
  opacity:1;
  transform: scale(1) translateX(0);
}

.profile-photo-wrap.about-hero-visual:hover .profile-photo{
  transform: scale(1.06);
  filter: brightness(1.06) saturate(1.05);
}

.about-image-label{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:12;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(6,11,24,.82);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  transition:
    transform .38s cubic-bezier(.22,.61,.36,1),
    box-shadow .38s ease,
    border-color .38s ease,
    background .38s ease,
    filter .38s ease;
}

.about-image-label strong,
.about-image-label span{
  display:block;
  position:relative;
  z-index:1;
}

.about-image-label strong{
  font-size:1.02rem;
  margin-bottom:4px;
  color:var(--text);
}

.about-image-label span{
  color:var(--cyan);
  font-size:.96rem;
}

.about-image-label::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 20% 30%, rgba(105,224,255,.12) 0%, rgba(47,124,255,.08) 24%, transparent 58%),
    linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,0) 100%);
  opacity:0;
  transform:scale(.9) translateX(-8%);
  transition:opacity .42s ease, transform .42s ease;
  pointer-events:none;
}

.profile-photo-wrap.about-hero-visual:hover .about-image-label{
  transform:translateY(-4px);
  box-shadow:0 28px 56px rgba(0,0,0,.34);
  border-color:rgba(105,224,255,.22);
}

.profile-photo-wrap.about-hero-visual:hover .about-image-label::before{
  opacity:1;
  transform:scale(1) translateX(0);
}

@media (max-width:768px){
  .profile-photo-wrap.about-hero-visual{
    min-height:520px;
  }
  .about-image-label{
    left:14px;
    right:14px;
    bottom:14px;
    padding:14px 16px;
    border-radius:18px;
  }
}


.about-profile--single{
  max-width: 980px;
  margin: 0 auto;
}


.about-rebuilt{
  display:grid;
  grid-template-columns:minmax(300px,380px) minmax(0,1fr);
  gap:28px;
  align-items:start;
}

.about-rebuilt-image .profile-photo-wrap{
  min-height:100%;
  border-radius:26px;
  transform:translateY(0);
  transition:
    transform .65s cubic-bezier(.22,1,.36,1),
    box-shadow .65s cubic-bezier(.22,1,.36,1),
    border-color .55s ease,
    filter .55s ease;
}

.about-rebuilt-image .profile-photo{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  object-position:center top;
  transform:scale(1);
  filter:brightness(1) saturate(1);
  transition:
    transform .9s cubic-bezier(.22,1,.36,1),
    filter .7s ease;
}

.about-rebuilt-copy > p{
  max-width:none;
}

.about-rebuilt-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:22px;
}

.about-info-card{
  padding:24px;
  box-shadow:none;
  background:rgba(255,255,255,.03);
}

.about-info-card ul{
  padding-left:20px;
}

.about-info-card li{
  margin-bottom:10px;
}

@media (max-width: 980px){
  .about-rebuilt{
    grid-template-columns:1fr;
    gap:22px;
  }

  .about-rebuilt-image{
    max-width:720px;
  }

  .about-rebuilt-grid{
    grid-template-columns:1fr;
  }

  .about-rebuilt-copy .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .about-rebuilt-copy .hero-actions .btn{
    width:100%;
    justify-content:center;
  }
}


.about-image-tag{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:12;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(6,11,24,.80);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  box-shadow:0 16px 34px rgba(0,0,0,.22);
  transform:translateY(0);
  transition:
    transform .6s cubic-bezier(.22,1,.36,1),
    box-shadow .6s cubic-bezier(.22,1,.36,1),
    border-color .5s ease,
    background .5s ease,
    filter .5s ease;
}
.about-image-tag strong,
.about-image-tag span{
  display:block;
  position:relative;
  z-index:1;
  transition:color .45s ease, transform .45s ease;
}
.about-image-tag strong{
  font-size:1rem;
  margin-bottom:4px;
  color:var(--text);
}
.about-image-tag span{
  color:var(--cyan);
  font-size:.94rem;
}
.about-image-tag::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 20% 30%, rgba(105,224,255,.12) 0%, rgba(47,124,255,.08) 24%, transparent 58%),
    linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,0) 100%);
  opacity:0;
  transform:scale(.9) translateX(-8%);
  transition:opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
}
.about-rebuilt-image .profile-photo-wrap:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 58px rgba(0,0,0,.34);
  border-color:rgba(105,224,255,.20);
  filter:brightness(1.015);
}
.about-rebuilt-image .profile-photo-wrap:hover .profile-photo{
  transform:scale(1.045) translateY(-1px);
  filter:brightness(1.04) saturate(1.03);
}
.profile-photo-wrap:hover .about-image-tag{
  transform:translateY(-6px);
  box-shadow:0 22px 44px rgba(0,0,0,.28);
  border-color:rgba(105,224,255,.22);
  background:linear-gradient(145deg, rgba(8,14,30,.92), rgba(22,38,68,.88));
}
.profile-photo-wrap:hover .about-image-tag::before{
  opacity:1;
  transform:scale(1) translateX(0);
}
.profile-photo-wrap:hover .about-image-tag strong{
  transform:translateY(-1px);
}
.profile-photo-wrap:hover .about-image-tag span{
  color:#88e2ff;
}
@media (max-width: 980px){
  .about-image-tag{
    left:14px;
    right:14px;
    bottom:14px;
    padding:13px 15px;
    border-radius:16px;
  }
}





.about-top-logo-visual:hover .about-logo-slogan{
  transform:translateX(-50%) translateY(-4px);
  box-shadow:0 24px 48px rgba(0,0,0,.30);
  border-color:rgba(105,224,255,.22);
}

@media (max-width:768px){
  .about-logo-slogan{
    left:50%;
    right:auto;
    bottom:14px;
    transform:translateX(-50%);
    width:min(calc(100% - 28px), 620px);
    padding:13px 15px;
    border-radius:16px;
  }
}


@media (max-width: 768px){
  .band-copy{
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px 16px 18px;
    border-radius: 18px;
  }

  .band-copy h2{
    font-size: 1.28rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .band-copy p{
    font-size: .96rem;
    line-height: 1.5;
    max-width: none;
    margin-bottom: 0;
  }

  .band{
    min-height: 320px;
  }
}




  .form-toast-card h3{
    font-size: 1.35rem;
  }
}


.contact-success-dialog h3{
    font-size: 1.55rem;
  }

  .contact-success-dialog p{
    font-size: .98rem;
  }
}


.contact-success-dialog h3{
    font-size: 1.55rem !important;
  }

  .contact-success-dialog p{
    font-size: .98rem !important;
  }
}


.contact-success-dialog h3{
    font-size: 1.55rem !important;
  }

  .contact-success-dialog p{
    font-size: .98rem !important;
  }
}





.contact-trust-note{
  margin: -2px 0 18px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: .01em;
}

@media (max-width: 640px){

  .contact-trust-note{
    margin-bottom: 16px;
  }
}


}


.lang-menu-dropdown{
    right: 0;
    left: auto;
    transform: translateY(8px);
  }
}


.lang-switch-inline{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:18px;
  font-size:.95rem;
  font-weight:600;
  white-space:nowrap;
}

.lang-switch-inline a{
  color:var(--muted);
  text-decoration:none;
}
.lang-switch-inline a.active{
  color:var(--text);
}
.lang-switch-inline span{
  color:var(--muted);
}
@media (max-width:980px){
  .lang-switch-inline{
    margin:10px 0 0;
    width:100%;
    justify-content:flex-start;
    order:3;
  }
}


/* calm homepage direction */
.home-page{
  font-family:"Avenir Next","Segoe UI","Helvetica Neue",sans-serif;
  background:
    radial-gradient(circle at 14% 10%, rgba(86,150,255,.12), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(105,224,255,.10), transparent 22%),
    linear-gradient(180deg, #07101f 0%, #0b1430 48%, #09111f 100%);
}
.home-page h1,
.home-page .section-title,
.home-page h3,
.home-page .brand-text{
  font-family:"Avenir Next","Segoe UI","Helvetica Neue",sans-serif;
  letter-spacing:-.025em;
}
.home-page header{
  background:rgba(6,11,24,.76);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 34px rgba(0,0,0,.22);
}
.home-page .nav{
  min-height:88px;
  gap:22px;
}
.home-page .brand-text{
  color:#dbe8ff;
  letter-spacing:.10em;
  font-size:.94rem;
}
.home-page .nav-links a{
  position:relative;
  padding-bottom:8px;
  font-size:.93rem;
  letter-spacing:.02em;
}
.home-page .nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, rgba(105,224,255,0), rgba(105,224,255,.9), rgba(105,224,255,0));
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .22s ease;
}
.home-page .nav-links a:hover::after,
.home-page .nav-links a.active::after{
  transform:scaleX(1);
}
.home-page .lang-switch-inline{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.home-page .lang-switch-inline a{
  font-size:.86rem;
}

.home-hero{
  position:relative;
  padding:112px 0 72px;
}
.home-hero::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:520px;
  background:
    radial-gradient(circle at 18% 22%, rgba(82,145,255,.10), transparent 30%),
    radial-gradient(circle at 78% 8%, rgba(105,224,255,.12), transparent 24%);
  pointer-events:none;
}
.home-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,500px);
  gap:44px;
  align-items:center;
}
.home-hero-copy{
  position:relative;
  z-index:2;
}
.home-hero-kicker{
  margin:-2px 0 14px;
  color:#d0ddf8;
  font-size:1rem;
  max-width:40ch;
}
.home-page .home-hero-copy h1{
  max-width:12ch;
  font-size:clamp(3.2rem, 6vw, 5.3rem);
  line-height:1;
  margin-bottom:18px;
}
.home-hero-lead{
  font-size:1.08rem;
  line-height:1.78;
  max-width:60ch;
  color:#c4d2ee;
}
.home-hero-visual{
  min-height:640px;
  background:linear-gradient(145deg, rgba(8,16,34,.96), rgba(17,30,57,.94));
}
.home-hero-card{
  left:24px;
  right:24px;
  bottom:24px;
  transform:none;
  width:min(540px, calc(100% - 48px));
  max-width:calc(100% - 48px);
  background:linear-gradient(145deg, rgba(6,11,24,.82), rgba(17,31,56,.78));
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.home-hero-card h3{
  max-width:12ch;
  line-height:1.02;
}
.home-hero-card p{
  max-width:24ch;
}
.home-proof-list{
  list-style:none;
  display:grid;
  gap:14px;
  margin-top:8px;
}
.home-proof-list li{
  position:relative;
  padding-left:18px;
  color:#d5e2fa;
  line-height:1.72;
}
.home-proof-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--cyan);
  box-shadow:0 0 0 6px rgba(105,224,255,.08);
}
.home-hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.home-hero-meta span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#d7e6ff;
  font-size:.86rem;
}

.home-section-head{
  display:grid;
  gap:12px;
  margin-bottom:22px;
}
.home-editorial-section{
  padding-top:8px;
}
.home-pillars-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.home-mini-label{
  display:inline-block;
  margin-bottom:12px;
  color:var(--cyan);
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.home-pillar-card{
  border-radius:26px;
  padding:26px;
}
.home-clarity-panel{
  margin-top:18px;
  padding:26px 28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(145deg, rgba(10,18,38,.82), rgba(16,28,52,.78));
}
.home-clarity-panel p{
  margin:0;
  max-width:70ch;
  color:#dbe7fb;
  font-size:1.08rem;
}

.home-signature-section{
  padding-top:18px;
}
.home-difference-layout{
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);
  gap:20px;
  align-items:start;
}
.home-difference-intro{
  padding:12px 4px 0 0;
}
.home-difference-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.home-difference-card{
  min-height:210px;
}

.home-band{
  min-height:440px;
}
.home-band .band-copy{
  max-width:700px;
  background:linear-gradient(145deg, rgba(6,11,24,.84), rgba(18,31,58,.84));
  border:1px solid rgba(255,255,255,.10);
}
.home-band .band-copy h2{
  font-size:2.2rem;
  line-height:1;
}
.home-band-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.home-band-points span{
  padding:9px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.09);
  color:#e8f1ff;
  font-size:.88rem;
  transform:translateY(0);
  transition:
    transform .4s cubic-bezier(.22,1,.36,1),
    background-color .4s ease,
    border-color .4s ease,
    box-shadow .4s ease
}
.home-band:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 68px rgba(0,0,0,.36);
}
.home-band:hover img{
  transform:scale(1.05) translateY(-3px);
  filter:saturate(1.09) brightness(1.035);
}
.home-band:hover .band-copy{
  transform:translateY(-12px) scale(1.012);
  border-color:rgba(105,224,255,.24);
  box-shadow:0 28px 56px rgba(0,0,0,.34);
  background:linear-gradient(145deg, rgba(8,14,30,.94), rgba(25,42,73,.90));
}
.home-band:hover .home-band-points span{
  transform:translateY(-4px);
  background:rgba(255,255,255,.08);
  border-color:rgba(105,224,255,.20);
  box-shadow:0 12px 24px rgba(7,16,34,.20);
}
.home-band .band-copy:hover{
  transform:translateY(-12px) scale(1.012);
  border-color:rgba(105,224,255,.26);
  box-shadow:0 30px 60px rgba(0,0,0,.36);
  background:linear-gradient(145deg, rgba(8,14,30,.96), rgba(27,45,78,.92));
}
.home-band .band-copy:hover h2{
  transform:translateY(-2px);
  color:#ffffff;
}
.home-band .band-copy:hover p{
  transform:translateY(-1px);
  color:#d9e6fb;
}
.home-band .band-copy:hover .home-band-points span{
  transform:translateY(-4px);
  background:rgba(255,255,255,.09);
  border-color:rgba(105,224,255,.22);
  box-shadow:0 12px 24px rgba(7,16,34,.22);
}
.home-band-points span:hover{
  transform:translateY(-4px);
}

@media (prefers-reduced-motion: reduce){
  .home-card-grid .card,
  .home-card-grid .card h3,
  .home-card-grid .card p,
  .home-card-grid .card::before,
  .band,
  .band img,
  .band-copy,
  .home-band-points span{
    transition:none;
  }
  .home-band:hover img,
  .home-band:hover .band-copy,
  .home-band:hover .home-band-points span,
  .home-band-points span:hover,
  .home-card-grid .card:hover,
  .home-card-grid .card:hover h3{
    transform:none;
    filter:none;
  }
  .home-card-grid .card:hover::before{
    opacity:0;
  }
}

.home-focus-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.9fr);
  gap:20px;
  padding:30px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(145deg, rgba(11,19,39,.92), rgba(18,31,58,.88));
  box-shadow:0 24px 52px rgba(0,0,0,.22);
}
.home-focus-copy{
  position:relative;
}
.home-focus-copy .section-title{
  max-width:12ch;
}
.home-focus-aside{
  display:grid;
  gap:14px;
}
.home-focus-item{
  padding:18px 18px 16px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.home-focus-item span{
  display:block;
  margin-bottom:8px;
  color:#f3f7ff;
  font-size:1.05rem;
  font-weight:700;
}
.home-focus-item p{
  margin:0;
  color:#c2d0ea;
}

.home-page .btn:hover{
  transform:translateY(-2px) scale(1.01);
  filter:brightness(1.03);
}
.home-page .btn-primary:hover{
  box-shadow:0 18px 36px rgba(47,124,255,.24);
}
.home-page .btn-secondary:hover{
  box-shadow:0 12px 26px rgba(0,0,0,.18);
}
.home-page .card:hover,
.home-page .home-hero-visual:hover{
  transform:translateY(-2px) scale(1.002);
  box-shadow:0 22px 46px rgba(0,0,0,.28);
  filter:none;
}
.home-page .home-hero-visual:hover img,
.home-page .band:hover img{
  transform:scale(1.04);
}
.home-page .home-hero-visual:hover{
  transform:translateY(-4px) scale(1.006);
  box-shadow:0 30px 60px rgba(0,0,0,.34);
}
.home-page .band:hover{
  transform:translateY(-2px) scale(1.002);
  box-shadow:0 22px 46px rgba(0,0,0,.28);
  filter:none;
}

@media (max-width:1320px){
  .home-hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }
  .home-hero-visual{
    max-width:820px;
    width:100%;
    min-height:580px;
    margin-left:auto;
  }
}
@media (max-width:1100px){
  .home-pillars-grid,
  .home-difference-grid,
  .home-focus-card{
    grid-template-columns:1fr;
  }
  .home-difference-layout{
    grid-template-columns:1fr;
  }
}
@media (max-width:980px){
  .home-page .home-hero-copy h1{
    max-width:none;
  }
  .home-page .nav-links a{
    font-size:.9rem;
  }
}
@media (max-width:640px){
  .home-hero{
    padding-top:88px;
  }
  .home-page .nav{
    min-height:84px;
  }
  .home-page .brand-text{
    letter-spacing:.09em;
    font-size:.88rem;
  }
  .home-page .home-hero-copy h1{
    font-size:clamp(2.6rem, 12vw, 3.8rem);
    line-height:.98;
  }
  .home-hero-kicker{
    font-size:.98rem;
  }
  .home-hero-visual{
    min-height:430px;
  }
  .home-hero-card{
    width:min(100%, calc(100% - 32px));
    max-width:calc(100% - 32px);
    bottom:16px;
  }
  .home-hero-card h3,
  .home-hero-card p{
    max-width:none;
  }
  .home-clarity-panel,
  .home-focus-card{
    padding:24px;
  }
  .home-pillars-grid,
  .home-difference-grid{
    grid-template-columns:1fr;
  }
  .home-band .band-copy h2{
    font-size:1.8rem;
  }
  .home-band-points,
  .home-hero-meta{
    gap:8px;
  }
}
