:root{
  --black: #000000;
  --white: #ffffff;
  --accent: #9EFF1F;

  --g1: #0b0b0b;
  --g2: #111111;
  --g3: #1a1a1a;
  --g4: #2a2a2a;
  --g5: #3a3a3a;
  --g6: #666666;
  --g7: #9a9a9a;
  --g8: #cfcfcf;
  --g9: #e8e8e8;

  --bg: var(--black);
  --text: var(--white);
  --muted: rgba(255,255,255,.72);

  --border: rgba(255,255,255,.12);
  --border2: rgba(255,255,255,.18);
  --shadow: 0 16px 44px rgba(0,0,0,.55);

  --radius: 18px;
  --radius2: 26px;

  --max: 1180px;

  --h1: "Peace Sans", "Bebas Neue", "Oswald", "Impact", system-ui, sans-serif;
  --h2: "Peace Sans", "Bebas Neue", "Oswald", system-ui, sans-serif;
  --body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========
   Base
   ========= */
*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body{
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(15px, 1vw, 18px);
  overflow-x: hidden;
}

h1, h2, h3{
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
}

p, li, label, input, select, textarea, summary, blockquote, figcaption, span{
  overflow-wrap: break-word;
  word-break: normal;
}

a{
  color: inherit;
}

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

code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

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

.muted{
  color: var(--muted);
}

.small{
  font-size: .92rem;
}

.accent{
  color: var(--accent);
}

.kicker{
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  font-size: .92rem;
  display: block;
}

/* =========
   Typography
   ========= */
h1{
  font-family: var(--h1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: .95;
  width: 100%;
}

h2{
  font-family: var(--h2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: .95;
}

h3{
  margin: 0 0 8px;
  font-size: 1.1rem;
}

/* =========
   Buttons / Links
   ========= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  background: transparent;
  transition: transform .12s ease, background .12s ease;
}

.btn--primary{
  background: var(--accent);
  color: var(--black);
  border: 1px solid rgba(0,0,0,.35);
}

.btn--primary:hover{
  transform: translateY(-1px);
  background: #b2ff55;
}

.btn--ghost{
  background: transparent;
  border: none;
}

.btn--full{
  width: 100%;
}

.textLink{
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.textLink:hover{
  text-decoration: underline;
}

/* =========
   Topbar / Navigation
   ========= */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: background .35s ease;
}

.topbar.scrolled{
  background: rgba(0,0,0,.97);
}

.topbar .container{
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding-left: calc(40px + clamp(40px, 8vw, 140px));
  padding-right: 40px;
}

.topbar__inner{
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand{
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand__logo{
  margin-top: 10px;
  display: block;
  height: clamp(50px, 6vw, 80px);
  width: auto;
  object-fit: contain;
  max-width: none;
}

.nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
}

.nav a{
  text-decoration: none;
  padding: 8px 0;
  white-space: nowrap;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  outline: none;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}

.nav a:hover,
.nav a:focus,
.nav a:focus-visible{
  background: none;
  outline: none;
  color: #fff;
}

.nav .nav__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border: 2px solid var(--accent);
  color: #000 !important;
  padding: 12px 32px;
  min-width: 120px;
  border-radius: 10px;
  font-weight: 700;
  transition: opacity .2s ease;
}

.nav .nav__cta:hover{
  background: var(--accent);
  opacity: .85;
  color: #000 !important;
}

.navToggle{
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  position: relative;
  z-index: 1201;
  flex-shrink: 0;
}

.navToggle span{
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  margin: 5px auto;
  border-radius: 999px;
}

@media (max-width: 1100px){
  .navToggle{
    display: inline-grid;
    place-items: center;
  }

  .topbar__inner{
    height: 88px;
  }

  .brand__logo{
    height: 50px;
  }

  .nav{
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.98);
    box-shadow: none

  }

  .nav.isOpen{
    display: flex;
  }

  .nav a{
    padding: 12px;
    border-radius: 12px;
  }
}
/* =========
   Hero
   ========= */
.hero{
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}

.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, #000 0%, #000 28%, rgba(0,0,0,.7) 45%, rgba(0,0,0,.1) 62%, transparent 74%),
    linear-gradient(to bottom, rgba(0,0,0,.4) 0%, transparent 18%, rgba(0,0,0,.8) 85%, rgba(0,0,0,.97) 100%),
    url("rad-header2.jpg") calc(100% + 300px) 5%/cover no-repeat;
  filter: grayscale(100%);
}

