
:root{
  --yellow:#FFF200;
  --ink:#0d0e0d;
  --ink2:#151715;
  --paper:#f6f7f4;
  --muted:#6f746f;
  --line:rgba(13,14,13,.10);
  --white:#fff;
  --max:1380px;
  --ease:cubic-bezier(.22,1,.36,1);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter Tight",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button,input,textarea,select{font:inherit}
img,video{display:block;max-width:100%}
.wrap{width:min(calc(100% - 64px),var(--max));margin-inline:auto}

/* NAV — restored from the previous version */
.nav-shell{
  position:fixed;
  z-index:1000;
  top:18px;
  left:0;
  right:0;
  padding:0 24px;
  pointer-events:none;
}
.nav{
  pointer-events:auto;
  width:min(calc(100% - 64px),var(--max));
  height:68px;
  margin:auto;
  display:grid;
  grid-template-columns:240px 1fr auto;
  align-items:center;
  gap:40px;
  padding:0 12px 0 18px;
  border:1px solid transparent;
  border-radius:16px;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  transition:
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease,
    -webkit-backdrop-filter .35s ease;
}
.nav.is-scrolled{
  background:rgba(10,11,10,.72);
  border-color:rgba(255,255,255,.10);
  box-shadow:0 18px 50px rgba(0,0,0,.18);
  backdrop-filter:blur(18px) saturate(130%);
  -webkit-backdrop-filter:blur(18px) saturate(130%);
}
.nav-logo{
  display:flex;
  align-items:center;
  min-width:0;
  margin-left:-18px;
}
.nav-logo img{
  width:280px;
  height:auto;
  max-height:58px;
  object-fit:contain;
  transition:width .42s cubic-bezier(.22,1,.36,1), max-height .42s cubic-bezier(.22,1,.36,1);
}
.nav.is-scrolled .nav-logo img{
  width:210px;
  max-height:48px;
}
.nav-menu{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
}
.nav-menu>a,
.nav-dropdown-toggle{
  position:relative;
  border:0;
  background:none;
  padding:0;
  color:rgba(255,255,255,.82);
  font-size:14px;
  font-weight:500;
  cursor:pointer;
}
.nav-menu>a::after,
.nav-dropdown-toggle::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:1px;
  background:var(--yellow);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .3s var(--ease);
}
.nav-menu>a:hover::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after{
  transform:scaleX(1);
  transform-origin:left;
}
.nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
  padding:20px 0;
  margin:-20px 0;
}
.nav-dropdown-menu{
  position:absolute;
  top:calc(100% - 1px);
  left:-18px;
  min-width:250px;
  padding:9px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:rgba(12,14,12,.94);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 24px 56px rgba(0,0,0,.24);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(7px);
  transition:opacity .25s ease,visibility .25s ease,transform .25s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:none;
}
.nav-dropdown-menu a{
  min-height:43px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 12px;
  border-radius:9px;
  color:#d9ddd9;
  font-size:13px;
}
.nav-dropdown-menu a:hover{
  background:rgba(255,242,0,.10);
  color:#fff;
}
.nav-actions{
  display:flex;
  gap:8px;
  align-items:center;
}
.career-btn{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 17px;
  border:1px solid rgba(255,255,255,.26);
  border-radius:10px;
  background:rgba(255,255,255,.055);
  color:#fff;
  font-size:14px;
  font-weight:620;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:transform .3s var(--ease),background .25s ease,border-color .25s ease;
}
.career-btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.40);
}
.career-btn::after{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--yellow);
  animation:careerPulse 4.6s var(--ease) infinite;
}
@keyframes careerPulse{
  0%,76%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,242,0,0)}
  82%{transform:scale(1.15);box-shadow:0 0 0 5px rgba(255,242,0,.10)}
  92%{transform:scale(1);box-shadow:0 0 0 10px rgba(255,242,0,0)}
}
.project-btn{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:0 16px 0 18px;
  border:0;
  border-radius:10px;
  background:var(--yellow);
  color:var(--ink);
  font-size:14px;
  font-weight:650;
  cursor:pointer;
  transition:transform .3s var(--ease),box-shadow .3s ease,background .25s ease;
}
.project-btn i{
  width:23px;
  height:23px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--ink);
  color:var(--yellow);
  font-style:normal;
  transition:transform .3s var(--ease);
}
.project-btn:hover{
  transform:translateY(-2px);
  background:#fff52e;
  box-shadow:0 14px 32px rgba(255,242,0,.16),0 5px 16px rgba(0,0,0,.10);
}
.project-btn:hover i{transform:translateX(2px)}

