:root{
  --bg:#0b0f14;
  --text:#f2f5f8;
  --muted:#b8c2cc;
  --primary:#3A4454;
  --border:rgba(255,255,255,.12);
  --radius: 1.25rem;
  --accent: #5dd6ff;
  --accent-rgb: 93, 214, 255;
}



*{box-sizing:border-box}

body{
  margin:0;
  background: #0B0F14;
  color:var(--text);
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto;
}

a{
    color:white;
    text-decoration: none;
}

h1{
  font-size: 40px;
  text-align: center;
  font-weight: bold;
}


h3{
  font-size: 1.2rem;
  line-height: 1.2;
  color:white;
  font-weight:bold;
}


p{
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);  
}




/* HEADER */

.demo-header{
  position:sticky;
  top:0;
  width:100%;
  z-index: 999;
  display:flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  height:60px;
  font-size: 20px;
}



.brand-lockup{
  display:flex;
  align-items:center;
  gap:.7rem;
}

/* === DAS IST DEINE LOGO-ANMUTUNG === */
.brand-logo{
  font-weight: 800;          /* sehr kräftig wie ein Logo */
  letter-spacing: -0.02em;   /* leicht enger – typisch für Logos */
  font-size: 1.25rem;
  color: #ffffff;
  text-transform: lowercase; 
  color: #E5252A;   /* ← dein neues Expleno-Rot */
}

/* Trenner bleibt dezent */
.brand-sep{
  color: rgba(255,255,255,.45);
}

/* Tagline bewusst ruhiger */
.brand-tag{
  font-weight: 500;
  color: rgba(255,255,255,.75);
  font-size: 0.95rem;
}






/* MAIN */
#main{
  width:100%;
  display:flex;
  flex-direction: column;
  align-items: center;

}

/* HERO */
.hero{
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero .wrapper{
  width: 100%;
  aspect-ratio: 16/8;
  align-items: center;
  position: relative;
}
.hero .textbox{
    position:absolute;
    bottom: clamp(12px, 6vw, 100px);
    left: clamp(12px, 6vw, 80px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero .title {
  font-size: clamp(26px, 5vw, 60px);
}

.hero .subtitle {
  font-size: clamp(16px, 2.5vw, 28px);
}
.hero .header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content: center;
}
.hero .header-inner{
  width:100%;
  max-width:1400px;
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding:0 20px;
}
.hero .logobox{
  font-size: clamp(16px, 2.5vw, 28px);
  display:flex;
  align-items: center;
}
.hero .logo{
  width:50px;
  height:50px;
}
.hero .cta {
  padding:10px;
  border:1px solid white;
  cursor: pointer;
}
.hero .cta:hover {
    transform: scale(1.05);
}
.hero .cta:active {
    transform: scale(1.05);
}
.hero video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero .wrapper{
    aspect-ratio: 3/4;
  }
}





/* PROBLEM-MIRROR */
.mirror{
  width: 100%;
  padding: 80px 16px 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.mirror .title{
  max-width: 1000px;
  margin: 0;

  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;           /* Zitat-Gefühl */
  font-weight: 450;             /* softer als 500 */
  letter-spacing: -0.01em;

  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  color: #ffffff;
}

.mirror .wrapper{
  margin-top:50px;
  width:100%;
  max-width:1100px;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
}
.mirror .textblock{
  flex:1;
  padding:10px 20px;
  line-height: 1.6;
  justify-content: flex-start;
  text-align: left;
}
@media (max-width: 768px) {
  .mirror .wrapper{
    flex-direction: column;
  }
}




.offer{
  width: 100%;
  padding: 120px 16px 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.offer .inner{
  width:100%;
  max-width: 1400px;
  display:flex;
  flex-wrap: wrap;
}
.offer .wrapper{
  width:100%;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
}
.offer .left{
  flex:1;
  display:flex;
  justify-content: center;
  align-items: center;
}
.offer .phone-frame{
  width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 2.2rem;
  padding: 0.7rem;
  background: linear-gradient(145deg,#1d2732,#0f141b);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
}
.offer .phone-screen{
  width: 100%;
  height: 100%;
  border-radius: 1.6rem;
  object-fit: cover;
  background: #fff;
  overflow: hidden;
}
.offer .phone-image{
  width:100%;
  height:100%;
  object-fit: cover;
}
.offer .right{
  flex:1;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  
}
.offer .text{
  margin-top:10px;
  text-align: left;
}
.offer .cta{
  margin-top:20px;
  padding:10px;
  background: #1E1E1E;
  border: 1px solid grey;
  color:white;
  font-size: 18px;
  cursor: pointer;
}
.offer .cta--demo{
  margin-top:20px;
  padding:10px;
  border: 1px solid grey;
  color:white;
  font-size: 18px;
  cursor: pointer;
  background-color: transparent;
}
.offer .cta:hover {
    transform: scale(1.05);
}
.offer .cta:active {
    transform: scale(1.05);
}
.offer .cta--demo:hover {
    transform: scale(1.05);
}
.offer .cta--demo:active {
    transform: scale(1.05);
}
@media (max-width: 768px) {
  .offer .wrapper{
    flex-direction: column;
  }
}



/* REVIEWS */
.reviews{
  width: 100%;
  padding:30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.reviews .wrapper {
  display: flex;
  gap: 2rem;
  padding: 3rem 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.reviews .tile {
  max-width: 300px;
  background: #1E1E1E;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
}
.reviews .stars {
  color: #f5b301;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.reviews .text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.reviews .author {
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.7;
}








/* FOOTER */
.footer{
    margin-top: 50px;
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px;
    color:white;
    padding:15px;
}
.footer .title{
  font-size:70px;
}
.footer .wrapper{
  margin-top:30px;
  width:100%;
  max-width:1400px;
  display:flex;
}
.footer .left{
  flex:1;
  flex-direction: column;
  align-items: flex-start;
}
.footer .center{
  flex:1;
  padding:10px;
  display:flex;
  flex-direction: column;
  align-items: center;
}
.footer .right{
  flex:1;
  display:flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer .logo{
  width:150px;
}
.footer .subtitle{
  font-weight:bold;
  margin-bottom:30px;
}
@media (max-width: 768px) {
  .footer .wrapper{
    flex-direction: column;
  }
  .footer .left{
    align-items: center;
  }
  .footer .center{
    align-items: center;
  }
  .footer .right{
    margin-top:30px;
    align-items: center;
  }


}