.hero .container{
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 40px 60px;
}

.hero__content{
  max-width: clamp(320px, 58vw, 820px);
  margin-left: clamp(40px, 8vw, 140px);
  position: relative;
  z-index: 2;
}

.hero h1{
  font-size: clamp(3rem, 7.5vw, 9rem);
  line-height: .9;
  margin-bottom: 20px;
}

.hero__ctaRow,
.hero__badges{
  position: relative;
  z-index: 2;
}

.subline{
  margin: 0 0 16px;
  color: rgba(255,255,255,.92);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  width: 100%;
  text-wrap: pretty;
}

.hero__ctaRow{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 18px;
}


.hero__content{
  width: 100%;
  min-width: 0;
}

.hero__badges{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}
.badge{
  border: none;
  background: rgba(0,0,0,.35);
  border-radius: 0;
  padding: 10px 0;
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: none;
}

.dot{
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: none
}

/* Hero panel */
.hero__panel{
  border: none;
  background: rgba(0,0,0,.55);
  border-radius: var(--radius2);
  box-shadow: none
}

.panel__title{
  margin: 0;
  padding: 16px 16px 8px;
  font-weight: 800;
  color: var(--accent);
}

.panel__line{
  height: 1px;
  background: rgba(255,255,255,.12);
}

.panel__text{
  padding: 14px 16px 2px;
  color: rgba(255,255,255,.92);
  font-size: .95rem;
}

.panel__text p{
  margin: 0 0 10px;
}

.panel__closing{
  color: var(--accent);
  font-weight: 700;
}

.panel__footer{
  padding: 0 16px 16px;
}

/* =========
   Statement Section
   ========= */
.statement{
  background: #050505;
  padding: 130px 0;
}

.statement__quote{
  font-family: var(--h1);
  font-size: clamp(1.8rem, 4.6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent);
  margin: 0 0 48px;
  line-height: .95;
  white-space: nowrap;
}

.statement__divider{
  height: 1px;
  background: rgba(255,255,255,.12);
  margin-bottom: 48px;
}

.statement__text{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 720px;
  line-height: 1.7;
}

.statement__text p{
  margin: 0;
}

.statement__cta{
  color: var(--accent);
  font-weight: 700;
}

.statement__author{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 720px;
}

.statement__portrait{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--accent);
  display: block;
}

.statement__portrait img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  transform: scale(3);
  transform-origin: center 2%;
}

.statement__authorName{
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.statement__authorRole{
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}

/* =========
   Generic sections
   ========= */
.section{
  padding: 110px 0;
}

.section--alt{
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(158,255,31,.08), transparent 55%),
    #050505;
}

.section--white{
  background: #fff;
  color: #0f0f0f;
}

.section--white h2,
.section--white h3{
  color: #0f0f0f;
}

.section--white .kicker{
  color: var(--accent);
}


.section--white .muted{
  color: #555;
}

.section--white .card{
  background: #f2f2f2;
  border-top: 1px solid rgba(0,0,0,.1);
}

.section--white .card p{
  color: #444;
}

.section--white .priceCard{
  background: #f2f2f2;
  border-top: 1px solid rgba(0,0,0,.1);
}

.section--white .priceCard--featured{
  background: #f2f2f2;
  color: #0f0f0f;
  border-top: 1px solid rgba(0,0,0,.1);
}

.section--white .priceCard--featured h3,
.section--white .priceCard--featured p,
.section--white .priceCard--featured .muted,
.section--white .priceCard--featured .price__note{
  color: #444;
}

.section--white .list li{
  color: #333;
}

.section--white .price__value{
  color: #0f0f0f;
}

.section--white .price__note{
  color: #666;
}

.section--white .priceCard__bottom{
  border-top-color: rgba(0,0,0,.12);
}

