:root{
  --orange:#f05a00;
  --orange2:#ff7a1a;
  --black:#050505;
  --panel:#0d0d0d;
  --panel2:#131313;
  --white:#ffffff;
  --muted:#b7b7b7;
  --line:rgba(255,255,255,.12);
  --max:1240px;
}

/* =========================
   BASIS
   ========================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:Inter,Arial,Helvetica,sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}

a{
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(var(--max),calc(100% - 40px));
  margin:auto;
}

/* =========================
   HEADER
   ========================= */

.header{
  position:fixed;
  inset:0 0 auto;
  z-index:50;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.93),
    rgba(0,0,0,.35),
    transparent
  );
  transition:.25s ease;
}

.header.scrolled{
  background:rgba(5,5,5,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.wordmark{
  display:flex;
  align-items:center;
  text-decoration:none;
  font-weight:950;
  letter-spacing:.055em;
  font-size:20px;
}

.wordmark b{
  color:var(--orange);
  margin-left:6px;
}

.nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav a{
  text-decoration:none;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.14em;
  font-weight:800;
  color:#dedede;
}

.nav a:hover{
  color:var(--orange2);
}

.menu-btn{
  display:none;
  background:none;
  border:1px solid var(--line);
  color:#ffffff;
  width:44px;
  height:44px;
  font-size:20px;
}

/* =========================
   HERO
   ========================= */

.hero{
  min-height:auto;
  padding:125px 0 72px;
  position:relative;
  background:
    radial-gradient(
      circle at 78% 40%,
      rgba(240,90,0,.12),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #050505,
      #0b0b0b
    );
}

.hero:after{
  display:none;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(460px,1.1fr);
  gap:54px;
  align-items:center;
}

.hero-content{
  padding:0;
  max-width:620px;
}

.hero-logo{
  width:118px;
  height:auto;
  border-radius:50%;
  box-shadow:0 0 80px rgba(240,90,0,.22);
  margin-bottom:20px;
}

.kicker{
  text-transform:uppercase;
  color:var(--orange2);
  letter-spacing:.22em;
  font-size:12px;
  font-weight:900;
}

h1,
h2,
h3{
  margin:0;
  line-height:.98;
}

h1{
  font-size:clamp(52px,6vw,88px);
  text-transform:uppercase;
  font-weight:950;
  letter-spacing:-.045em;
  margin:14px 0 20px;
}

h1 span,
h2 span{
  color:var(--orange);
}

.hero-copy{
  font-size:clamp(18px,2vw,25px);
  max-width:640px;
  color:#e7e7e7;
  margin:0;
}

.hero-visual{
  background:#090909;
  border:1px solid var(--line);
  box-shadow:0 28px 80px rgba(0,0,0,.48);
  overflow:hidden;
}

.hero-visual img{
  width:100%;
  height:auto;
  object-fit:contain;
}

/* =========================
   BUTTONS
   ========================= */

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}

.btn{
  min-height:54px;
  padding:0 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:13px;
  font-weight:900;
  border:1px solid transparent;
  transition:.2s ease;
}

.btn-primary{
  background:var(--orange);
  color:#ffffff;
}

.btn-primary:hover{
  background:var(--orange2);
  transform:translateY(-2px);
}

.btn-ghost{
  border-color:rgba(255,255,255,.45);
  background:rgba(0,0,0,.25);
}

.btn-ghost:hover{
  border-color:#ffffff;
  background:rgba(255,255,255,.08);
}

/* =========================
   TRUSTBAR
   ========================= */

.trustbar{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#080808;
}

.trustgrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.trustitem{
  padding:24px 18px;
  text-align:center;
  border-right:1px solid var(--line);
  font-size:13px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.08em;
}

.trustitem:last-child{
  border-right:0;
}

.trustitem b{
  display:block;
  color:var(--orange2);
  font-size:20px;
  margin-bottom:4px;
}

/* =========================
   INTRO
   ========================= */

.intro{
  padding:110px 0 85px;
}

.intro-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:70px;
  align-items:end;
}

