

*,
*::before,
*::after {
    box-sizing: border-box;
}



html, body{
    margin: 0;
    padding: 0;
    font-family: inter, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    background-color: rgb(33, 34, 36);
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    color: white;
}

/* =========================
   MAIN 1 (Hero)
   ========================= */

.desktop-only .main-1{
    min-height: auto;
    width: 100%;
    margin: 0;
    padding: 0;

    position: relative; /* 🔑 nötig für ::after */
}

/* 🔥 Schatten NUR nach unten */
.desktop-only .main-1::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -50px;            /* schiebt Schatten in main-2 */
    width: 100%;
    height: 50px;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0)
    );

    pointer-events: none;
}

/* =========================
   NAVBAR
   ========================= */

.desktop-only .logo{
    font-size: 3.5rem;
    margin: 0;
}

.desktop-only .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px 50px;
    color: rgb(44, 44, 44);
    position: relative;
}

.desktop-only .navbar a{
  text-decoration: none;
  color: #2b2b2b;
}

.desktop-only .navbar::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -30px;            /* schiebt Schatten in main-2 */
    width: 100%;
    height: 30px;

    z-index: 100;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0)
    );

    pointer-events: none;
}

.desktop-only .nav-links {
    width: 700px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(44, 44, 44);
}

.desktop-only .nav-links a {
    display: inline-block;
    color: rgb(44, 44, 44);
    text-decoration: none;
    transition: transform 200ms ease;
}

.desktop-only .nav-links a:hover {
    transform: scale(1.05);
}

/* =========================
   BUTTON
   ========================= */

.desktop-only .buy-btn{
    padding: 10px 20px;
    border-style: none;
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 600;

    color: white;
    background-color: rgb(0, 173, 253);
    border: solid 3px rgb(0, 173, 253);

    cursor: pointer;
    transition: all 300ms ease;

    /* 🔥 leichter Shadow */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.397);
}

.desktop-only .buy-btn:hover{

    transform: scale(1.08);
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.397);
}


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



.hero-container{
    display: flex;
    gap: 32px;
    padding: 40px;
    min-height: calc(100vh - 120px);
}

/* Main Columns */
.hero-col{
    flex: 1;
    display: flex;

    background: #262626;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Fill height */
.hero-col > *{
    flex: 1;
}

/* Buy Column slightly emphasized */
.buy-col{
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.10);

    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* =========================
   PRICING
========================= */

.pricing-card{
    padding: 20px 60px;
    text-align: center;
}

.pricing-card h2{
    font-size: 2.4rem;
    margin-bottom: 100px;
    letter-spacing: 0.05em;
    text-align: center;
}

.pricing-card .version{
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    opacity: 0.6;
    margin-bottom: 12px;
}

.pricing-card .price{
    font-size: 3rem;
    margin: 0 0 32px;
    font-weight: 700;
}

/* Checkout Button */
.checkout-btn{
    width: 100%;
    padding: 14px 0;
    border-radius: 10px;
    border: none;

    font-size: 1rem;
    font-weight: 600;

    background:#00ADFD;
    color:#fff;
    cursor:pointer;

    transition: all .2s ease;
}

.checkout-btn:hover{
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0,173,253,0.5);
}

/* Payment row */
.payment{
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 0.8rem;
    opacity: 0.6;
}

.payment img{
    height: 22px;
    filter: brightness(0) invert(1);
}

/* =========================
   FEATURES
========================= */

.feature-box{
    padding: 20px;
}

.feature-box h2{
    font-size: 2.4rem;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    text-align: center;
}

/* Feature grid */
.feature-list{
    list-style:none;
    display:grid;
    grid-template-columns: 1fr; /* 🔥 nur eine Spalte */
    gap:24px;
    padding:0;
    margin:0;
}

/* Feature cards */
.feature-list li{
    background:#1f1f1f;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:24px;

    transition:.2s ease;
}

.feature-list li:hover{
    border-color: rgba(0,173,253,0.35);
    transform: translateY(-4px);
}

.feature-list span{
    font-weight:600;
    display:block;
    margin-bottom:10px;
}

.feature-list p{
    font-size:0.95rem;
    opacity:0.75;
    line-height:1.5;
}

/* =========================
   REQUIREMENTS
========================= */

.requirements-box{
    padding:20px 30px;
}

.requirements-box h2{
    font-size:2.4rem;
    margin-bottom:40px;
    letter-spacing:0.05em;
    text-align:center;
}

.requirements-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:0;
    margin:0;
}

/* Requirement cards */
.requirements-list li{
    background:#1f1f1f;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:14px;
    padding:18px 20px;

    display:flex;
    flex-direction:column;
    gap:6px;

    transition:.2s ease;
}

.requirements-list li:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    border-color: rgba(0,173,253,0.35);
}

.requirements-list span{
    font-weight:600;
    display:block;
    margin-bottom:10px;
    letter-spacing:0.04em;
}

.requirements-list p{
    font-size:0.95rem;
    opacity:0.75;
    line-height:1.5;
    margin:0;
}

/* Checkmark */
.requirements-list li::before{
    content:"✓";
    display:inline-block;
    margin-bottom:12px;
    font-weight:700;
    color:#00ADFD;
}

/* =========================
   LIMITATIONS BOX
========================= */