.section--white .panelBox{
  background: #f2f2f2;
  border: 1px solid rgba(0,0,0,.08);
  color: #0f0f0f;
}

.section--white .panelBox--dark{
  background: #0f0f0f;
  color: #fff;
}

.section--white .panelBox h3{
  color: #0f0f0f;
}

.section--white .panelBox p,
.section--white .panelBox .muted{
  color: #444;
}

.section--white .panelBox--dark h3{
  color: #fff;
}

/* Kontaktformular weiss */
.section--white .form{
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,.1);
  color: #0f0f0f;
}

.section--white .form label{
  color: #0f0f0f;
}

.section--white .form input,
.section--white .form select,
.section--white .form textarea{
  background: #fff;
  border: 1px solid rgba(0,0,0,.18);
  color: #0f0f0f;
}

.section--white .form input::placeholder,
.section--white .form textarea::placeholder{
  color: #aaa;
}

.section--white .form input:focus,
.section--white .form select:focus,
.section--white .form textarea:focus{
  border-color: var(--accent);
}

.section--white .form .check span{
  color: #444;
}

.section--white .form .check a{
  color: #0f0f0f;
}

.section--white .textLink{
  color: #0f0f0f;
}

.section--white .textLink:hover{
  color: var(--accent);
}

.section--white .note{
  background: #f2f2f2;
  border-left: 3px solid var(--accent);
  color: #333;
}

.section--white .faqItem{
  border-bottom: 1px solid rgba(0,0,0,.12);
  background: #f2f2f2;
  border: 1px solid rgba(0,0,0,.08);
}

.section--white .faqItem summary{
  color: #0f0f0f;
}

.section--white .faqItem__content p{
  color: #444;
}

.section--white label,
.section--white input,
.section--white select,
.section--white textarea{
  color: #0f0f0f;
}

.section--white input,
.section--white select,
.section--white textarea{
  background: #fff;
  border: 1px solid rgba(0,0,0,.2);
  color: #0f0f0f;
}

.section--white input::placeholder,
.section--white textarea::placeholder{
  color: #999;
}

.section--white .check span{
  color: #333;
}

.section--white .about__bg{
  background: none;
}

.section--white .about__text{
  background: #f2f2f2 !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: none;
}

.section--white .about__text h3{
  color: #0f0f0f;
}

.section--white .about__text p{
  color: #444;
}

.section--white .about__text p:last-child{
  color: #0f0f0f;
}

.section--white .about__quote .mottoLine--white{
  color: #0f0f0f;
}

.section--white .fact__label{
  color: #888;
}

.section--white .fact__value{
  color: #0f0f0f;
}

.section--white .quoteText,
.section--white .pricing--testimonials .quoteText{
  color: #0f0f0f;
}

.section--white .pricing--testimonials .quoteText::before{
  color: var(--accent);
}

.section--white .pricing--testimonials .priceCard{
  background: #f2f2f2;
}

.section--white .pricing--testimonials .price__value,
.section--white .pricing--testimonials .price__note{
  color: #444;
}

.section__head{
  margin-bottom: 56px;
  width: 100%;
}