.display{
  font-size:clamp(40px,5vw,74px);
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:-.035em;
}

.intro p{
  color:var(--muted);
  font-size:19px;
  margin:0;
}

/* =========================
   MODULE-KARTEN
   ========================= */

.modules{
  background:#070707;
  padding:0 0 100px;
}

.module-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.module-card{
  background:#0d0d0d;
  border:1px solid var(--line);
  overflow:hidden;
  transition:transform .25s ease,border-color .25s ease;
}

.module-card:hover{
  transform:translateY(-5px);
  border-color:rgba(240,90,0,.45);
}

.module-card img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:contain;
  background:#050505;
}

.module-card-copy{
  padding:24px;
}

.module-label{
  color:var(--orange2);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:11px;
}

.module-card h2{
  font-size:clamp(28px,3vw,42px);
  text-transform:uppercase;
  font-weight:950;
  margin:8px 0 12px;
}

.module-card p{
  color:var(--muted);
  margin:0;
}

/* =========================
   ABLAUF
   ========================= */

.process{
  padding:110px 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(240,90,0,.16),
      transparent 28%
    ),
    var(--panel);
}

.process-head{
  display:flex;
  justify-content:space-between;
  gap:50px;
  align-items:end;
  margin-bottom:54px;
}

.process-head p{
  max-width:520px;
  color:var(--muted);
  font-size:18px;
  margin:0;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.step{
  background:#0a0a0a;
  border:1px solid var(--line);
  padding:30px;
  min-height:240px;
}

.num{
  font-size:42px;
  font-weight:950;
  color:var(--orange);
  margin-bottom:34px;
}

.step h3{
  font-size:25px;
  margin-bottom:12px;
}

.step p{
  color:var(--muted);
  margin:0;
}

/* =========================
   CTA
   ========================= */

.cta{
  padding:100px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.cta:before{
  content:"SPORT";
  position:absolute;
  inset:50% auto auto 50%;
  transform:translate(-50%,-50%);
  font-size:28vw;
  font-weight:950;
  color:rgba(255,255,255,.025);
  white-space:nowrap;
}

.cta .container{
  position:relative;
}

.cta h2{
  font-size:clamp(44px,6vw,82px);
  text-transform:uppercase;
  font-weight:950;
  max-width:900px;
  margin:0 auto 22px;
}

.cta p{
  color:var(--muted);
  font-size:19px;
  max-width:700px;
  margin:0 auto 32px;
}

/* =========================
   FOOTER MIT ZWEI LOGOS
   ========================= */

.footer{
  padding:52px 0;
  background:#030303;
  border-top:1px solid var(--line);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:40px;
  align-items:center;
}

.footer-logos{
  display:flex;
  align-items:center;
  gap:32px;
  margin-bottom:22px;
}

.footer-logo-box{
  width:150px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border-radius:0;
  padding:0;
  flex-shrink:0;
}

.footer-logo-box img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}

.footer p{
  color:#aaaaaa;
  font-size:15px;
  line-height:1.7;
  max-width:760px;
  margin:0;
}

.footer p strong{
  color:#ffffff;
}

.footer-links{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}

.footer-links a{
  text-decoration:none;
  font-size:14px;
  color:#dddddd;
  transition:.25s ease;
}

.footer-links a:hover{
  color:var(--orange2);
}

@media(max-width:900px){

  .footer-grid{
    grid-template-columns:1fr;
    align-items:start;
  }

  .footer-links{
    justify-content:flex-start;
    margin-top:10px;
  }
}

@media(max-width:560px){

  .footer-logos{
    gap:20px;
  }

  .footer-logo-box{
    width:125px;
    height:70px;
  }

  .footer p{
    font-size:14px;
  }
}
/* =========================
   IMPRESSUM / DATENSCHUTZ
   ========================= */

.legal{
  max-width:1000px;
  padding:140px 0 90px;
}

.legal h1{
  font-size:clamp(54px,7vw,92px);
  text-transform:uppercase;
  font-weight:950;
  letter-spacing:-.03em;
  margin:12px 0 42px;
}

.legal h2{
  font-size:30px;
  margin:40px 0 18px;
  color:#ffffff;
}

.legal h3{
  font-size:22px;
  margin:30px 0 12px;
  color:#ffffff;
}

.legal p,
.legal li{
  color:#cfcfcf;
  line-height:1.8;
  font-size:17px;
}

.legal a{
  color:var(--orange2);
  text-decoration:none;
}

.legal a:hover{
  text-decoration:underline;
}

/* =========================
   FIRMENKARTE
   ========================= */

.company-card{
  background:#111111;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:42px;
  margin:36px 0;
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}

/* =========================
   LOGOS IM IMPRESSUM
   ========================= */

.company-logos{
  display:flex;
  align-items:center;
  gap:32px;
  margin-bottom:32px;
}

.company-logo-box{
  width:150px;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border:0;
  padding:0;
  margin:0;
  flex-shrink:0;
}

.company-logo-box img{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  background:transparent !important;
  border:0 !important;
  padding:0 !important;
  margin:0 !important;
  box-shadow:none !important;
}

/* =========================
   VERHÄLTNIS SPORT SPONSORING / SPORTS2B
   ========================= */

.company-relationship{
  padding-bottom:28px;
  margin-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.company-relationship h2{
  margin-top:0;
  margin-bottom:14px;
}

.company-relationship p{
  max-width:760px;
}

.legal-company-details h2{
  margin-top:0;
}

/* =========================
   MOBIL
   ========================= */

@media(max-width:700px){

  .company-card{
    padding:26px;
  }

  .company-logos{
    gap:18px;
  }

  .company-logo-box{
    width:125px;
    height:76px;
  }
}

/* =========================
   TABLET
   ========================= */

@media(max-width:1000px){

  .hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .hero-content{
    max-width:760px;
  }

  .hero-visual{
    max-width:900px;
  }

  .module-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:900px){

  .nav{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .nav.open{
    display:flex;
    position:absolute;
    top:84px;
    left:20px;
    right:20px;
    background:#0b0b0b;
    border:1px solid var(--line);
    padding:22px;
    flex-direction:column;
    align-items:flex-start;
  }

  .intro-grid{
    grid-template-columns:1fr;
  }

  .steps{
    grid-template-columns:1fr 1fr;
  }

  .process-head{
    display:block;
  }

  .process-head p{
    margin-top:22px;
  }

  .trustgrid{
    grid-template-columns:1fr 1fr;
  }

  .trustitem:nth-child(2){
    border-right:0;
  }

  .trustitem:nth-child(-n+2){
    border-bottom:1px solid var(--line);
  }

  .footer-grid{
    grid-template-columns:1fr;
    align-items:start;
  }

  .footer-links{
    justify-content:flex-start;
    margin-top:10px;
  }
}

/* =========================
   SMARTPHONE
   ========================= */

@media(max-width:650px){

  .hero{
    padding:105px 0 56px;
  }

  .hero-logo{
    width:92px;
  }

  .hero-content h1{
    font-size:clamp(46px,14vw,66px);
  }

  .module-grid{
    grid-template-columns:1fr;
  }

  .modules{
    padding-bottom:72px;
  }
}

@media(max-width:560px){

  .container{
    width:min(100% - 26px,var(--max));
  }

  .header-inner{
    height:72px;
  }

  .nav.open{
    top:72px;
  }

  .actions{
    display:grid;
  }

  .btn{
    width:100%;
  }

  .steps{
    grid-template-columns:1fr;
  }

  .trustgrid{
    grid-template-columns:1fr;
  }

  .trustitem{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .intro,
  .process,
  .cta{
    padding:78px 0;
  }

  .footer-logos{
    gap:14px;
  }

  .footer-logo-box{
    width:130px;
    height:78px;
    padding:10px;
  }

  .footer p{
    font-size:14px;
  }
}