:root{
  --red:#e32931;
  --red-deep:#b91620;
  --red-soft:#fff0f1;
  --ink:#0f1b21;
  --muted:#5e6b72;
  --line:#dfe5e8;
  --paper:#ffffff;
  --soft:#f4f7f8;
  --dark:#071116;
  --dark-2:#0d1a20;
  --dark-3:#13242c;
  --max:1220px;
  --radius:24px;
  --radius-sm:16px;
  --shadow:0 24px 70px rgba(7,17,22,.12);
  --shadow-soft:0 14px 38px rgba(7,17,22,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1000;
  opacity:.025;
  background-image:linear-gradient(rgba(15,27,33,.8) 1px,transparent 1px),linear-gradient(90deg,rgba(15,27,33,.8) 1px,transparent 1px);
  background-size:32px 32px;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--red);text-decoration-thickness:.08em;text-underline-offset:.2em}
a:hover{color:var(--red-deep)}
h1,h2,h3{line-height:1.04;letter-spacing:-.035em;margin:0 0 .65em;text-wrap:balance}
h1{font-size:clamp(3.5rem,9vw,7.8rem);letter-spacing:-.065em}
h2{font-size:clamp(2.25rem,4.7vw,4.25rem)}
h3{font-size:1.3rem}
p{margin:0 0 1rem}
.container{width:min(calc(100% - 48px),var(--max));margin-inline:auto}
.skip-link{position:absolute;left:-9999px;top:0;background:#fff;color:#000;padding:.75rem 1rem;z-index:9999;border-radius:10px}
.skip-link:focus{left:1rem;top:1rem}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,17,22,.92);
  backdrop-filter:blur(20px) saturate(140%);
  border-bottom:1px solid rgba(255,255,255,.09);
}
.nav-wrap{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:2rem}
.brand{display:flex;align-items:center;gap:.85rem;color:#fff;text-decoration:none}
.brand:hover{color:#fff}
.brand-mark{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:14px 14px 14px 5px;
  background:linear-gradient(145deg,#ff5056,var(--red-deep));
  color:#fff;
  font-weight:950;
  font-size:1.4rem;
  box-shadow:0 10px 30px rgba(227,41,49,.25);
}
.brand strong{display:block;letter-spacing:.11em;font-size:.94rem}
.brand small{display:block;color:#8fa0a9;font-size:.7rem;margin-top:-.12rem;letter-spacing:.04em}
.main-nav{display:flex;align-items:center;gap:.15rem}
.main-nav a{color:#c6d0d5;text-decoration:none;padding:.68rem .8rem;border-radius:12px;font-size:.92rem;font-weight:650;transition:.2s ease}
.main-nav a:hover{background:rgba(255,255,255,.07);color:#fff}
.main-nav a.active{background:rgba(227,41,49,.16);color:#ff7c80}
.menu-toggle{display:none;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.06);color:#fff;border-radius:12px;padding:.65rem .85rem;font:inherit;font-weight:700}

.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 75% 35%,rgba(227,41,49,.22),transparent 28rem),
    radial-gradient(circle at 25% 0%,rgba(74,112,128,.22),transparent 32rem),
    var(--dark);
  padding:clamp(5rem,10vw,9rem) 0 clamp(5rem,8vw,8rem);
}
.hero:after{
  content:"";
  position:absolute;
  width:34rem;
  height:34rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
  right:-12rem;
  bottom:-18rem;
  box-shadow:0 0 0 5rem rgba(255,255,255,.018),0 0 0 10rem rgba(255,255,255,.012);
}
.hero-grid{display:grid;grid-template-columns:.88fr 1.12fr;gap:clamp(2.5rem,6vw,6.5rem);align-items:center;position:relative;z-index:2}
.hero-copy{max-width:640px}
.hero h1{
  margin-bottom:.18em;
  background:linear-gradient(120deg,#fff 18%,#fff 55%,#ff9b9e 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero .lead{color:#c6d2d7;max-width:640px}
.hero .eyebrow{color:#ff767b}
.hero-media{margin:0;position:relative;isolation:isolate}
.hero-media:before{
  content:"";
  position:absolute;
  inset:-16px;
  z-index:-1;
  border-radius:34px;
  background:linear-gradient(135deg,rgba(255,255,255,.16),rgba(227,41,49,.28),rgba(255,255,255,.04));
  filter:blur(.2px);
}
.hero-media:after{
  content:"EINSATZ / DISPLAY";
  position:absolute;
  left:22px;
  bottom:22px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(7,17,22,.78);
  backdrop-filter:blur(12px);
  color:#fff;
  font-size:.68rem;
  font-weight:850;
  letter-spacing:.14em;
  padding:.65rem .8rem;
  border-radius:999px;
}
.hero-media img{border-radius:24px;box-shadow:0 34px 90px rgba(0,0,0,.45);aspect-ratio:1000/416;object-fit:cover;border:1px solid rgba(255,255,255,.12)}

.eyebrow{text-transform:uppercase;letter-spacing:.18em;font-weight:850;font-size:.72rem;color:var(--red);margin-bottom:1.05rem}
.lead{font-size:clamp(1.2rem,2.3vw,1.6rem);line-height:1.5;color:#46555c;max-width:790px}
.button-row{display:flex;gap:.85rem;flex-wrap:wrap;margin-top:1.8rem}
.button{display:inline-flex;align-items:center;justify-content:center;min-height:50px;background:linear-gradient(135deg,#ef333b,var(--red-deep));color:#fff;text-decoration:none;padding:.85rem 1.2rem;border-radius:14px;font-weight:800;box-shadow:0 12px 30px rgba(227,41,49,.18);transition:transform .2s ease,box-shadow .2s ease}
.button:hover{color:#fff;transform:translateY(-2px);box-shadow:0 18px 36px rgba(227,41,49,.25)}
.button-ghost{background:transparent;color:var(--ink);border:1px solid var(--line);box-shadow:none}
.button-ghost:hover{background:var(--soft);color:var(--ink);box-shadow:none}
.hero .button-ghost,.page-head .button-ghost{color:#fff;border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.04)}
.hero .button-ghost:hover,.page-head .button-ghost:hover{background:rgba(255,255,255,.1);color:#fff}

.section{padding:clamp(4.8rem,8vw,8rem) 0;position:relative}
.section-muted{background:var(--soft)}
.section-dark{
  color:#f7fafb;
  background:
    radial-gradient(circle at 85% 20%,rgba(227,41,49,.15),transparent 26rem),
    linear-gradient(145deg,var(--dark),#0a171d 65%,#0d2028);
}
.section-dark .eyebrow{color:#ff777c}
.section-dark p,.section-dark li{color:#c6d1d6}
.section-dark h2,.section-dark h3{color:#fff}

.page-head{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 82% 10%,rgba(227,41,49,.24),transparent 27rem),
    radial-gradient(circle at 10% 110%,rgba(65,106,124,.22),transparent 30rem),
    var(--dark);
  padding:clamp(5rem,10vw,9rem) 0 clamp(4.6rem,8vw,7rem);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.page-head:after{content:"";position:absolute;right:5vw;top:50%;width:280px;height:280px;transform:translateY(-50%) rotate(12deg);border:1px solid rgba(255,255,255,.07);border-radius:48px;box-shadow:0 0 0 45px rgba(255,255,255,.012),0 0 0 90px rgba(255,255,255,.008)}
.page-head .container{position:relative;z-index:2}
.page-head h1{font-size:clamp(3.7rem,8vw,7rem);max-width:970px}
.page-head .lead{color:#c4d0d5;max-width:760px}
.page-head .eyebrow{color:#ff777c}

.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.15rem;margin-top:2.7rem}
.feature-card,.info-card,.reference-card,.price-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.65rem;
  background:rgba(255,255,255,.95);
  box-shadow:var(--shadow-soft);
}
.feature-card{position:relative;overflow:hidden;min-height:270px;display:flex;flex-direction:column;justify-content:flex-end;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.feature-card:after{content:"";position:absolute;width:130px;height:130px;border-radius:50%;right:-60px;top:-65px;background:var(--red-soft)}
.feature-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:#ccd6da}
.feature-card .number{position:absolute;top:1.4rem;left:1.5rem;display:grid;place-items:center;width:44px;height:44px;border-radius:14px;background:var(--dark);color:#fff;font-weight:900;font-size:.78rem;letter-spacing:.06em}
.feature-card h3{font-size:1.48rem}
.feature-card p{color:var(--muted);margin-bottom:0}

.prose-narrow{max-width:840px}
.prose-narrow>p:not(.eyebrow){font-size:1.1rem;color:#4e5d64}
.principles{list-style:none;padding:0;margin:2.2rem 0 0;display:grid;gap:1rem;counter-reset:item}
.principles li{counter-increment:item;padding:1.35rem 1.4rem 1.35rem 4.6rem;border:1px solid var(--line);border-radius:18px;background:#fff;position:relative;box-shadow:var(--shadow-soft)}
.principles li:before{content:counter(item,decimal-leading-zero);position:absolute;left:1.35rem;top:1.35rem;color:var(--red);font-weight:900;letter-spacing:.08em}

.video-grid,.two-col,.team-layout{display:grid;grid-template-columns:.82fr 1.18fr;gap:clamp(2.5rem,7vw,7rem);align-items:start}
.video-placeholder{width:100%;min-height:390px;border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);background:radial-gradient(circle at center,rgba(227,41,49,.18),transparent 35%),var(--dark);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.6rem;padding:2rem;cursor:pointer;box-shadow:var(--shadow)}
.video-placeholder .play{display:grid;place-items:center;width:76px;height:76px;border-radius:24px;background:linear-gradient(135deg,#f34047,var(--red-deep));font-size:1.55rem;padding-left:.18rem;margin-bottom:.6rem;box-shadow:0 18px 40px rgba(227,41,49,.28)}
.video-placeholder small{color:#aebcc2}
.video-consent iframe{width:100%;aspect-ratio:16/9;border:0;border-radius:var(--radius);box-shadow:var(--shadow)}

.stack{display:grid;gap:1rem}
.stack article{padding:1.45rem 1.5rem;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-soft)}
.stack article h3{margin-bottom:.45rem}
.stack article p{color:var(--muted)}
code{display:block;overflow:auto;background:#0c171c;color:#d8e5ea;padding:1rem 1.1rem;border-radius:12px;font-size:.82rem;line-height:1.55;margin-top:1rem}
.device-img{max-width:340px;margin:1.2rem auto 0;filter:drop-shadow(0 24px 34px rgba(7,17,22,.15))}
.process-list{counter-reset:process;list-style:none;padding:0;margin:0 0 2.8rem;display:grid;gap:.5rem}
.process-list li{counter-increment:process;display:flex;gap:1rem;align-items:center;padding:1rem 0;border-bottom:1px solid rgba(255,255,255,.11)}
.process-list li:before{content:counter(process,decimal-leading-zero);display:grid;place-items:center;flex:0 0 42px;height:42px;border-radius:13px;background:rgba(227,41,49,.16);color:#ff7f84;font-weight:900;font-size:.78rem}
.check-list{list-style:none;padding:0;margin:1.2rem 0 0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.7rem 1rem}
.check-list li{position:relative;padding:.75rem .8rem .75rem 2rem;border:1px solid rgba(255,255,255,.10);border-radius:14px;background:rgba(255,255,255,.035)}
.check-list li:before{content:"✓";position:absolute;left:.75rem;color:#ff7378;font-weight:900}
.section:not(.section-dark) .check-list li{border-color:var(--line);background:#fff;color:var(--ink)}

.media-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;margin-top:2.7rem}
.media-card{border:1px solid var(--line);border-radius:22px;overflow:hidden;background:#fff;box-shadow:var(--shadow-soft);transition:transform .22s ease,box-shadow .22s ease}
.media-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.media-card img{width:100%;aspect-ratio:16/10;object-fit:cover;background:#eef2f3}
.media-card>div{padding:1.35rem 1.4rem 1.5rem}
.media-card h3{font-size:1.25rem;margin-bottom:.5rem}
.media-card p{font-size:.94rem;color:var(--muted);margin:0}
.rounded-media,.portrait{border-radius:var(--radius);box-shadow:var(--shadow);border:1px solid rgba(15,27,33,.06)}
.portrait{max-height:660px;width:100%;object-fit:cover;object-position:center top}

.requirement-grid,.reference-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.2rem}
.info-card,.reference-card{padding:clamp(1.5rem,3vw,2rem)}
.info-card h2,.reference-card h2{font-size:1.6rem}
.info-card p,.info-card li,.reference-card p,.reference-card li{color:var(--muted)}
.info-card ul,.reference-card ul{padding-left:1.2rem}

.price-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.4rem;align-items:stretch}
.price-card{padding:clamp(1.7rem,4vw,2.8rem);position:relative;overflow:hidden}
.price-card.featured{border:1px solid rgba(227,41,49,.4);box-shadow:0 28px 70px rgba(227,41,49,.12)}
.price-card.featured:before{content:"EMPFOHLEN";position:absolute;right:1.4rem;top:1.4rem;background:var(--red-soft);color:var(--red-deep);border-radius:999px;padding:.42rem .65rem;font-size:.62rem;font-weight:900;letter-spacing:.12em}
.price{font-size:clamp(3rem,7vw,5rem);font-weight:950;letter-spacing:-.07em;margin:1rem 0 .8rem;color:var(--ink)}
.top-gap{margin-top:4rem}
.cost-note{
  position:relative;
  max-width:960px;
  margin:3.2rem auto 0;
  padding:clamp(1.6rem,3vw,2.25rem);
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.96);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.cost-note:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(180deg,#ff6b70,var(--red-deep));
}
.cost-note p{
  margin:0 0 1rem;
  color:#4e5d64;
  font-size:1.06rem;
}
.cost-note p:last-child{margin-bottom:0}

.quote-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2.5rem}
.quote-grid figure{margin:0;padding:1.6rem;border:1px solid rgba(255,255,255,.12);border-radius:20px;background:rgba(255,255,255,.035)}
blockquote{margin:0 0 1.1rem;font-size:1.08rem;color:#f4f8fa}
figcaption{color:#94a6ae;font-size:.88rem}
.role{display:inline-flex;color:var(--red);background:var(--red-soft);padding:.38rem .65rem;border-radius:999px;font-weight:850;font-size:.8rem;margin-bottom:1.1rem}
.people-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:1.8rem}
.people-grid article{background:#fff;border:1px solid var(--line);padding:1.5rem;border-radius:20px;box-shadow:var(--shadow-soft)}
.people-grid h3{font-size:1.18rem;margin-bottom:.35rem}
.people-grid p{color:var(--muted);margin-bottom:0;font-size:.94rem}

.legal{max-width:900px}
.legal h2{margin-top:2rem;font-size:clamp(1.8rem,3.5vw,2.6rem)}
.legal h3{margin-top:2rem;font-size:1.35rem}
.legal hr{border:0;border-top:1px solid var(--line);margin:3.2rem 0}
.legal address{font-style:normal}
.legal p,.legal li{color:#46555c}

.site-footer{position:relative;overflow:hidden;background:#050c10;color:#d8e1e5;padding:3.5rem 0;border-top:1px solid rgba(255,255,255,.07)}
.site-footer:after{content:"SANDRA";position:absolute;right:-.02em;bottom:-.36em;font-weight:950;font-size:clamp(5rem,15vw,13rem);letter-spacing:-.08em;color:rgba(255,255,255,.025);pointer-events:none}
.footer-grid{display:flex;justify-content:space-between;gap:2rem;align-items:center;position:relative;z-index:1}
.site-footer strong{letter-spacing:.12em}
.site-footer span{color:#82949c}
.site-footer nav{display:flex;gap:1.2rem;flex-wrap:wrap}
.site-footer a{color:#fff;text-decoration-color:rgba(255,255,255,.25)}

:focus-visible{outline:3px solid rgba(227,41,49,.4);outline-offset:3px}

@media(max-width:1060px){
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .media-grid{grid-template-columns:repeat(2,1fr)}
  .people-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:920px){
  .menu-toggle{display:block}
  .main-nav{display:none;position:absolute;top:82px;left:24px;right:24px;padding:.75rem;background:rgba(7,17,22,.98);border:1px solid rgba(255,255,255,.1);border-radius:18px;box-shadow:0 24px 70px rgba(0,0,0,.35);flex-direction:column;align-items:stretch}
  .main-nav.open{display:flex}
  .main-nav a{padding:.9rem 1rem}
  .hero-grid,.video-grid,.two-col,.team-layout{grid-template-columns:1fr}
  .hero-copy{max-width:780px}
  .hero-media{margin-top:1rem}
  .check-list{grid-template-columns:1fr}
  .quote-grid{grid-template-columns:1fr}
  .page-head:after{opacity:.55;right:-8rem}
}
@media(max-width:680px){
  .container{width:min(calc(100% - 30px),var(--max))}
  h1{font-size:clamp(3.2rem,18vw,5.2rem)}
  .hero{padding-top:4rem}
  .feature-grid,.media-grid,.requirement-grid,.reference-grid,.price-grid,.people-grid{grid-template-columns:1fr}
  .feature-card{min-height:235px}
  .footer-grid{align-items:flex-start;flex-direction:column}
  .page-head{padding-top:4rem}
  .brand small{display:none}
  .price-card.featured:before{position:static;display:inline-block;margin-bottom:1rem}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*:before,*:after{transition-duration:.001ms!important;animation-duration:.001ms!important;animation-iteration-count:1!important}
}