.section__cta{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========
   Image breaks
   ========= */
.imageBreak{
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.imageBreak picture{
  display: contents;
}

.imageBreak img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: 65vh;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  background: #000;
}

.imageBreak--triple{
  gap: 2px;
}

.imageBreak--triple picture{
  flex: 1;
  width: 0;
  min-width: 0;
  display: flex;
}

.imageBreak--triple img{
  flex: 1;
  width: 0;
  min-width: 0;
  object-fit: contain;
  height: 65vh;
}

/* =========
   Cards
   ========= */
.gridCards{
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.card{
  border: none;
  border-top: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
  border-radius: 0;
  padding: 32px 24px;
  box-shadow: none;
}

.card p{
  margin: 0;
  color: rgba(255,255,255,.78);
}

/* =========
   Pricing
   ========= */
.pricing{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  align-items: stretch;
}

.priceCard{
  position: relative;
  border: none;
  border-top: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
  border-radius: 0;
  padding: 36px 28px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.priceCard--featured{
  border-color: rgba(158,255,31,.38);
  background:
    radial-gradient(900px 420px at 10% 10%, rgba(158,255,31,.14), transparent 55%),
    rgba(255,255,255,.04);
}

.badgeTop{
  position: absolute;
  top: 0;
  right: 16px;
  transform: translateY(-50%);
  background: #9EFF1F;
  color: #000000;
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  white-space: nowrap;
  z-index: 2;
}

.priceCard__top{
  display: block;
}

.priceCard__top h3{
  margin: 6px 0 8px;
  min-height: unset;
}


.priceCard__top .muted{
  margin: 0;
}

.list{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.80);
  flex: 1;
}

.list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tick{
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--accent);
  font-weight: 900;
  margin-right: 8px;
}

.priceCard__bottom{
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 20px;
  padding-top: 20px;
}

.priceCard__bottom .btn{
  width: 100%;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  padding-top: 14px;
  padding-bottom: 14px;
  box-sizing: border-box;
  margin-top: auto;
}

.price{
  display: grid;
  gap: 4px;
}

.price__value{
  font-weight: 900;
  font-size: 1.3rem;
  min-height: 3.2em;
}

.price__note{
  color: rgba(255,255,255,.70);
  font-size: .92rem;
}

.note{
  margin-top: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.45);
  padding: 14px 16px;
  color: rgba(255,255,255,.82);
}

/* =========
   About
   ========= */
.about{
  position: relative;
  overflow: hidden;
}

.about__bg{
  display: none;
}

.about .container{
  position: relative;
  z-index: 2;
}

.about__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about .container:first-of-type .section__head{
  margin-bottom: 40px;
}

.about__grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 0 40px;
  align-items: start;
}

.about__content{
  /* left column */
}

.about__right{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.about__photo{
  display: block;
}

.about__panels{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__text{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.45);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}

.about__text h3{
  margin-top: 28px;
  margin-bottom: 8px;
  font-family: var(--h2);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.15rem;
  color: var(--accent);
}

.about__text p{
  margin: 0 0 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  max-width: 72ch;
}

.about__text h3:first-child{
  margin-top: 0;
}

.about__text p:last-child{
  margin-top: 18px;
  font-weight: 700;
  color: var(--accent);
}

.about__facts{
  margin: 14px 0 12px;
  display: grid;
  gap: 10px;
}

.fact{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px;
}

.fact__label{
  color: rgba(255,255,255,.70);
  font-weight: 700;
  font-size: .88rem;
}

.fact__value{
  font-weight: 600;
  margin-top: 2px;
}

.about__quote{
  border: 1px solid rgba(158,255,31,.28) !important;
  background: rgba(158,255,31,.08) !important;
}

.mottoTitle{
  margin: 0 0 10px;
  font-family: var(--h2);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
}

.mottoLine{
  margin: 0;
  font-weight: 800;
  font-size: 1.05rem;
}

.mottoLine--white{
  color: var(--white);
}

.mottoLine--green{
  color: var(--accent);
  margin-top: 6px;
}

.about__cta{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about__panels{
  display: grid;
  gap: 12px;
}

.about__me{
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius2);
  display: block;
  filter: grayscale(100%);
}

.panelBox{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.45);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}

.panelBox--dark{
  background: rgba(0,0,0,.72);
  border-color: rgba(158,255,31,.28);
}

.panelBox__slogan{
  margin: 8px 0 14px;
  color: rgba(255,255,255,.84);
  font-weight: 600;
}

/* =========
   Testimonials
   ========= */
.quoteText{
  margin: 0;
  color: rgba(255,255,255,.88);
  font-style: italic;
  line-height: 1.6;
}

.price p{
  margin: 0;
}


.testimonials{
  position: relative;
  overflow: hidden;
}

.quoteText{
  font-size: 1.05rem;
  line-height: 1.65;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 16px;
  flex: 1;
}

.quoteText::before{
  content: '\201E';
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--accent);
  font-style: normal;
  margin-bottom: 8px;
}


.testimonials__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.62)),
    url("neon-weit.jpg") center/cover no-repeat;
  filter: grayscale(100%);
  opacity: .82;
  isolation: isolate;
}