.limitations-box{
    margin-top: 28px;
    padding: 16px 18px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;

    text-align: left;
    font-size: 0.85rem;
    opacity: 0.85;
}

.limitations-box h4{
    margin: 0 0 10px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

.limitations-box ul{
    margin: 0;
    padding-left: 18px;
    line-height: 1.5;
}

.limitations-box li{
    margin-bottom: 6px;
}


/* =========================
   CHECKOUT NOTE (FINE PRINT)
========================= */

.checkout-note{
    margin-top: 14px;
    font-size: 0.75rem;
    line-height: 1.5;

    opacity: 0.5;
    text-align: center;
}


.notice-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.notice-box {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 12px;
  max-width: 420px;
  text-align: center;
  font-family: Inter;
  color: white;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.notice-box h3 {
  margin-bottom: 10px;
  color: #00ADFD;
}

.notice-box button {
  margin-top: 15px;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  background: #00ADFD;
  color: white;
  cursor: pointer;
  font-weight: 600;
}



/* =========================
   FOOTER
   ========================= */

.footer{
  background-color: rgb(26, 27, 27);
  color: rgba(255,255,255,0.85);
}

/* 👉 ZENTRIERTER FOOTER-INHALT */
.footer-inner{
  max-width: 1200px;          /* 🔑 enger = wirkt mittiger */
  margin: 0 auto;
  padding: 80px 0px;

  display: flex;
  justify-content: space-around;    /* 🔑 alles zur Mitte */
  flex-wrap: wrap;
  text-align: left;
}

/* Columns */
.footer-col{
  min-width: 180px;
}

/* Brand extra zentrieren */
.footer-col.brand{
  text-align: center;
  max-width: 360px;
}

.footer-col h4{
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li{
  margin-bottom: 12px;
}

.footer-col a{
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: opacity 200ms ease;
}

.footer-col a:hover{
  opacity: 1;
}

/* Brand */
.footer-logo{
  font-size: 2rem;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.footer-col.brand p{
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Bottom bar */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 60px;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.burger{
  display: none;
  width: 32px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span{
  height: 3px;
  background: rgb(44,44,44);
  border-radius: 2px;
}


.desktop-only{
    display: block;
}



.desktop-only{
  display: block;
}





/* =========================
   MOBILE CONTENT
   ========================= */



.mobile-only {
    display: none;
    position: relative; /* ⬅️ Anker für absolute Menu */
}

/* =========================
   HEADER (NORMAL FLOW)
   ========================= */

.mobile-only header {
    position: relative; /* ⬅️ wichtig */
    width: 100%;
    height: 80px;
    background-color: #fff;
    z-index: 10;
}



.mobile-only header nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.mobile-only header nav a{
  text-decoration: none;
  color: #1b1b1b;
}

/* =========================
   BURGER
   ========================= */

.burger {
    position: relative;
    width: 28px;
    height: 20px;
    cursor: pointer;
    display: block;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { bottom: 0; }

.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   MOBILE MENU (NO FLOW!)
   ========================= */

.mobile-menu {
    position: absolute;          /* ⬅️ AUS DEM FLOW */
    top: 80px;                   /* ⬅️ direkt unter Header */
    left: 0;
    width: 100%;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    padding: 24px;
    box-sizing: border-box;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;

    transition: all 0.25s ease;
    z-index: 9;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    text-decoration: none;
    color: #0e1116;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0;
}



/* =========================
   BREAKPOINT
   ========================= */



@media (max-width: 1100px){
  .desktop-only{
    display: none;
  }

  .mobile-only{
    display: block;
  }






  /* =========================
     FOOTER – MOBILE
     ========================= */

  .footer-inner{
    padding: 50px 24px;
    gap: 40px;

    flex-direction: column;     /* 🔑 untereinander */
    align-items: center;        /* 🔑 horizontal zentriert */
    text-align: center;         /* 🔑 Text mittig */
  }

  .footer-col{
    min-width: unset;
    width: 100%;
    max-width: 360px;
  }

  .footer-col ul{
    align-items: center;
  }

  .footer-col li{
    margin-bottom: 10px;
  }

  .footer-col h4{
    margin-bottom: 16px;
  }

  /* Brand bleibt schön mittig */
  .footer-col.brand{
    text-align: center;
    max-width: 420px;
  }

  /* Bottom Bar kompakter */
  .footer-bottom{
    padding: 16px 24px;
    font-size: 0.8rem;
  }

  /* =========================
     HERO – MOBILE (CLEAN)
     ========================= */

  .hero-container{
      display: flex;
      flex-direction: column;   /* untereinander */
      gap: 24px;
      padding: 24px;
      min-height: unset;        /* kein Fullscreen */
  }

  .hero-col{
      flex: none;               /* kein Equal-Height */
      width: 100%;
      display: block;           /* normaler Flow */
  }

  

  /* Buy nicht mehr zentrieren */
  .buy-col{
    order: -2;
  }

  .requirements-col{
    order: -1;
  }


  /* =========================
     REQUIREMENTS – MOBILE TUNING
     ========================= */

  

  .requirements-box h2{
      font-size: 1.6rem;    /* kleiner als Desktop */
      margin-bottom: 20px;  /* nicht 40px */
  }

  .feature-box h2{
      font-size: 1.6rem;    /* kleiner als Desktop */
      margin-bottom: 20px;  /* nicht 40px */
  }
}