/* MOBILE HEADER */
.mobile-career-quick,.mobile-menu-toggle{display:none}
.mobile-menu-toggle{
  width:44px;height:44px;align-items:center;justify-content:center;position:relative;
  border:1px solid rgba(255,242,0,.28);border-radius:11px;
  background:rgba(12,14,12,.64);color:var(--yellow);
}
.mobile-menu-toggle span{
  position:absolute;width:19px;height:1.5px;border-radius:99px;background:var(--yellow);
}
.mobile-menu-toggle span:nth-child(1){transform:translateY(-5px)}
.mobile-menu-toggle span:nth-child(2){transform:translateY(0)}
.mobile-menu-toggle span:nth-child(3){transform:translateY(5px)}
.mobile-menu{
  position:fixed;inset:0;z-index:9998;opacity:0;visibility:hidden;pointer-events:none;transition:.3s ease;
}
.mobile-menu.is-open{opacity:1;visibility:visible;pointer-events:auto}
.mobile-menu-backdrop{position:absolute;inset:0;background:rgba(4,5,4,.66);backdrop-filter:blur(12px)}
.mobile-menu-panel{
  position:absolute;top:8px;right:8px;bottom:8px;width:min(92vw,430px);
  border:1px solid rgba(255,255,255,.10);border-radius:22px;background:#101210;color:#fff;
  padding:20px;display:flex;flex-direction:column;transform:translateX(20px);transition:.35s var(--ease);
}
.mobile-menu.is-open .mobile-menu-panel{transform:none}
.mobile-menu-head{display:flex;align-items:center;justify-content:space-between;padding-bottom:18px;border-bottom:1px solid rgba(255,255,255,.08)}
.mobile-menu-head img{width:195px}
.mobile-close{width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,.12);background:none;color:#fff;font-size:21px}
.mobile-links{display:grid;padding-top:18px}
.mobile-links a,.mobile-acc-toggle{
  min-height:56px;display:flex;align-items:center;justify-content:space-between;
  border:0;border-bottom:1px solid rgba(255,255,255,.08);background:none;color:#fff;
  font-size:22px;letter-spacing:-.03em;text-align:left;
}
.mobile-acc-content{display:none;padding:5px 0 8px 16px}
.mobile-acc.open .mobile-acc-content{display:grid}
.mobile-acc-content a{min-height:42px;font-size:14px;color:#949a94}

/* HERO */
.hero{
  position:relative;height:100vh;min-height:720px;display:flex;align-items:end;overflow:hidden;color:#fff;background:#111;
}
.hero video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(5,6,5,.88),rgba(5,6,5,.40) 46%,rgba(5,6,5,.18)),
             linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.76));
}
.hero-inner{position:relative;z-index:2;padding-bottom:70px}
.eyebrow{display:flex;align-items:center;gap:11px;font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:#9ca19c}
.eyebrow i{width:30px;height:1px;background:var(--yellow)}
.hero h1{
  margin:18px 0 24px;max-width:900px;
  font-size:clamp(54px,6.3vw,104px);line-height:.89;letter-spacing:-.05em;font-weight:550;
}
.hero h1 span{color:var(--yellow)}
.hero p{max-width:640px;margin:0;color:rgba(255,255,255,.74);font-size:17px;line-height:1.55}
.hero-actions{display:flex;gap:10px;margin-top:28px;flex-wrap:wrap}
.ghost-btn{
  min-height:50px;display:inline-flex;align-items:center;padding:0 18px;border:1px solid rgba(255,255,255,.17);
  border-radius:10px;background:rgba(255,255,255,.04);color:#fff;
}

/* STATEMENT */
.statement{padding:120px 0 130px;background:#fff}
.statement-grid{display:grid;grid-template-columns:280px 1fr;gap:70px}
.section-label{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:#777d77;font-weight:650}
.section-label b{color:#b8ae00;margin-right:8px}
.statement h2,.section-title{
  margin:0;font-size:clamp(48px,5.5vw,76px);line-height:.95;letter-spacing:-.05em;font-weight:520;
}
.statement h2 span{background:linear-gradient(transparent 72%,var(--yellow) 72%)}
.statement-copy{grid-column:2;display:grid;grid-template-columns:1fr 1fr;gap:36px;margin-top:20px}
.statement-copy p{margin:0;color:#636863;font-size:16px;line-height:1.62}

/* SERVICES */
.services{padding:130px 0 120px;background:#fff;overflow:hidden}
.services-head{display:grid;grid-template-columns:1fr .72fr;gap:70px;align-items:end;margin-bottom:44px}
.services-head p{margin:0;color:#666b66;line-height:1.6;font-size:16px}
.services-viewport{overflow:hidden}
.services-track{
  --left:max(32px,calc((100vw - min(calc(100vw - 64px),var(--max)))/2));
  display:flex;gap:18px;padding-left:var(--left);padding-right:0;padding-top:18px;padding-bottom:24px;
  overflow-x:auto;scroll-snap-type:x mandatory;scroll-padding-left:var(--left);scroll-behavior:smooth;scrollbar-width:none;
}
.services-track::-webkit-scrollbar{display:none}
.service-card{
  flex:0 0 clamp(330px,29vw,430px);height:540px;scroll-snap-align:start;
  position:relative;overflow:hidden;border-radius:20px;background:#111;
  border:1px solid rgba(12,13,12,.08);box-shadow:0 12px 34px rgba(17,20,17,.06);
  transition:transform .4s var(--ease),box-shadow .4s ease;
}
.service-card:hover{transform:translateY(-6px);box-shadow:0 20px 44px rgba(17,20,17,.10)}
.service-card img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.service-card:hover img{transform:scale(1.035)}
.service-card::after{
  content:"";position:absolute;inset:38% 0 0;
  background:linear-gradient(180deg,rgba(14,16,14,0) 0%,rgba(14,16,14,.54) 20%,rgba(14,16,14,.82) 52%,rgba(14,16,14,.94) 100%);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
  mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.28) 18%,#000 45%);
}
.service-content{
  position:absolute;z-index:3;left:0;right:0;bottom:0;padding:28px;
  color:#fff;
}
.service-content .kicker{font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.58)}
.service-content h3{margin:8px 0 10px;font-size:36px;line-height:.95;letter-spacing:-.04em;font-weight:580}
.service-content p{margin:0;color:rgba(255,255,255,.72);font-size:13px;line-height:1.5;max-width:340px}
.service-more{
  margin-top:20px;padding-top:17px;border-top:1px solid rgba(255,255,255,.14);
  display:flex;align-items:center;justify-content:space-between;font-size:12px;font-weight:650;
}
.service-more span{
  width:28px;height:28px;display:grid;place-items:center;border-radius:50%;background:var(--yellow);color:#111;
}
.services-footer{display:flex;justify-content:flex-end;margin-top:2px}
.slider-controls{display:flex;gap:8px}
.slider-controls button{
  width:46px;height:46px;border-radius:50%;border:1px solid var(--line);background:#fff;color:#111;cursor:pointer;
}
.slider-controls button:last-child{background:#111;color:var(--yellow);border-color:#111}

/* REFERENCES */
.references{position:relative;padding:130px 0 145px;background:#fff;color:var(--ink);overflow:hidden;isolation:isolate}
.references-head{display:grid;grid-template-columns:1fr .8fr;gap:70px;align-items:end;margin-bottom:50px}
.references-head p{margin:0;color:#929892;font-size:16px;line-height:1.6}
.refs-track{
  --left:max(32px,calc((100vw - min(calc(100vw - 64px),var(--max)))/2));
  display:flex;gap:18px;padding-left:var(--left);padding-right:var(--left);
  overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;scroll-behavior:smooth;
}
.refs-track::-webkit-scrollbar{display:none}
.ref-card{
  flex:0 0 min(980px,calc(100vw - 150px));min-height:500px;display:grid;grid-template-columns:.44fr .56fr;
  scroll-snap-align:center;border:1px solid rgba(255,255,255,.08);border-radius:20px;background:#1d1f1d;overflow:hidden;
}
.ref-info{padding:32px;display:flex;flex-direction:column}
.ref-pill{align-self:flex-start;padding:7px 10px;border-radius:999px;background:rgba(255,242,0,.11);color:#d8cc00;font-size:10px}
.ref-info h3{margin:22px 0 12px;font-size:clamp(38px,4vw,56px);line-height:.94;letter-spacing:-.045em;font-weight:580}
.ref-info p{margin:0;color:#939993;font-size:14px;line-height:1.56}
.ref-link{margin-top:auto;padding-top:18px;border-top:1px solid rgba(255,255,255,.09);font-size:12px;font-weight:650}
.ref-visual{background-size:cover;background-position:center;margin:18px 0;border-radius:14px 0 0 14px}
.ref-visual.one{background-image:url("https://images.unsplash.com/photo-1772289767405-69513d023448?auto=format&fit=crop&fm=jpg&q=80&w=2000")}
.ref-visual.two{background-image:url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&fm=jpg&q=80&w=2000")}
.ref-visual.three{background-image:url("https://images.unsplash.com/photo-1683141640580-64658653957e?auto=format&fit=crop&fm=jpg&q=80&w=2000")}
.refs-footer{display:flex;justify-content:flex-end;margin-top:22px}
.refs-footer button{border-color:rgba(255,255,255,.12);background:rgba(255,255,255,.05);color:#fff}
.refs-footer button:last-child{background:var(--yellow);color:#111;border-color:var(--yellow)}

/* NUMBERS */
.numbers{padding:110px 0;background:#fff}
.number-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.number{padding:32px;border:1px solid rgba(205,193,0,.45);border-right:0;background:rgba(255,242,0,.016)}
.number:last-child{border-right:1px solid rgba(205,193,0,.45)}
.number strong{display:block;font-size:clamp(48px,5vw,74px);line-height:.9;letter-spacing:-.055em;font-weight:560}
.number strong span{color:#c8bc00}
.number b{display:block;margin-top:14px;font-size:11px;letter-spacing:.1em;text-transform:uppercase}
.number p{margin:8px 0 0;color:#777d77;font-size:12px;line-height:1.5}

/* ABOUT */
.about{padding:130px 0;background:#fff}
.about-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center}
.about-media{height:590px;border-radius:22px;background:url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&fm=jpg&q=80&w=1800") center/cover}
.about h2{margin:12px 0 20px;font-size:clamp(48px,5.2vw,72px);line-height:.95;letter-spacing:-.05em;font-weight:590}
.about p{margin:0 0 16px;color:#626862;font-size:16px;line-height:1.62}

/* NEWS */
.news{padding:120px 0;background:var(--paper)}
.news-head{display:grid;grid-template-columns:1fr .8fr;gap:70px;align-items:end;margin-bottom:48px}
.news-head p{margin:0;color:#666b66;font-size:16px;line-height:1.6}
.news-grid{display:grid;grid-template-columns:1.45fr 1fr;gap:16px;align-items:start}
.news-card{overflow:hidden;border:1px solid var(--line);border-radius:20px;background:#fff;transition:transform .4s var(--ease),box-shadow .4s var(--ease)}
.news-card:hover{transform:translateY(-3px);box-shadow:0 18px 52px rgba(0,0,0,.08)}
.news-card--featured .news-media{height:340px;overflow:hidden;background:#111;position:relative}
.news-card--featured .news-media img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.news-card--featured:hover .news-media img{transform:scale(1.04)}
.news-category{display:inline-block;padding:4px 11px;border-radius:30px;font-size:10px;letter-spacing:.09em;text-transform:uppercase;font-weight:650}
.news-card--featured .news-category{position:absolute;top:18px;left:18px;background:var(--ink);color:#fff}
.news-category--sm{background:rgba(13,14,13,.08);color:var(--ink);font-size:9px;padding:3px 9px}
.news-card--featured .news-copy{padding:26px 28px 30px}
.news-date{display:block;font-size:11px;color:var(--muted);margin-bottom:10px;font-weight:500;letter-spacing:.02em}
.news-card--featured .news-copy h3{margin:0 0 12px;font-size:26px;line-height:1.08;letter-spacing:-.04em}
.news-card--featured .news-copy p{margin:0;color:#6a706a;font-size:14px;line-height:1.6}
.news-side{display:flex;flex-direction:column;gap:16px}
.news-card--side{display:grid;grid-template-columns:1fr 136px;min-height:164px}
.news-side-content{padding:20px 18px;display:flex;flex-direction:column}
.news-side-content h3{margin:8px 0 0;font-size:16px;line-height:1.18;letter-spacing:-.03em;flex:1;padding-bottom:14px}
.news-side-img{overflow:hidden;background:#111}
.news-side-img img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.news-card--side:hover .news-side-img img{transform:scale(1.06)}
.news-link{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:650;color:var(--ink);margin-top:auto}
.news-link i{display:inline-block;transition:transform .25s var(--ease)}
.news-card:hover .news-link i{transform:translateX(4px)}

/* CTA */
.cta{position:relative;min-height:74vh;display:flex;align-items:center;color:#fff;background:#111;overflow:hidden}
.cta video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:grayscale(1)}
.cta::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,7,6,.92),rgba(6,7,6,.45))}
.cta-inner{position:relative;z-index:2;padding:100px 0}
.cta h2{margin:12px 0 20px;font-size:clamp(52px,5.8vw,82px);line-height:.92;letter-spacing:-.052em;font-weight:590}
.cta h2 span{color:var(--yellow)}
.cta p{max-width:600px;color:rgba(255,255,255,.7);font-size:16px;line-height:1.6}

/* FOOTER */
footer{padding:58px 0 24px;background:#090a09;color:#737873}
.footer-grid{display:grid;grid-template-columns:1.25fr repeat(3,1fr);gap:50px}
.footer-logo img{width:235px}
.footer-logo p,.footer-col a,.footer-col span{font-size:11px;line-height:1.5}
.footer-col b{display:block;margin-bottom:13px;color:#a8aea8;font-size:9px;letter-spacing:.12em;text-transform:uppercase}
.footer-col a,.footer-col span{display:block;margin:7px 0}
.footer-bottom{margin-top:40px;padding-top:16px;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:space-between;font-size:10px}

/* CONTACT MODAL */
.contact-modal{position:fixed;inset:0;z-index:99999;display:grid;place-items:center;padding:20px;opacity:0;visibility:hidden;pointer-events:none;transition:.3s}
.contact-modal.is-open{opacity:1;visibility:visible;pointer-events:auto}
.modal-bg{position:absolute;inset:0;background:rgba(4,5,4,.76);backdrop-filter:blur(15px)}
.contact-panel{position:relative;z-index:2;width:min(1180px,100%);max-height:calc(100vh - 40px);overflow:hidden;display:grid;grid-template-columns:.88fr 1.12fr;border-radius:24px;background:#f4f5f2}
.map-side{position:relative;min-height:650px;background:#111}
.map-side iframe{position:absolute;inset:0;width:100%;height:100%;border:0;filter:grayscale(1) invert(.92) brightness(.62) contrast(1.25)}
.map-card{position:absolute;left:22px;right:22px;bottom:22px;padding:16px;border-radius:14px;background:rgba(12,14,12,.78);color:#fff;backdrop-filter:blur(15px)}
.form-side{padding:40px;overflow:auto}
.form-side h3{margin:10px 0 10px;font-size:42px;line-height:.96;letter-spacing:-.045em}
.contact-person{padding:14px 0;margin:18px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.contact-person strong{display:block;font-size:16px}.contact-person a{display:inline-block;margin:5px 12px 0 0;font-size:12px}
.form{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.field{display:grid;gap:6px}.field.full{grid-column:1/-1}
.field label{font-size:10px}.field input,.field select,.field textarea{padding:12px;border:1px solid var(--line);border-radius:9px;background:#fff}.field textarea{min-height:100px}
.submit{grid-column:1/-1;min-height:48px;border:0;border-radius:9px;background:var(--yellow);font-weight:700}
.modal-close{position:absolute;top:14px;right:14px;z-index:3;width:38px;height:38px;border-radius:50%;border:0;background:#fff;color:#111;font-size:20px}

/* RESPONSIVE */
@media(max-width:1000px){
  .nav{grid-template-columns:1fr auto auto;gap:8px}
  .nav-menu,.nav-actions{display:none}
  .mobile-career-quick{
    display:inline-flex;align-items:center;gap:9px;min-height:44px;padding:0 14px;
    border:1px solid rgba(255,255,255,.24);border-radius:10px;background:rgba(255,255,255,.055);color:#fff;font-size:13px;font-weight:620;
  }
  .mobile-career-quick::after{content:"";width:7px;height:7px;border-radius:50%;background:var(--yellow)}
  .mobile-menu-toggle{display:flex}
  .nav-logo img{width:180px}
  .statement-grid,.services-head,.references-head,.about-grid,.news-head{grid-template-columns:1fr}
  .statement-copy{grid-column:1}
  .ref-card{flex-basis:calc(100vw - 40px);grid-template-columns:1fr}
  .ref-visual{height:340px;margin:0 0 0 24px}
  .number-grid{grid-template-columns:1fr 1fr}
  .news-grid{grid-template-columns:1fr}
  .news-card--side{grid-template-columns:1fr 120px;min-height:140px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .contact-panel{grid-template-columns:1fr;overflow:auto}.map-side{min-height:300px}
}
@media(max-width:640px){
  .wrap{width:calc(100% - 28px)}
  .nav-shell{top:8px}.nav{width:calc(100% - 16px);height:60px;padding-left:10px}.nav-logo img{width:180px}
  .mobile-career-quick{min-height:40px;padding:0 10px;font-size:12px}
  .mobile-menu-toggle{width:40px;height:40px}
  .hero{min-height:680px}.hero h1{font-size:48px}
  .statement,.services,.references,.about,.news{padding-top:95px;padding-bottom:100px}
  .statement-copy{grid-template-columns:1fr}
  .services-track{--left:14px;gap:14px}.service-card{flex-basis:82vw;height:500px}
  .refs-track{--left:14px;padding-right:14px}.ref-card{flex-basis:calc(100vw - 28px)}
  .number-grid{grid-template-columns:1fr}.number{border-right:1px solid rgba(205,193,0,.45);border-bottom:0}.number:last-child{border-bottom:1px solid rgba(205,193,0,.45)}
  .about-media{height:420px}
  .footer-grid{grid-template-columns:1fr}
  .form{grid-template-columns:1fr}.field.full,.submit{grid-column:1}
}


/* =========================================================
   SERVICE SLIDER — FINAL CTA / BORDER FIX
========================================================= */

/* remove visible border around the service image/card */
.service-card{
  border:0 !important;
}

/* keep "Mehr erfahren" clean and white */
.service-more{
  color:#fff !important;
  text-decoration:none !important;
}

/* text itself must not inherit the yellow/black circle styling */
.service-more > span:first-child{
  width:auto !important;
  height:auto !important;
  display:inline !important;
  border-radius:0 !important;
  background:transparent !important;
  color:#fff !important;
}

/* white outlined circle around arrow */
.service-more > span:last-child{
  width:31px !important;
  height:31px !important;
  display:grid !important;
  place-items:center !important;
  flex:0 0 31px;
  border:1px solid rgba(255,255,255,.72) !important;
  border-radius:50% !important;
  background:rgba(255,255,255,.04) !important;
  color:#fff !important;
  transition:
    transform .34s cubic-bezier(.22,1,.36,1),
    background .25s ease,
    border-color .25s ease;
}

/* only the arrow circle moves subtly on hover */
.service-more:hover > span:last-child{
  transform:translateX(4px);
  background:rgba(255,255,255,.10) !important;
  border-color:#fff !important;
}


/* =========================================================
   SERVICE CTA — YELLOW ARROW / WHITE CIRCLE
========================================================= */
.service-more > span:last-child{
  position:relative;
  width:31px !important;
  height:31px !important;
  display:grid !important;
  place-items:center !important;
  flex:0 0 31px;
  border:1px solid rgba(255,255,255,.78) !important;
  border-radius:50% !important;
  background:rgba(255,255,255,.04) !important;
  color:transparent !important;
  transition:
    background .25s ease,
    border-color .25s ease;
}
.service-more > span:last-child::after{
  content:"→";
  color:var(--yellow);
  font-size:15px;
  line-height:1;
  transform:translateX(0);
  transition:transform .34s cubic-bezier(.22,1,.36,1);
}
.service-more:hover > span:last-child{
  background:rgba(255,255,255,.10) !important;
  border-color:#fff !important;
  transform:none !important;
}
.service-more:hover > span:last-child::after{
  transform:translateX(4px);
}


/* =========================================================
   FINAL ORDER — DARK SERVICES AFTER HERO
========================================================= */
.services{
  position:relative;
  background:#151615 !important;
  color:#fff !important;
  padding-top:130px;
}
.services::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-150px;
  height:150px;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(21,22,21,0),#151615 92%);
}
.services .section-label{
  color:#8b918b;
}
.services .section-title{
  color:#fff;
}
.services-head p{
  color:#969c96 !important;
}
.services-footer .slider-controls button{
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:#fff;
}
.services-footer .slider-controls button:last-child{
  background:var(--yellow);
  color:#111;
  border-color:var(--yellow);
}


.references{
  background:#151615 !important;
  color:#fff !important;
  padding-top:120px;
}


/* =========================================================
   DARK TO LIGHT TRANSITION BEFORE STATEMENT
========================================================= */
.statement{
  position:relative;
  background:#fff !important;
  padding-top:160px;
}
.statement::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-180px;
  height:180px;
  pointer-events:none;
  background:linear-gradient(180deg,#151615 0%,rgba(21,22,21,.82) 30%,rgba(21,22,21,.28) 66%,#fff 100%);
}


/* =========================================================
   FINAL SERVICE SLIDER IMAGE / BACKGROUND / CTA FIX
========================================================= */

/*
   Hero -> Leistungen:
   The very top of the service section is almost black so there is no
   visible gray seam below the video. It only becomes the softer
   anthracite farther down the section.
*/
.services{
  background:
    linear-gradient(
      180deg,
      #050505 0px,
      #070807 150px,
      #0d0e0d 330px,
      #151615 620px,
      #151615 100%
    ) !important;
  color:#fff !important;
}

/* Remove the old top pseudo fade if it is still present. */
.services::before{
  display:none !important;
}

/*
   Make the hero bottom optically meet the same almost-black value.
   Only the bottom portion is reinforced; the video itself stays visible.
*/
.hero::after{
  background:
    linear-gradient(
      90deg,
      rgba(5,6,5,.88),
      rgba(5,6,5,.40) 46%,
      rgba(5,6,5,.18)
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.06) 0%,
      rgba(0,0,0,.70) 72%,
      rgba(5,5,5,.94) 100%
    ) !important;
}

/*
   Service card image should fill the entire card and the lower glass
   overlay must reach the exact lower edge. No picture can peek out under
   the blurred area during hover/scale.
*/
.service-card{
  border:0 !important;
  background:#090a09 !important;
  isolation:isolate;
}
.service-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  max-width:none;
  object-fit:cover;
  transform:scale(1.001);
  transform-origin:center center;
  backface-visibility:hidden;
  will-change:transform;
}
.service-card:hover img{
  transform:scale(1.035);
}

/*
   Dark blurred glass area.
   It begins softly but becomes fully opaque toward the card bottom,
   eliminating any exposed image strip.
*/
.service-card::after{
  content:"";
  position:absolute;
  z-index:2;
  left:0;
  right:0;
  top:34%;
  bottom:-2px;
  background:
    linear-gradient(
      180deg,
      rgba(8,10,8,0) 0%,
      rgba(8,10,8,.35) 14%,
      rgba(8,10,8,.70) 38%,
      rgba(8,10,8,.90) 68%,
      rgba(8,10,8,.98) 88%,
      #080908 100%
    );
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  pointer-events:none;
}

/* Content remains above the glass overlay. */
.service-content{
  z-index:3;
  bottom:0;
  padding-bottom:28px;
}

/* "Mehr erfahren" stays white. */
.service-more{
  color:#fff !important;
  align-items:center;
}
.service-more > span:first-child{
  color:#fff !important;
}

/*
   No circle / no border around the CTA arrow.
   The arrow itself is yellow and vertically/horizontally centered.
*/
.service-more > span:last-child{
  position:relative !important;
  width:28px !important;
  height:28px !important;
  flex:0 0 28px !important;
  display:grid !important;
  place-items:center !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  color:transparent !important;
  line-height:1 !important;
  transform:none !important;
}

/* Remove any inherited button/circle decoration. */
.service-more > span:last-child::before{
  display:none !important;
}

.service-more > span:last-child::after{
  content:"→";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:var(--yellow);
  font-size:18px;
  font-weight:500;
  line-height:1;
  transform:translateX(0);
  transition:transform .34s cubic-bezier(.22,1,.36,1);
}

.service-more:hover > span:last-child{
  border:0 !important;
  background:transparent !important;
  transform:none !important;
}

/* On hover only the yellow arrow moves. */
.service-more:hover > span:last-child::after{
  transform:translateX(5px);
}


/* =========================================================
   GLOBAL SMOOTH SCROLL FEEL
========================================================= */
html{
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}

/* Unified reveal behavior */
[data-reveal]{
  will-change:transform,opacity;
}

/* Sections fade/slide in as a whole very subtly */
.scroll-soft{
  opacity:0;
  transform:translateY(30px);
  transition:
    opacity .85s cubic-bezier(.22,1,.36,1),
    transform .85s cubic-bezier(.22,1,.36,1);
}
.scroll-soft.is-in{
  opacity:1;
  transform:none;
}

/* Images / cards get a very small entrance scale, never a dramatic zoom */
.scroll-soft-media{
  transform:scale(.985);
  opacity:.86;
  transition:
    transform 1s cubic-bezier(.22,1,.36,1),
    opacity .9s ease;
}
.scroll-soft-media.is-in{
  transform:scale(1);
  opacity:1;
}

/* Hover transitions stay coherent with the same easing */
.service-card,
.ref-card,
.news-card,
.about-media{
  transition-timing-function:cubic-bezier(.22,1,.36,1) !important;
}

/* Respect reduced-motion preference */
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .scroll-soft,
  .scroll-soft-media{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}






/* =========================================================
   HEADER LOCK — EXACT PREVIOUS DESKTOP BEHAVIOR
========================================================= */
@media(min-width:1001px){
  .nav-shell{
    position:fixed !important;
    z-index:1000 !important;
    top:18px !important;
    left:0 !important;
    right:0 !important;
    padding:0 24px !important;
    pointer-events:none !important;
  }
  .nav{
    pointer-events:auto !important;
    width:min(calc(100% - 64px),var(--max)) !important;
    height:68px !important;
    margin:auto !important;
    display:grid !important;
    grid-template-columns:240px 1fr auto !important;
    align-items:center !important;
    gap:40px !important;
    padding:0 12px 0 18px !important;
    border:1px solid transparent !important;
    border-radius:16px !important;
    background:transparent !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
  .nav.is-scrolled{
    background:rgba(10,11,10,.72) !important;
    border-color:rgba(255,255,255,.10) !important;
    box-shadow:0 18px 50px rgba(0,0,0,.18) !important;
    backdrop-filter:blur(18px) saturate(130%) !important;
    -webkit-backdrop-filter:blur(18px) saturate(130%) !important;
  }
  .nav-logo{
    margin-left:-18px !important;
  }
  .nav-logo img{
    width:280px !important;
    max-height:58px !important;
  }
  .nav.is-scrolled .nav-logo img{
    width:210px !important;
    max-height:48px !important;
  }
}


/* =========================================================
   STICKY HEADER — FINAL GLASS / BLUR STATE
========================================================= */
.nav-shell{
  position:fixed !important;
  z-index:10000 !important;
  top:18px !important;
  left:0 !important;
  right:0 !important;
  padding:0 24px !important;
  pointer-events:none !important;
}
.nav{
  pointer-events:auto !important;
  background:transparent !important;
  border:1px solid transparent !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.nav.is-scrolled{
  background:rgba(10,11,10,.68) !important;
  border-color:rgba(255,255,255,.11) !important;
  box-shadow:0 18px 50px rgba(0,0,0,.20) !important;
  backdrop-filter:blur(20px) saturate(135%) !important;
  -webkit-backdrop-filter:blur(20px) saturate(135%) !important;
}

/* sticky logo remains compact */
.nav.is-scrolled .nav-logo img{
  width:210px !important;
  max-height:48px !important;
}

@media(max-width:1000px){
  .nav-shell{
    top:8px !important;
    padding:0 8px !important;
  }
  .nav{
    width:100% !important;
    height:60px !important;
    grid-template-columns:minmax(0,1fr) auto auto !important;
    gap:8px !important;
    padding:0 10px !important;
  }
  .nav-logo img{
    width:180px !important;
    max-height:44px !important;
  }
  .nav.is-scrolled .nav-logo img{
    width:180px !important;
    max-height:44px !important;
  }
}


/* =========================================================
   MOBILE MENU — FINAL
========================================================= */
.mobile-career-quick,
.mobile-menu-toggle{
  display:none;
}
.mobile-menu-toggle{
  position:relative;
  width:40px;
  height:40px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,242,0,.28);
  border-radius:11px;
  background:rgba(12,14,12,.64);
  color:var(--yellow);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  cursor:pointer;
}
.mobile-menu-toggle span{
  position:absolute;
  width:18px;
  height:1.5px;
  border-radius:99px;
  background:var(--yellow);
}
.mobile-menu-toggle span:nth-child(1){transform:translateY(-5px)}
.mobile-menu-toggle span:nth-child(2){transform:translateY(0)}
.mobile-menu-toggle span:nth-child(3){transform:translateY(5px)}

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:99999;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s ease,visibility .28s ease;
}
.mobile-menu.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.mobile-menu-backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,5,4,.70);
  backdrop-filter:blur(13px);
  -webkit-backdrop-filter:blur(13px);
}
.mobile-menu-panel{
  position:absolute;
  top:8px;
  right:8px;
  bottom:8px;
  width:min(92vw,430px);
  padding:20px;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background:#101210;
  color:#fff;
  transform:translateX(28px);
  transition:transform .36s cubic-bezier(.22,1,.36,1);
  overflow:auto;
}
.mobile-menu.is-open .mobile-menu-panel{
  transform:none;
}
.mobile-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-menu-head img{width:195px}
.mobile-close{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  background:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}
.mobile-links{display:grid;padding-top:16px}
.mobile-links > a,
.mobile-acc-toggle{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:0;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:none;
  color:#fff;
  font-size:22px;
  letter-spacing:-.03em;
  text-align:left;
}
.mobile-acc-content{
  display:none;
  padding:6px 0 9px 15px;
}
.mobile-acc.open .mobile-acc-content{display:grid}
.mobile-acc-content a{
  min-height:42px;
  display:flex;
  align-items:center;
  color:#969c96;
  font-size:14px;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.mobile-project-btn{
  margin-top:20px;
  min-height:50px;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:0;
  border-radius:10px;
  background:var(--yellow);
  color:#111;
  font-weight:680;
}
.mobile-career-quick{
  min-height:40px;
  align-items:center;
  gap:8px;
  padding:0 11px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:10px;
  background:rgba(255,255,255,.055);
  color:#fff;
  font-size:12px;
  font-weight:620;
  backdrop-filter:blur(12px);
}
.mobile-career-quick::after{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:var(--yellow);
}

@media(max-width:1000px){
  .nav-menu,.nav-actions{display:none !important}
  .mobile-career-quick{display:inline-flex !important}
  .mobile-menu-toggle{display:flex !important}
}


/* =========================================================
   NAV ONLY — REQUESTED FINAL ADJUSTMENT
========================================================= */

/* 1) On scroll: slightly darker glass background with visible blur. */
.nav.is-scrolled{
  background:rgba(8,10,8,.76) !important;
  border-color:rgba(255,255,255,.10) !important;
  box-shadow:0 16px 42px rgba(0,0,0,.18) !important;
  backdrop-filter:blur(20px) saturate(125%) !important;
  -webkit-backdrop-filter:blur(20px) saturate(125%) !important;
}

/* 2) Align the logo's left edge exactly with the site's content grid.
   The nav itself has 18px left padding, so the logo compensates that padding.
*/
@media(min-width:1001px){
  .nav-logo{
    margin-left:-18px !important;
  }
}


/* =========================================================
   FINAL VERIFIED HEADER — BLUR + CONTENT ALIGNMENT
========================================================= */
@media(min-width:1001px){
  .nav-shell{
    position:fixed !important; z-index:10000 !important; top:18px !important;
    left:0 !important; right:0 !important; padding:0 !important; pointer-events:none !important;
  }
  .nav{
    pointer-events:auto !important;
    width:min(calc(100% - 64px),var(--max)) !important;
    height:68px !important; margin:0 auto !important; padding:0 12px 0 18px !important;
    display:grid !important; grid-template-columns:240px 1fr auto !important; align-items:center !important; gap:40px !important;
    border:1px solid transparent !important; border-radius:16px !important;
    background:transparent !important; box-shadow:none !important;
    backdrop-filter:none !important; -webkit-backdrop-filter:none !important;
  }
  .nav.is-scrolled{
    background:rgba(7,9,7,.84) !important;
    border-color:rgba(255,255,255,.12) !important;
    box-shadow:0 18px 48px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.04) !important;
    backdrop-filter:blur(26px) saturate(145%) !important;
    -webkit-backdrop-filter:blur(26px) saturate(145%) !important;
  }
  .nav-logo{margin-left:-18px !important;padding-left:0 !important;}
  .nav-logo img{width:280px !important;max-height:58px !important;}
  .nav.is-scrolled .nav-logo img{width:210px !important;max-height:48px !important;}
}
.contact-modal{z-index:100000 !important;}


/* =========================================================
   IMPORTED MOBILE MENU — EXACT SOURCE VERSION
   Only mobile menu/header controls are overridden below.
========================================================= */
/* =========================================================
   MOBILE NAVIGATION
========================================================= */
.mobile-menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:11px;
  background:rgba(255,255,255,.05);
  color:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  padding:0;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.mobile-menu-toggle span{
  position:absolute;
  width:19px;
  height:1.5px;
  border-radius:999px;
  background:currentColor;
  transition:
    transform .32s cubic-bezier(.22,1,.36,1),
    opacity .24s ease,
    top .32s cubic-bezier(.22,1,.36,1);
}
.mobile-menu-toggle span:nth-child(1){transform:translateY(-5px)}
.mobile-menu-toggle span:nth-child(2){transform:translateY(0)}
.mobile-menu-toggle span:nth-child(3){transform:translateY(5px)}

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:9998;
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease,visibility .3s ease;
}
.mobile-menu.is-open{
  visibility:visible;
  opacity:1;
  pointer-events:auto;
}
.mobile-menu-backdrop{
  position:absolute;
  inset:0;
  background:rgba(3,4,3,.58);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.mobile-menu-panel{
  position:absolute;
  top:10px;
  right:10px;
  bottom:10px;
  width:min(92vw,430px);
  display:flex;
  flex-direction:column;
  overflow:auto;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background:
    radial-gradient(circle at 78% 12%,rgba(255,242,0,.08),transparent 28%),
    #101210;
  box-shadow:0 30px 100px rgba(0,0,0,.46);
  transform:translateX(24px) scale(.985);
  transition:transform .42s cubic-bezier(.22,1,.36,1);
}
.mobile-menu.is-open .mobile-menu-panel{
  transform:translateX(0) scale(1);
}
.mobile-menu-head{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:0 17px 0 20px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-menu-logo img{
  display:block;
  width:190px;
  height:auto;
}
.mobile-menu-close{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  background:rgba(255,255,255,.04);
  color:#fff;
  cursor:pointer;
  font-size:21px;
  line-height:1;
}
.mobile-menu-body{
  padding:24px 20px 10px;
}
.mobile-menu-label{
  margin-bottom:12px;
  color:#707770;
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:650;
}
.mobile-menu-nav{
  display:grid;
  border-top:1px solid rgba(255,255,255,.08);
}
.mobile-menu-link,
.mobile-accordion-toggle{
  min-height:62px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:0;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:transparent;
  color:#fff;
  font-family:inherit;
  font-size:25px;
  line-height:1;
  letter-spacing:-.035em;
  font-weight:520;
  text-align:left;
  cursor:pointer;
}
.mobile-menu-link span,
.mobile-accordion-toggle span:last-child{
  color:var(--yellow);
  font-size:15px;
}
.mobile-accordion-chevron{
  width:8px;
  height:8px;
  border-right:1.5px solid var(--yellow);
  border-bottom:1.5px solid var(--yellow);
  transform:rotate(45deg);
  transition:transform .28s cubic-bezier(.22,1,.36,1);
}
.mobile-accordion.is-open .mobile-accordion-chevron{
  transform:rotate(225deg);
}
.mobile-accordion-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .38s cubic-bezier(.22,1,.36,1);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-accordion.is-open .mobile-accordion-content{
  max-height:230px;
}
.mobile-accordion-content a{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 6px 0 18px;
  color:#929992;
  font-size:14px;
  border-bottom:1px solid rgba(255,255,255,.045);
}
.mobile-accordion-content a:last-child{
  border-bottom:0;
}
.mobile-accordion-content a span{
  color:var(--yellow);
}
.mobile-menu-actions{
  display:grid;
  gap:9px;
  padding:22px 20px 26px;
  margin-top:auto;
}
.mobile-career-cta,
.mobile-project-cta{
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:0 17px;
  border-radius:11px;
  font-family:inherit;
  font-size:14px;
  font-weight:650;
}
.mobile-career-cta{
  border:1px solid rgba(255,242,0,.22);
  background:rgba(255,242,0,.06);
  color:#fff;
}
.mobile-career-cta i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--yellow);
  box-shadow:0 0 0 5px rgba(255,242,0,.07);
}
.mobile-project-cta{
  border:0;
  background:var(--yellow);
  color:#111;
  cursor:pointer;
}
.mobile-project-cta span{
  width:27px;
  height:27px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#111;
  color:var(--yellow);
}
.mobile-menu-footer{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:0 20px 20px;
  color:#666d66;
  font-size:10px;
}
body.mobile-menu-open{
  overflow:hidden;
}

@media(max-width:1000px){
  .nav-menu{
    display:none !important;
  }
  .nav-actions,
  .nav > .nav-cta,
  .nav > .contact-btn{
    display:none !important;
  }
  .nav{
    grid-template-columns:auto 1fr auto !important;
  }
  .mobile-menu-toggle{
    position:relative;
    display:flex;
    grid-column:3;
    justify-self:end;
  }
}
@media(max-width:640px){
  .mobile-menu-panel{
    top:6px;
    right:6px;
    bottom:6px;
    width:calc(100vw - 12px);
    border-radius:18px;
  }
  .mobile-menu-logo img{
    width:172px;
  }
  .mobile-menu-body{
    padding-inline:18px;
  }
  .mobile-menu-actions{
    padding-inline:18px;
  }
  .mobile-menu-link,
  .mobile-accordion-toggle{
    min-height:58px;
    font-size:23px;
  }
}




/* =========================================================
   FINAL MOBILE HEADER
========================================================= */
.mobile-menu-toggle{
  background:rgba(12,14,12,.64) !important;
  border-color:rgba(255,242,0,.25) !important;
  color:var(--yellow) !important;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.mobile-menu-toggle span{
  background:var(--yellow) !important;
}
.mobile-career-quick{
  display:none;
  min-height:44px;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:0 15px;
  margin-right:8px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:10px;
  background:rgba(255,255,255,.055);
  color:#fff;
  font-size:13px;
  font-weight:630;
  text-decoration:none;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.mobile-career-quick::after{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--yellow);
  animation:mobileCareerPulse 4.6s cubic-bezier(.22,1,.36,1) infinite;
}
@keyframes mobileCareerPulse{
  0%,76%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,242,0,0)}
  82%{transform:scale(1.16);box-shadow:0 0 0 5px rgba(255,242,0,.10)}
  92%{transform:scale(1);box-shadow:0 0 0 10px rgba(255,242,0,0)}
}
@media(max-width:1000px){
  .nav{
    grid-template-columns:minmax(0,1fr) auto auto !important;
    gap:8px !important;
  }
  .mobile-career-quick{
    display:inline-flex;
    grid-column:2;
    justify-self:end;
  }
  .mobile-menu-toggle{
    grid-column:3 !important;
  }
}
@media(max-width:640px){
  .mobile-career-quick{
    min-height:40px;
    padding:0 11px;
    font-size:12px;
    margin-right:3px;
  }
}




/* =========================================================
   MOBILE MENU — HEADER LOGO OVERLAP FIX
========================================================= */
@media(max-width:1000px){
  /* When the mobile overlay is open, hide the normal fixed header completely.
     The mobile menu has its own logo/header and should be the only visible layer. */
  body.mobile-menu-open .nav-shell{
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transition:opacity .18s ease,visibility .18s ease !important;
  }

  /* Keep the mobile overlay above all page/header layers. */
  .mobile-menu{
    z-index:99999 !important;
  }
}


/* =========================================================
   ADVANTAGES — YELLOW BUBBLES / HOVER INFO
========================================================= */
.advantage-network{
  position:relative;
  height:185vh;
  min-height:1250px;
  background:#fff;
}
.advantage-sticky{
  position:sticky;
  top:86px;
  height:calc(100vh - 86px);
  min-height:700px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.advantage-system{
  position:relative;
  width:100%;
  max-width:1220px;
  height:700px;
  margin:0 auto;
}

/* dashed connector lines */
.advantage-system-lines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:visible;
  pointer-events:none;
}
.advantage-system-lines path{
  fill:none;
  stroke:#aeb3ad;
  stroke-width:1.35;
  vector-effect:non-scaling-stroke;
  stroke-linecap:round;
  stroke-dasharray:8 11;
  stroke-dashoffset:1;
  opacity:.9;
}

/* center: black bubble with only the S, larger and pulsing */
.advantage-logo-core{
  position:absolute;
  z-index:8;
  left:50%;
  top:50%;
  width:172px;
  height:172px;
  transform:translate(-50%,-50%);
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#0b0d0b;
  box-shadow:
    0 0 0 1px rgba(13,14,13,.08),
    0 28px 70px rgba(17,20,17,.15);
}
.advantage-logo-core img{
  width:100px;
  height:100px;
  object-fit:contain;
}
.advantage-pulse-ring{
  position:absolute;
  inset:-1px;
  border:1px solid rgba(255,242,0,.42);
  border-radius:50%;
  pointer-events:none;
  animation:advantagePulse 2.8s cubic-bezier(.22,1,.36,1) infinite;
}
.advantage-pulse-ring-b{
  animation-delay:1.4s;
}
@keyframes advantagePulse{
  0%{
    transform:scale(.94);
    opacity:.58;
  }
  68%{
    transform:scale(1.28);
    opacity:0;
  }
  100%{
    transform:scale(1.28);
    opacity:0;
  }
}

/* yellow bubbles */
.advantage-bubble{
  position:absolute;
  z-index:5;
  width:158px;
  height:158px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:18px;
  border:0;
  border-radius:50%;
  background:var(--yellow);
  color:#111;
  box-shadow:0 18px 42px rgba(17,20,17,.08);
  opacity:0;
  transform:scale(.78) translateY(10px);
  will-change:transform,opacity;
  cursor:default;
}
.adv-bubble-number{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  color:#665f00;
}
.advantage-bubble strong{
  display:block;
  font-size:17px;
  line-height:1.05;
  font-weight:600;
  letter-spacing:-.025em;
  text-align:center;
}

/* left -> right placement */
.adv-bubble-1{left:6%;top:15%}
.adv-bubble-2{left:3%;bottom:9%}
.adv-bubble-3{left:50%;top:0;margin-left:-79px}
.adv-bubble-4{right:6%;top:15%}
.adv-bubble-5{right:3%;bottom:8%}

/* hover info card */
.advantage-hover-card{
  position:absolute;
  z-index:20;
  left:50%;
  bottom:calc(100% + 18px);
  width:320px;
  padding:20px 22px 18px;
  border:1px solid rgba(13,14,13,.10);
  border-radius:16px;
  background:rgba(255,255,255,.98);
  color:#111;
  box-shadow:0 24px 60px rgba(17,20,17,.14);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate(-50%,10px) scale(.97);
  transition:
    opacity .25s ease,
    visibility .25s ease,
    transform .32s cubic-bezier(.22,1,.36,1);
}
.advantage-hover-card::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-8px;
  width:16px;
  height:16px;
  transform:translateX(-50%) rotate(45deg);
  background:#fff;
  border-right:1px solid rgba(13,14,13,.08);
  border-bottom:1px solid rgba(13,14,13,.08);
}
.advantage-bubble:hover .advantage-hover-card{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0) scale(1);
}
.advantage-hover-card h4{
  margin:0 0 12px;
  font-size:20px;
  line-height:1;
  letter-spacing:-.03em;
  font-weight:600;
}
.advantage-hover-card ul{
  margin:0;
  padding-left:17px;
}
.advantage-hover-card li{
  margin:0 0 6px;
  color:#676d67;
  font-size:12px;
  line-height:1.42;
}

/* mobile: no hover dependency, show simple cards */
@media(max-width:900px){
  .advantage-network{
    height:auto;
    min-height:0;
    padding:20px 0 110px;
  }
  .advantage-sticky{
    position:relative;
    top:auto;
    height:auto;
    min-height:0;
    overflow:visible;
  }
  .advantage-system{
    height:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    padding-top:190px;
  }
  .advantage-system-lines{display:none}
  .advantage-logo-core{
    top:10px;
    width:146px;
    height:146px;
  }
  .advantage-logo-core img{
    width:88px;
    height:88px;
  }
  .advantage-bubble,
  .adv-bubble-1,.adv-bubble-2,.adv-bubble-3,.adv-bubble-4,.adv-bubble-5{
    position:relative;
    inset:auto;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    margin:0;
    width:100%;
    height:auto;
    min-height:124px;
    border-radius:18px;
    opacity:1 !important;
    transform:none !important;
  }
  .advantage-hover-card{
    position:relative;
    left:auto;
    bottom:auto;
    width:100%;
    margin-top:14px;
    display:block;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    border-radius:12px;
  }
  .advantage-hover-card::after{display:none}
}
@media(max-width:620px){
  .advantage-system{
    grid-template-columns:1fr;
    padding-top:175px;
  }
}


/* =========================================================
   ADVANTAGE REFINE — ORDER / S ONLY / HEADER BLUR
========================================================= */

/* No numbering in yellow bubbles */
.adv-bubble-number{
  display:none !important;
}

/* Center bubble: only isolated S, slightly larger */
.advantage-logo-core img{
  width:112px !important;
  height:112px !important;
  object-fit:contain !important;
}

/* Sticky header: stronger blur, slightly lower opacity */
.nav.is-scrolled{
  background:rgba(7,9,7,.70) !important;
  backdrop-filter:blur(30px) saturate(145%) !important;
  -webkit-backdrop-filter:blur(30px) saturate(145%) !important;
  border-color:rgba(255,255,255,.10) !important;
}


/* =========================================================
   ADVANTAGE FINAL — S SIGNET / SYNCED LINES / BACKGROUND
========================================================= */

/* subtle technical structure behind the whole advantage scene */
.advantage-network{
  background:
    linear-gradient(rgba(13,14,13,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,14,13,.022) 1px, transparent 1px),
    radial-gradient(circle at 50% 47%, rgba(255,242,0,.055), transparent 29%),
    #fff !important;
  background-size:
    54px 54px,
    54px 54px,
    auto,
    auto !important;
}

.advantage-system::before{
  content:"";
  position:absolute;
  inset:5% 6%;
  pointer-events:none;
  border-radius:50%;
  background:
    radial-gradient(circle at center, transparent 0 37%, rgba(13,14,13,.028) 37.2% 37.45%, transparent 37.7%),
    radial-gradient(circle at center, transparent 0 49%, rgba(13,14,13,.020) 49.2% 49.4%, transparent 49.7%);
}

/* black center bubble */
.advantage-logo-core{
  width:178px !important;
  height:178px !important;
  background:#090b09 !important;
  box-shadow:
    0 0 0 1px rgba(13,14,13,.07),
    0 28px 72px rgba(17,20,17,.16) !important;
}

/* EXACT isolated S only */
.advantage-logo-core img{
  width:112px !important;
  height:112px !important;
  object-fit:contain !important;
  object-position:center !important;
}

/* slightly calmer pulse */
.advantage-pulse-ring{
  border-color:rgba(255,242,0,.36) !important;
  animation-duration:3.2s !important;
}

/*
  IMPORTANT:
  Lines are hidden by default and become visible only when JS starts
  the same reveal phase as the matching bubble.
*/
.advantage-system-lines path{
  stroke:#aeb3ad !important;
  stroke-width:1.35 !important;
  stroke-linecap:round !important;
  stroke-dasharray:7 11 !important;
  opacity:0 !important;
  transition:opacity .12s linear !important;
}

/* JS toggles this class at the exact same threshold as the bubble */
.advantage-system-lines path.is-revealing{
  opacity:.92 !important;
}

/* keep bubbles yellow and clean */
.advantage-bubble{
  background:var(--yellow) !important;
  color:#111 !important;
  border:0 !important;
}

/* no numbering */
.adv-bubble-number{
  display:none !important;
}

/* slightly stronger but still restrained technical field on hover */
.advantage-bubble:hover{
  box-shadow:
    0 23px 52px rgba(17,20,17,.12),
    0 0 0 1px rgba(177,167,0,.16) !important;
}


/* =========================================================
   CLEAN SECTION HANDOFF — NO BLACK/WHITE GRADIENT
========================================================= */
.statement{
  background:#fff !important;
  margin-top:0 !important;
  position:relative !important;
}
.statement::before,
.statement::after{
  display:none !important;
  content:none !important;
}

/* services stop cleanly; no bleed/fade into next section */
.services{
  margin-bottom:0 !important;
}
.services::after{
  display:none !important;
  content:none !important;
}




/* =========================================================
   FINAL CLAIM + ADVANTAGE FLOW
========================================================= */

/* Original premium statement returns as the main editorial block */
.statement{
  min-height:auto !important;
  background:#fff !important;
  color:var(--ink) !important;
  display:block !important;
  padding:120px 0 70px !important;
  margin:0 !important;
}
.statement::before,
.statement::after{
  display:none !important;
  content:none !important;
}
.statement-grid{
  display:grid !important;
  grid-template-columns:330px 1fr !important;
  gap:80px !important;
  align-items:start !important;
  padding:0 !important;
}
.statement h2{
  margin:0 !important;
  max-width:1020px !important;
  font-size:clamp(58px,7vw,106px) !important;
  line-height:.94 !important;
  letter-spacing:-.064em !important;
  font-weight:590 !important;
}
.statement h2 span{
  background:linear-gradient(transparent 72%,var(--yellow) 72%) !important;
}
.statement-copy{
  grid-column:2 !important;
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:40px !important;
  margin-top:42px !important;
  color:#60645f !important;
  font-size:17px !important;
  line-height:1.6 !important;
}

/* "Warum Scharding" is only a small transition label, not a second headline */
.advantage-network{
  position:relative !important;
  height:178vh !important;
  min-height:1180px !important;
  margin:0 !important;
  padding:18px 0 0 !important;
  background:#fff !important;
  color:var(--ink) !important;
  overflow:visible !important;
}
.advantage-kicker{
  position:relative;
  z-index:8;
  padding-top:18px;
}
.advantage-kicker .section-label{
  display:inline-flex;
  align-items:center;
}

/* Sticky visual begins directly under the small label */
.advantage-sticky{
  position:sticky !important;
  top:86px !important;
  height:calc(100vh - 86px) !important;
  min-height:690px !important;
  display:flex !important;
  align-items:center !important;
  padding:0 !important;
  overflow:visible !important;
}
.advantage-system{
  position:relative !important;
  width:100% !important;
  max-width:1220px !important;
  height:680px !important;
  margin:0 auto !important;
  border-radius:30px;
  background:
    linear-gradient(rgba(13,14,13,.020) 1px, transparent 1px),
    linear-gradient(90deg,rgba(13,14,13,.020) 1px, transparent 1px),
    radial-gradient(circle at 50% 49%,rgba(255,242,0,.055),transparent 29%) !important;
  background-size:56px 56px,56px 56px,auto !important;
}

/* Technical circles stay extremely subtle */
.advantage-system::before{
  content:"" !important;
  position:absolute !important;
  inset:4% 5% !important;
  pointer-events:none !important;
  border-radius:50% !important;
  background:
    radial-gradient(circle at center,transparent 0 35%,rgba(13,14,13,.024) 35.2% 35.45%,transparent 35.7%),
    radial-gradient(circle at center,transparent 0 49%,rgba(13,14,13,.017) 49.2% 49.4%,transparent 49.7%) !important;
}

/* Center */
.advantage-logo-core{
  position:absolute !important;
  z-index:8 !important;
  left:50% !important;
  top:50% !important;
  width:178px !important;
  height:178px !important;
  transform:translate(-50%,-50%) !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
  border-radius:50% !important;
  background:#090b09 !important;
  box-shadow:0 28px 72px rgba(17,20,17,.15) !important;
}
.advantage-logo-core img{
  width:102px !important;
  height:102px !important;
  object-fit:contain !important;
}
.advantage-core-text{
  color:#fff !important;
  font-size:11px !important;
  line-height:1 !important;
  letter-spacing:.13em !important;
  text-transform:uppercase !important;
  font-weight:650 !important;
}

/* Pulse remains subtle */
.advantage-pulse-ring{
  position:absolute !important;
  inset:-1px !important;
  border:1px solid rgba(255,242,0,.34) !important;
  border-radius:50% !important;
  pointer-events:none !important;
  animation:advantagePulse 3.2s cubic-bezier(.22,1,.36,1) infinite !important;
}
.advantage-pulse-ring-b{animation-delay:1.6s !important}

/* Bubble layout: intentionally asymmetric, more architectural */
.adv-bubble-1{left:8% !important; top:11% !important}
.adv-bubble-2{left:2.5% !important; bottom:12% !important}
.adv-bubble-3{left:47% !important; top:0 !important; margin-left:-79px !important}
.adv-bubble-4{right:12% !important; top:18% !important}
.adv-bubble-5{right:2% !important; bottom:8% !important}

/* Lines hidden until JS activates the corresponding bubble */
.advantage-system-lines path{
  opacity:0 !important;
  stroke:#aeb3ad !important;
  stroke-width:1.35 !important;
  stroke-linecap:round !important;
  stroke-dasharray:7 11 !important;
  transition:opacity .1s linear !important;
}
.advantage-system-lines path.is-revealing{
  opacity:.90 !important;
}

/* Yellow bubbles stay minimal */
.advantage-bubble{
  background:var(--yellow) !important;
  color:#111 !important;
  border:0 !important;
  box-shadow:0 18px 42px rgba(17,20,17,.08) !important;
}
.adv-bubble-number{display:none !important}

/* Remove any old second headline */
.advantage-heading,
.claim-reasons-intro,
.statement-advantage-bridge{
  display:none !important;
}

@media(max-width:1000px){
  .statement{
    padding:95px 0 55px !important;
  }
  .statement-grid{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }
  .statement-copy{
    grid-column:1 !important;
    grid-template-columns:1fr 1fr !important;
    margin-top:22px !important;
  }
  .advantage-network{
    height:auto !important;
    min-height:0 !important;
    padding-top:5px !important;
    padding-bottom:100px !important;
  }
  .advantage-sticky{
    position:relative !important;
    top:auto !important;
    height:auto !important;
    min-height:0 !important;
  }
  .advantage-system{
    height:auto !important;
  }
}
@media(max-width:640px){
  .statement h2{
    font-size:48px !important;
  }
  .statement-copy{
    grid-template-columns:1fr !important;
  }
}


/* =========================================================
   ADVANTAGE ALIGNMENT + POPUP DIRECTION FIX
========================================================= */

/* Lines always stay behind the yellow bubbles */
.advantage-system-lines{
  z-index:1 !important;
}
.advantage-system-lines path{
  position:relative;
  z-index:1 !important;
}
.advantage-bubble{
  z-index:6 !important;
}

/* Align bubble centers with the visual endpoints of their connector paths.
   Positions are tuned to the current 1200x700 SVG geometry. */
.adv-bubble-1{
  left:12.7% !important;
  top:16.2% !important;
}
.adv-bubble-2{
  left:10.1% !important;
  bottom:8.5% !important;
}
.adv-bubble-3{
  left:50% !important;
  top:0 !important;
  margin-left:-79px !important;
}
.adv-bubble-4{
  right:12.8% !important;
  top:18.5% !important;
}
.adv-bubble-5{
  right:9.8% !important;
  bottom:7.7% !important;
}

/* Hover info cards open toward the page center, depending on position */
.adv-bubble-1 .advantage-hover-card,
.adv-bubble-2 .advantage-hover-card{
  left:calc(100% + 18px) !important;
  right:auto !important;
  top:50% !important;
  bottom:auto !important;
  transform:translate(8px,-50%) scale(.97) !important;
}
.adv-bubble-1:hover .advantage-hover-card,
.adv-bubble-2:hover .advantage-hover-card{
  transform:translate(0,-50%) scale(1) !important;
}
.adv-bubble-1 .advantage-hover-card::after,
.adv-bubble-2 .advantage-hover-card::after{
  left:-8px !important;
  right:auto !important;
  top:50% !important;
  bottom:auto !important;
  transform:translateY(-50%) rotate(135deg) !important;
}

.adv-bubble-4 .advantage-hover-card,
.adv-bubble-5 .advantage-hover-card{
  right:calc(100% + 18px) !important;
  left:auto !important;
  top:50% !important;
  bottom:auto !important;
  transform:translate(-8px,-50%) scale(.97) !important;
}
.adv-bubble-4:hover .advantage-hover-card,
.adv-bubble-5:hover .advantage-hover-card{
  transform:translate(0,-50%) scale(1) !important;
}
.adv-bubble-4 .advantage-hover-card::after,
.adv-bubble-5 .advantage-hover-card::after{
  right:-8px !important;
  left:auto !important;
  top:50% !important;
  bottom:auto !important;
  transform:translateY(-50%) rotate(-45deg) !important;
}

/* Top-center bubble opens downward so it never escapes viewport */
.adv-bubble-3 .advantage-hover-card{
  left:50% !important;
  top:calc(100% + 18px) !important;
  bottom:auto !important;
  transform:translate(-50%,-8px) scale(.97) !important;
}
.adv-bubble-3:hover .advantage-hover-card{
  transform:translate(-50%,0) scale(1) !important;
}
.adv-bubble-3 .advantage-hover-card::after{
  left:50% !important;
  top:-8px !important;
  bottom:auto !important;
  transform:translateX(-50%) rotate(225deg) !important;
}

/* Mobile: cards become inline and always readable */
@media(max-width:900px){
  .advantage-bubble{
    z-index:2 !important;
  }
  .advantage-hover-card,
  .adv-bubble-1 .advantage-hover-card,
  .adv-bubble-2 .advantage-hover-card,
  .adv-bubble-3 .advantage-hover-card,
  .adv-bubble-4 .advantage-hover-card,
  .adv-bubble-5 .advantage-hover-card{
    position:relative !important;
    inset:auto !important;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    bottom:auto !important;
    width:100% !important;
    margin-top:12px !important;
    transform:none !important;
    opacity:1 !important;
    visibility:visible !important;
    display:block !important;
    pointer-events:auto !important;
    box-shadow:none !important;
  }
  .advantage-hover-card::after{
    display:none !important;
  }
}




/* =========================================================
   ADVANTAGE POPUPS — ALWAYS ABOVE EVERYTHING
========================================================= */
.advantage-system{
  overflow:visible !important;
  isolation:isolate;
}
.advantage-system::before,
.advantage-system-lines{
  z-index:0 !important;
}
.advantage-system-lines path{
  z-index:0 !important;
}
.advantage-logo-core{
  z-index:10 !important;
}
.advantage-bubble{
  z-index:20 !important;
  overflow:visible !important;
}
.advantage-hover-card{
  z-index:9999 !important;
  isolation:isolate;
  pointer-events:none;
}
.advantage-bubble:hover{
  z-index:9998 !important;
}

/* popup itself must render above black center bubble, lines and all other circles */
.advantage-bubble:hover .advantage-hover-card{
  z-index:99999 !important;
}

/* allow hover cards to escape sticky/system bounds */
.advantage-network,
.advantage-sticky,
.advantage-system{
  overflow:visible !important;
}


/* =========================================================
   CUSTOMER REVIEWS — IMAGE LEFT / FEEDBACK RIGHT SLIDER
========================================================= */
.customer-reviews{
  position:relative;
  padding:140px 0 150px;
  background:#f3f4f1;
  color:var(--ink);
  overflow:hidden;
}
.customer-reviews::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 78% 16%,rgba(255,242,0,.055),transparent 24%),
    linear-gradient(rgba(13,14,13,.016) 1px,transparent 1px),
    linear-gradient(90deg,rgba(13,14,13,.016) 1px,transparent 1px);
  background-size:auto,68px 68px,68px 68px;
}
.customer-reviews .wrap{
  position:relative;
  z-index:1;
}
.customer-reviews-head{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:52px;
  align-items:end;
  margin-bottom:58px;
}
.customer-reviews h2{
  margin:0;
  max-width:900px;
  font-size:clamp(52px,6vw,88px);
  line-height:.94;
  letter-spacing:-.058em;
  font-weight:540;
}
.customer-reviews-head p{
  margin:20px 0 0;
  max-width:620px;
  color:#666b66;
  font-size:15px;
  line-height:1.58;
}

.testimonial-slider{
  position:relative;
}
.testimonial-track{
  display:flex;
  gap:18px;
  overflow:hidden;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
}
.testimonial-slide{
  flex:0 0 100%;
  scroll-snap-align:start;
  min-height:560px;
  display:grid;
  grid-template-columns:.40fr .60fr;
  overflow:hidden;
  border:1px solid rgba(13,14,13,.08);
  border-radius:28px;
  background:#fff;
  box-shadow:0 24px 68px rgba(17,20,17,.07);
}
.testimonial-person{
  position:relative;
  min-height:560px;
  overflow:hidden;
  background:#101210;
}
.testimonial-photo{
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  filter:saturate(.9);
}
.testimonial-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(6,7,6,.08),rgba(6,7,6,.64) 82%),
    radial-gradient(circle at 50% 35%,transparent 20%,rgba(8,9,8,.12));
}
.testimonial-photo-1{
  background-image:url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&fm=jpg&q=80&w=1300");
}
.testimonial-photo-2{
  background-image:url("https://images.unsplash.com/photo-1568602471122-7832951cc4c5?auto=format&fit=crop&fm=jpg&q=80&w=1300");
}
.testimonial-photo-3{
  background-image:url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&fm=jpg&q=80&w=1300");
}
.testimonial-person-meta{
  position:absolute;
  z-index:2;
  left:30px;
  right:30px;
  bottom:30px;
  padding:18px 19px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:16px;
  background:rgba(10,12,10,.70);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  color:#fff;
}
.testimonial-person-meta strong{
  display:block;
  font-size:18px;
  line-height:1.1;
  font-weight:590;
}
.testimonial-person-meta span{
  display:block;
  margin-top:5px;
  color:rgba(255,255,255,.58);
  font-size:11px;
}
.testimonial-feedback{
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:58px 64px;
}
.testimonial-stars{
  color:#b9ae00;
  letter-spacing:.10em;
  font-size:15px;
}
.testimonial-feedback blockquote{
  margin:28px 0 0;
  max-width:780px;
  color:#1d211d;
  font-size:clamp(34px,3.6vw,54px);
  line-height:1.15;
  letter-spacing:-.043em;
  font-weight:430;
}

.testimonial-footer{
  margin-top:24px;
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:24px;
  align-items:center;
}
.testimonial-progress{
  height:2px;
  overflow:hidden;
  background:rgba(13,14,13,.10);
}
.testimonial-progress span{
  display:block;
  width:33.333%;
  height:100%;
  background:#111;
  transform:translateX(0);
  transition:transform .45s var(--ease);
}
.testimonial-count{
  display:flex;
  gap:6px;
  align-items:baseline;
  color:#868b86;
  font-size:11px;
}
.testimonial-count strong{
  color:#111;
  font-size:18px;
  font-weight:600;
}
.testimonial-controls{
  display:flex;
  gap:8px;
}
.testimonial-controls button{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid rgba(13,14,13,.10);
  border-radius:50%;
  background:#fff;
  color:#111;
  cursor:pointer;
  transition:transform .3s var(--ease),background .25s ease,color .25s ease;
}
.testimonial-controls button:last-child{
  background:#111;
  color:var(--yellow);
}
.testimonial-controls button:hover{
  transform:translateY(-2px);
}
.testimonial-note{
  margin-top:18px;
  color:#8a8f8a;
  font-size:10px;
  line-height:1.4;
}

@media(max-width:900px){
  .customer-reviews-head{
    grid-template-columns:1fr;
    gap:18px;
  }
  .testimonial-slide{
    grid-template-columns:1fr;
  }
  .testimonial-person{
    min-height:380px;
  }
  .testimonial-feedback{
    min-height:auto;
    padding:40px 28px;
  }
}
@media(max-width:640px){
  .customer-reviews{
    padding:100px 0 110px;
  }
  .customer-reviews h2{
    font-size:46px;
  }
  .testimonial-person{
    min-height:320px;
  }
  .testimonial-feedback blockquote{
    font-size:30px;
  }
  .testimonial-footer{
    grid-template-columns:1fr auto;
  }
  .testimonial-count{
    grid-column:1;
  }
  .testimonial-controls{
    grid-column:2;
    grid-row:1 / span 2;
  }
}

/* =========================================================
   ADVANTAGE — CLEAN MOBILE ACCORDION (replaces broken grid)
========================================================= */
.adv-mobile-wrap{display:none}

@media(max-width:900px){
  .advantage-sticky{display:none !important}
  .advantage-network{padding:80px 0 0}
  .adv-mobile-wrap{display:block;padding:28px 0 70px}
  .adv-mobile-grid{display:flex;flex-direction:column;gap:8px}
  .adv-mob-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
  }
  .adv-mob-card summary{
    list-style:none;
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    cursor:pointer;
    user-select:none;
    -webkit-tap-highlight-color:transparent;
  }
  .adv-mob-card summary::-webkit-details-marker{display:none}
  .adv-mob-num{
    display:flex;
    align-items:center;
    justify-content:center;
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--yellow);
    font-size:10px;
    font-weight:700;
    flex-shrink:0;
    letter-spacing:.02em;
  }
  .adv-mob-card summary strong{
    font-size:15px;
    font-weight:650;
    letter-spacing:-.02em;
    flex:1;
  }
  .adv-mob-chevron{
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--paper);
    flex-shrink:0;
    position:relative;
    transition:transform .25s var(--ease);
  }
  .adv-mob-chevron::before,.adv-mob-chevron::after{
    content:"";
    position:absolute;
    top:50%;
    width:5px;
    height:1.5px;
    background:var(--ink);
    border-radius:2px;
  }
  .adv-mob-chevron::before{left:4px;transform:translateY(-50%) rotate(45deg)}
  .adv-mob-chevron::after{right:4px;transform:translateY(-50%) rotate(-45deg)}
  .adv-mob-card[open] .adv-mob-chevron{transform:rotate(180deg)}
  .adv-mob-card ul{
    margin:0;
    padding:4px 18px 18px 58px;
    border-top:1px solid var(--line);
  }
  .adv-mob-card li{
    font-size:13px;
    color:#6a706a;
    line-height:1.6;
    margin-bottom:5px;
    padding-top:5px;
  }
  .adv-mob-card li:last-child{margin-bottom:0}
}