.testimonials .container{
  position: relative;
  z-index: 1;
}

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

.quoteCard{
  margin: 0;
  border: 1px solid rgba(255,255,255,.25);
  background: #1a1a1a;
  border-radius: var(--radius2);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quoteCard blockquote{
  margin: 0 0 10px;
  color: rgba(255,255,255,.86);
  font-weight: 500;
}

.quoteCard figcaption{
  color: rgba(255,255,255,.70);
  font-size: .92rem;
}
.pricing--testimonials{
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.pricing--testimonials .priceCard__top{
  min-height: 220px;
}

.pricing--testimonials .quoteText{
  margin: 0;
  color: rgba(255,255,255,.88);
  font-style: italic;
  line-height: 1.7;
  font-size: 1.05rem;
}

.pricing--testimonials .quoteText::before{
  content: "\201E";
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--accent);
  font-style: normal;
  margin-bottom: 8px;
}

@media (max-width: 980px){
  .pricing--testimonials{
    grid-template-columns: 1fr;
  }

  .pricing--testimonials .priceCard__top{
    min-height: auto;
  }
}

/* =========
   FAQ
   ========= */
.faq{
  display: grid;
  gap: 10px;
  max-width: 80ch;
}

.faqItem{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.faqItem summary{
  cursor: pointer;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.faqItem summary::-webkit-details-marker{
  display: none;
}

.faqItem summary::after{
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}

.faqItem[open] summary::after{
  content: '−';
}

.section--white .faqItem summary{
  color: #0f0f0f;
}

.faqItem__content{
  padding-top: 10px;
  color: rgba(255,255,255,.78);
}

/* =========
   Contact
   ========= */
.contactGrid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 12px;
  align-items: start;
}

.form{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.45);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}

.form label{
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-weight: 700;
}

.form input,
.form select,
.form textarea{
  width: 100%;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--white);
  -webkit-text-fill-color: #ffffff;
  font: inherit;
  outline: none;
}

.form select option{
  color: #000000;
  background: #ffffff;
}

.form textarea::placeholder,
.form input::placeholder{
  color: rgba(255,255,255,.55);
}

.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color: rgba(158,255,31,.45);
}

.formRow{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.check{
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 600 !important;
}

.check input{
  width: 18px;
  height: 18px;
}

.contactSide{
  display: grid;
  gap: 12px;
}

/* =========
   Footer
   ========= */
.footer{
  padding: 42px 0 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: #030303;
}

.footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
}

.footer__brand{
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.footer__brandRow{
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
}

.footer__logo{
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: transparent;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__title{
  font-weight: 900;
  letter-spacing: .02em;
}

.footer__muted{
  color: rgba(255,255,255,.70);
  font-size: .92rem;
  font-weight: 700;
}

.footer__divider{
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 4px 0;
}

.footer__metaItem{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.footer__metaIcon{
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer__motto{
  margin-top: 10px;
  font-style: italic;
  font-size: .95rem;
  color: var(--accent);
  letter-spacing: .01em;
}

.footer__right{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footerLink{
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.footerLink:hover{
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
}

.footerLink--cta{
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}

.footerLink--cta:hover{
  background: #b5ff4d;
  border-color: #b5ff4d;
}

.legal{
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 16px;
}

.legal__accordion{
  border: none;
}

.legal__summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-family: var(--h2);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.25rem;
  color: #ffffff;
  padding: 4px 0;
  user-select: none;
}

.legal__summary::-webkit-details-marker{ display: none; }

.legal__toggle::after{
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-family: var(--body);
  font-weight: 300;
}

details[open] .legal__toggle::after{
  content: '−';
}

.legal__text{
  padding-top: 16px;
}

.legal__text h1{
  display: none;
}

.legal__text h2{
  font-size: 1rem;
  margin: 18px 0 6px;
  color: rgba(255,255,255,.9);
}

.legal__text h3{
  font-size: .9rem;
  margin: 12px 0 4px;
  color: rgba(255,255,255,.75);
}

.legal__text p, .legal__text li{
  font-size: .85rem;
  color: rgba(255,255,255,.60);
  line-height: 1.6;
  margin: 0 0 6px;
}

.legal__text ul{
  padding-left: 16px;
  margin: 0 0 10px;
}

.legal__text a{
  color: var(--accent);
  word-break: break-all;
}

.legal__title{
  font-family: var(--h2);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 800;
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.legal__text p{
  margin: 0 0 10px;
}

.footer__bottom{
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 16px;
}

/* =========
   Back to top
   ========= */
.toTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.60);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 34px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease;
}

.toTop.isVisible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toTop:hover{
  border-color: rgba(158,255,31,.45);
  color: var(--accent);
}

/* WhatsApp Button */
.whatsappBtn{
  display: none;
}

/* Sticky CTA Mobile */
.stickyCta{
  display: none;
}

@media (max-width: 768px){
  .whatsappBtn{
    display: none;
  }

  .stickyCta{
    display: none;
  }

  .toTop{
    bottom: 24px;
  }
}

/* =========
   Responsive
   ========= */

@media (max-width: 768px){
  .hero::before{
    background:
      linear-gradient(to bottom, rgba(0,0,0,.3) 0%, transparent 35%, rgba(0,0,0,.75) 65%, rgba(0,0,0,.97) 100%),
      url("rad-header2.jpg") center 20%/cover no-repeat;
    filter: grayscale(100%);
  }
  .hero .container{
    padding: 0 20px 44px;
  }
  .hero__content{
    margin-left: 0;
  }
  .hero h1{
    font-size: clamp(2.6rem, 10vw, 5rem);
  }

  .statement__text{
    grid-template-columns: 1fr;
  }
  .statement{
    padding: 12px 0;
  }
  .statement__quote{
    font-size: clamp(1.6rem, 7vw, 3.5rem);
    white-space: normal;
    margin-bottom: 24px;
  }
  .statement__divider{
    margin-bottom: 24px;
  }
  .section{
    padding: 72px 0;
  }
  .section__head{
    margin-bottom: 36px;
  }
}

@media (min-width: 769px) and (max-width: 1200px){
  .hero::before{
    background:
      linear-gradient(to right, #000 0%, rgba(0,0,0,.7) 15%, rgba(0,0,0,.2) 32%, transparent 48%),
      linear-gradient(to bottom, rgba(0,0,0,.4) 0%, transparent 18%, rgba(0,0,0,.8) 85%, rgba(0,0,0,.97) 100%),
      url("rad-header2.jpg") calc(100% + 300px) 5%/cover no-repeat;
    filter: grayscale(100%);
  }
}

@media (max-width: 540px){
  .gridCards{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px){
  .hero__ctaRow{
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctaRow .btn{
    width: 100%;
  }

  .priceCard__bottom{
    justify-items: stretch;
  }
}

@media (max-width: 1100px){
  .navToggle{
    display: inline-grid;
    place-items: center;
  }

  .topbar__inner{
    height: 88px;
  }

  .topbar .container{
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand__logo{
    height: 50px;
  }

  .nav{
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.98);
    box-shadow: 0 16px 44px rgba(0,0,0,.55);
    margin-left: 0;
    z-index: 1200;
  }

  .nav.isOpen{
    display: flex;
  }

  .nav a{
    padding: 12px;
    border-radius: 12px;
  }
}

@media (max-width: 980px){
  h1{
    font-size: clamp(2.1rem, 8vw, 4rem);
  }

  .subline{
    font-size: clamp(1rem, 2.4vw, 1.1rem);
  }

  .gridCards{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  @media (max-width: 540px){
    .gridCards{
      grid-template-columns: 1fr;
    }
  }

  .pricing{
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .priceCard{
    grid-row: auto;
    display: flex;
    flex-direction: column;
  }

  .priceCard__top{
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .priceCard__bottom{
    margin-top: auto;
  }

  .about__grid{
    grid-template-columns: 1fr .8fr;
  }

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

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

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

  .footer__inner{
    flex-direction: column;
  }

  .footer__right{
    justify-content: flex-start;
  }
}

@media (max-width: 640px){
  /* Über mich – Foto rechts floaten, Text darunter volle Breite, Kacheln ganz unten */
  .about__grid{
    display: block;
  }

  .about__right{
    margin-top: 24px;
  }

  .about__photo{
    width: 100%;
  }

  .about__panels{
    margin-top: 12px;
  }

  .imageBreak{
    padding: 20px 0;
  }

  .imageBreak img{
    height: 50vw;
    min-height: 260px;
  }

  .imageBreak--triple{
    flex-direction: column;
    gap: 2px;
  }

  .imageBreak--triple picture{
    width: 100%;
    flex: none;
  }

  .imageBreak--triple img{
    width: 100%;
    height: 50vw;
    min-height: 220px;
    object-fit: contain;
  }

  .imageBreak--triple picture:not(:last-child){
    display: none;
  }
}

/* Anker nicht unter dem Sticky-Header verstecken */
#leistungen,
#angebote,
#ueber{
  scroll-margin-top: 88px;
}

#leistungen{
  margin-top: 80px;
}

#testimonials,
#faq,
#kontakt{
  scroll-margin-top: 108px;
}

/* About-Panel sicher über dem Hintergrund halten */
.about__right,
.about__photo,
.about__panels{
  position: relative;
  z-index: 2;
}

.about__panels .panelBox{
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,.72) !important;
}


.about__panels .about__quote .mottoTitle{
  color: var(--accent) !important;
  font-weight: 800 !important;
}

.about__panels .about__quote .mottoLine--white{
  color: #ffffff !important;
  font-weight: 800 !important;
}

.about__panels .about__quote .mottoLine--green{
  color: var(--accent) !important;
  font-weight: 800 !important;
}

/* Texte in den rechten About-Boxen klar sichtbar machen */
.about__panels .panelBox h3,
.about__panels .panelBox p,
.about__panels .panelBox .muted{
  color: #ffffff !important;
}

.about__panels .panelBox .textLink{
  color: var(--accent) !important;
}
/* Entfernt die weissen Rahmen bei den Info-Boxen */
.hero *{
  border: none !important;
  box-shadow: none !important;
}

/* =========
   Lead Magnet
   ========= */
.leadMagnet{
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 80px 0;
}

.leadMagnet__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.leadMagnet__text h2{
  font-family: var(--h2);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 16px;
  line-height: 1.1;
  color: #000;
}

.leadMagnet__text .muted{
  color: #555;
}

.leadMagnet__docs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.leadMagnet__doc{
  background: rgba(158,255,31,.12);
  border: 1px solid rgba(158,255,31,.45);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.leadMagnet__doc strong{
  font-size: .9rem;
  color: #000;
}

.leadMagnet__doc .muted{
  font-size: .78rem;
  color: #555;
}

.leadMagnet__docLabel{
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
}

.leadMagnet__list{
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.leadMagnet__list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #333;
  font-size: .95rem;
}

.lmForm{
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding: 20px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lmForm__headline{
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0;
  color: var(--white);
}

.lmForm__group{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lmForm__group label{
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.80);
}

.lmForm__group input{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--white);
  -webkit-text-fill-color: #ffffff;
  font-family: var(--body);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}

.lmForm__group input::placeholder{
  color: rgba(255,255,255,.45);
}

.lmForm__group input:-webkit-autofill,
.lmForm__group input:-webkit-autofill:hover,
.lmForm__group input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
  box-shadow: 0 0 0 1000px #1a1a1a inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff;
}

.lmForm__group input:focus{
  border-color: rgba(158,255,31,.55);
}

.lmForm__btn{
  width: 100%;
  text-align: center;
  justify-content: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.lmForm__legal{
  font-size: .75rem;
  color: var(--g6);
  text-align: center;
  margin: 0;
}

.lmFeedback{
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
}

.lmFeedback p{
  margin: 0;
}

.lmFeedback--success{
  background: #9eff1f;
  border: 1px solid #7acc00;
  color: #000;
}

.lmFeedback--error{
  background: rgba(255,80,80,.10);
  border: 1px solid rgba(255,80,80,.35);
  color: #ff9090;
}

@media (max-width: 860px){
  .leadMagnet__inner{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .leadMagnet{
    padding: 60px 0;
  }
}
