/*
Items Name : Find Your Business
Author : Find Your Business
---------------------------------*/
/* ------------------------------
  Import Google Web Font
---------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900");

/* Mobile-only Zeilenumbruch - Standard: versteckt */
br.mobile-only {
  display: none;
}
/* ------------------------------
  General
---------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  background: #000000 !important;
  color: #ffffff !important;
  padding-top: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  padding: 0;
  margin: 0;
  color: #0596DE;
}

h1 {
  font-size: 52px;
  line-height: 66px;
  font-weight: 600;
  position: relative;
  color: #ffffff;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 19px;
  font-weight: 500;
  line-height: 46px;
  font-family: 'Roboto', sans-serif;
}

h6 {
  font-size: 18px;
}

a {
  text-decoration: none;
  color: #464646;
}

a:hover {
  color: #bbb;
}

p {
  margin: 5px 0 15px;
  line-height: 28px;
  letter-spacing: 0.5px;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}

img {
  width: 100%;
}

/* ------------------------------
  loader
---------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #f5f5f5;
}

.loader .loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader .loading .aloader {
  background: #f5f5f5;
  color: #0A3851;
}

/* ------------------------------
  button
---------------------------------*/
.button {
  padding: 12px 20px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: 0.2s;
}

.btn-second {
  background: #0a0a0a;
  color: #ffffff;
}

.button:hover {
  background: #0A3851;
  color: #ffffff;
  border-color: #ffffff;
}

/* Download Section Button Styling */
.download .button {
  background: #0A3851 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
}

.download .button:hover {
  background: #0d4a6b !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(10, 56, 81, 0.4) !important;
}

.download .button i {
  color: #ffffff !important;
}

/* ------------------------------
  navbar (OLD - deaktiviert für pattrn.io-Design)
  Die neue Navigation verwendet .navbar-pattern Klasse
---------------------------------*/
.navbar:not(.navbar-pattern) {
  display: none !important;
}
.navbar-pattern {
  /* Neue Navigation wird in index.html inline definiert */
}

.navbar-fixed {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0);
}

/* ------------------------------
  Pattrn.io-ähnliche Navigation (NEU)
---------------------------------*/
.navbar-pattern {
  position: fixed !important;
  top: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 120px) !important;
  max-width: 1200px !important;
  z-index: 9999 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.navbar-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  width: 100% !important;
}

.navbar-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  margin-left: 20px !important;
}

.navbar-logo img {
  height: 36px !important;
  width: auto !important;
}

.navbar-brand-text {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}

.navbar-menu {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.navbar-menu li a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
  padding: 6px 0 !important;
}

.navbar-menu li a:hover {
  color: #ffffff !important;
}

.navbar-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.btn-download {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 8px 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.btn-download:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2) !important;
  color: #000000 !important;
}

.btn-download i {
  font-size: 16px !important;
}

.navbar-toggle {
  display: none !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 24px !important;
  cursor: pointer !important;
  padding: 8px !important;
}

@media (max-width: 968px) {
  .navbar-pattern {
    width: calc(100% - 40px) !important;
    top: 10px !important;
  }
  
  .navbar-container,
  nav.navbar-pattern .navbar-container,
  #navbar .navbar-container {
    padding: 10px 16px !important;
    border-radius: 999px !important; /* Perfekt rund - wie upload-minimal, aber mit 999px */
  }
  
  .navbar-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    margin-top: 10px !important;
    padding: 20px !important;
    flex-direction: column !important;
    gap: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .navbar-menu.active {
    display: flex !important;
  }
  
  .navbar-toggle {
    display: block !important;
  }
  
  .navbar-brand-text {
    display: none !important;
  }
  
  .btn-download {
    padding: 8px 16px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 640px) {
  .navbar-container,
  nav.navbar-pattern .navbar-container,
  #navbar .navbar-container {
    padding: 8px 12px !important;
    border-radius: 999px !important; /* Perfekt rund - wie upload-minimal, aber mit 999px */
  }
  
  .navbar-logo {
    margin-left: 15px !important;
  }
  
  .navbar-logo img {
    height: 32px !important;
  }
  
  .navbar-brand-text {
    font-size: 12px !important;
    white-space: nowrap !important;
  }
  
  .btn-download span {
    display: none !important;
  }
  
  .btn-download {
    padding: 10px !important;
    border-radius: 50% !important;
  }
}


/* ------------------------------
  Book Recommendations
---------------------------------*/
.book-recommendations {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.book-recommendations h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}

.book-card {
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
}

.book-card h4 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 10px;
}

.book-card p {
  font-size: 1rem;
  color: #666;
}

.book-card .button {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #0A3851;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.book-card .button:hover {
  background-color: #0A3851;
}

/* ------------------------------
Book Recommendations
---------------------------------*/
.book-recommendations {
  padding: 60px 0;
  background-color: #1c1c1e;
  text-align: center;
}

.book-recommendations h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}

.book-card {
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
}

.book-card h4 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 10px;
}

.book-card p {
  font-size: 1rem;
  color: #666;
}

.book-card .button {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #0A3851;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.book-card .button:hover {
  background-color: #0056b3;
}

/* ------------------------------
Hero Banner
---------------------------------*/
.hero-banner {
  background: linear-gradient(120deg, #0A3851, #0A3851);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.hero-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 1.2rem;
}

/* ------------------------------
Book Cards
---------------------------------*/
.book-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.book-card:hover {
  transform: translateY(-5px);
}

.book-card h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.book-card p {
  font-size: 1rem;
  color: #555;
}

.book-card .button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.book-card .button:hover {
  background-color: #0056b3;
}

/* ------------------------------
Improved Book Cards
---------------------------------*/
.book-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

.book-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
}

.book-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.book-card h4 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.book-card p {
  font-size: 1rem;
  color: #555;
}

.book-card .button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.book-card .button:hover {
  background-color: #0056b3;
}


/* ------------------------------
 	section-title
---------------------------------*/
.title h5 {
  color: #0A3851;
  margin-bottom: 10px;
}
.title h2 {
  margin-bottom: 50px;
}

/* ------------------------------
  intro
---------------------------------*/
.intro {
  background: #1c1c1e;
  padding: 175px 0 310px;
  text-align: center;
}
.intro p {
  color: #ffffff;
  margin-top: 25px;
  padding: 0 25%;
}

.intro-image {
  padding: 0 16%;
  margin: -215px 0 0 0;
}
.intro-image img {
  padding: 0 5px;
}

/* ------------------------------
  counter
---------------------------------*/
.counter {
  text-align: center;
  padding: 80px 0;
}
.counter h1 {
  color: #ffffff;
}
.counter p {
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 500;
}

/* ------------------------------
  features
---------------------------------*/
.features .content:first-child {
  margin-top: 65px;
}
.features .content {
  position: relative;
  margin: 20px 0;
}
.features .content .icon {
  float: left;
  margin-right: 28px;
}
.features .content .icon i {
  font-size: 30px;
  color: #ffffff;
  margin-top: 35px;
}
.features .content .text {
  overflow: hidden;
}
.features .content-image {
  background: url(../assets/images/bgbox.png) right top no-repeat;
  background-size: 245px;
  text-align: right;
  padding-top: 45px;
  padding-right: 45px;
}
.features .content-image img {
  width: 80%;
}

.features02 {
  padding: 100px 0;
}
.features02 .content-image {
  background: url(../assets/images/bgbox.png) left top no-repeat;
  background-size: 245px;
  text-align: left;
  padding-top: 45px;
  padding-left: 45px;
}
.features02 .content-image img {
  width: 80%;
}
.features02 h2 {
  margin-top: 60px;
}
.features02 .row .row {
  padding-top: 45px;
}
.features02 .content i {
  font-size: 30px;
  color: #0596DE;
}

/* ------------------------------
  download
---------------------------------*/
.download {
  background: #0A3851;
  min-height: 500px;
  height: auto;
  color: #ffffff;
  overflow: visible;
  padding: 80px 0;
}
.download h2 {
  padding-top: 0;
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 2.5rem;
}
.download ul {
  margin-top: 20px;
}
.download ul li {
  display: inline-block;
  margin-right: 15px;
}
.download ul li i {
  font-size: 20px;
  margin-right: 8px;
  position: relative;
  top: 3px;
}
.download .image1 {
  position: relative;
  top: -38px;
  padding-left: 10px;
}
.download .image2 {
  position: relative;
  bottom: -65px;
  padding-left: 10px;
}

/* Zentrierung der Download-Sektion auf Desktop */
@media (min-width: 769px) {
  .download {
    overflow: visible;
  }

  .download .col-md:not(.col-second) {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
    overflow: visible;
    max-height: none;
  }

  .download .col-md:not(.col-second) h2 {
    text-align: center;
  }

  .download .col-md:not(.col-second) p {
    text-align: center;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0A3851 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease !important;
    font-weight: 500;
    font-size: 16px;
  }

  .download-button:hover {
    background: #0d4a6b !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(10, 56, 81, 0.4) !important;
  }

  .download-button i {
    color: #ffffff !important;
    font-size: 20px;
    margin-right: 8px;
  }
}

/* ------------------------------
  faq	
---------------------------------*/
.faq {
  padding: 160px 0 100px;
}
.faq h2 {
  text-align: center;
}
.faq .top-row {
  margin-top: 30px;
}


/* ------------------------------
  footer
---------------------------------*/
footer {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 0 80px;
}
footer img {
  height: 42px;
  width: auto;
  margin-bottom: 20px;
}
footer h2 {
  color: #fff;
}
footer h6 {
  color: #fff;
}
footer ul {
  margin-top: 20px;
}
footer ul li {
  padding: 6px 0;
}
footer ul li i {
  color: #0921fb;
  margin-right: 15px;
}
footer ul li a {
  color: #fff;
}

.footer-cp {
  background: #0a0a0a;
  color: #fff;
  padding-bottom: 30px;
}
.footer-cp ul {
  text-align: right;
}
.footer-cp ul li {
  margin-left: 20px;
  display: inline-block;
}
.footer-cp ul li a {
  color: #fff;
}

/* ------------------------------
  responsive
---------------------------------*/
@media (max-width: 768px) {
  .navbar .button-navbar {
    width: 50%;
  }

  .navbar .navbar-collapse {
    position: absolute;
    top: 100px;
    background: #0A3851;
    width: 100%;
    right: 0;
    padding: 0 30px 30px;
    text-align: left;
    left: 0;
  }

  .navbar .navbar-toggler {
    padding: 0;
    right: -62px;
    position: relative;
  }

  .intro-image {
    padding: 0 8%;
  }

  .download ul li {
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Einheitlicher Seitenabstand - kein zusätzliches Padding in Elementen */
  .intro p {
    padding-left: 0;
    padding-right: 0;
  }

  h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .navbar .button-navbar {
    width: 0;
    display: none;
  }

  .navbar .navbar-toggler {
    right: 0;
  }

  .intro-image img {
    padding: 0 50px;
  }

  .m-none {
    display: none;
  }

  .download .col-second {
    margin-top: 115px;
  }

  .faq {
    margin-top: 500px;
  }

  .cta .entry {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  footer ul {
    margin-bottom: 40px;
  }

  .footer-cp ul {
    text-align: left;
    margin-top: 10px;
  }
  .footer-cp ul li {
    margin-left: 0;
    margin-right: 20px;
  }

  footer {
    padding: 100px 0 0 0;
  }

  /* Zentrierung der Features02 auf kleinen Bildschirmen */
  .features02 h2 {
    text-align: center;
  }
  .features02 .col-md:not(.features02-image-mobile) {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .features02 .col-md .row {
    justify-content: center;
  }
  .features02 .col-md .row .col {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  .features02 .col-md .row .col .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .features02 .col-md .row .col .content i {
    margin-bottom: 15px;
  }
  .features02 .col-md .row .col .content h5 {
    margin-bottom: 10px;
  }
}
@media (max-width: 360px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro-image img {
    padding: 0;
  }

  .download ul li {
    padding-top: 12px;
  }

  .faq {
    margin-top: 400px;
  }
}

/* Rückkehr-Button */
.back-to-home {
    text-align: left;
    padding: 20px;
    background-color: #0A3851;
}

.back-to-home .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1c1c1e;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-to-home .button:hover {
    background-color: #0056b3;
}

/* Buchkästen */
.book-card {
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.book-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.book-card h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.book-card p {
    font-size: 1rem;
    color: #555;
}

.book-card a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0A3851;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.book-card a.button:hover {
    background-color: #0056b3;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Dropdown für Kategorien */
.category-dropdown {
    margin: 20px;
    text-align: center;
}

.category-dropdown select {
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    appearance: none;
    background-color: #007bff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3csvg xmlns%3d%27http://www.w3.org/2000/svg%27 width%3d%2710%27 height%3d%275%27 viewBox%3d%270 0 10 5%27%3e%3cpath fill%3d%27%23000%27 d%3d%27M0 0l5 5 5-5z%27/%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    cursor: pointer;
}

.category-dropdown select:focus {
    outline: none;
    border-color: #007bff;
}

/* Verbesserte Dropdown für Kategorien */
.category-dropdown {
    margin: 20px;
    text-align: center;
}

.category-dropdown select {
    padding: 15px 20px; /* Größere Höhe und mehr Innenabstand */
    font-size: 18px; /* Größere Schriftart */
    border: 1px solid #ffffff;
    border-radius: 8px; /* Abgerundete Ecken */
    appearance: none;
    background-color: #ffffff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3csvg xmlns%3d%27http://www.w3.org/2000/svg%27 width%3d%2710%27 height%3d%275%27 viewBox%3d%270 0 10 5%27%3e%3cpath fill%3d%27%23000%27 d%3d%27M0 0l5 5 5-5z%27/%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 20px center; /* Mehr Abstand zwischen Pfeil und Text */
    background-size: 12px; /* Größerer Pfeil */
    cursor: pointer;
}

.category-dropdown select:focus {
    outline: none;
    border-color: #007bff;
}

.book-card img {
    width: 150px; /* Breite des Buchcovers */
    height: 200px; /* Höhe des Buchcovers */
    object-fit: cover; /* Zuschneiden des Bildes bei Bedarf */
    margin: 0 auto; /* Zentriert das Bild */
    display: block; /* Für zentrierte Darstellung */
}

/* Nummerierung für Buchkarten (global) */
.book-card {
    position: relative;
    padding-top: 40px;
    margin-bottom: 30px;
}
.book-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0A3851 60%, #1CB5E0 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2em;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.3s;
}
.book-card:nth-child(1) .book-number,
.book-card:nth-child(2) .book-number,
.book-card:nth-child(3) .book-number {
    background: linear-gradient(135deg, #0A3851 60%, #1CB5E0 100%);
    color: #fff;
}
/* ------------------------------
  iPhone 16 Pro & Mobile Optimierungen
  (393px Breite - iPhone 16 Pro)
---------------------------------*/
@media (max-width: 430px) {
  /* Sticky-Position auf Mobile deaktivieren */
  .download .col-md:not(.col-second) {
    position: relative !important;
    top: auto !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  /* Download-Bereich Mobile Optimierung - Keine Scrollbalken */
  .download {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 120px 0 140px 0 !important;
    overflow: visible !important;
    position: relative !important;
  }

  .download .container {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    position: relative !important;
  }

  .download .row {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    position: relative !important;
    margin: 0 !important;
  }

  .download .col-md {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    position: relative !important;
    padding: 0 15px !important;
  }

  .download .col-md:not(.col-second) {
    overflow: visible !important;
    max-height: none !important;
    margin-bottom: 60px !important;
    padding: 0 20px !important;
  }

  .download .col-second {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }

  .download h2 {
    padding-top: 0 !important;
    font-size: 38px !important;
    margin-bottom: 35px !important;
    text-align: left !important;
    line-height: 1.3 !important;
  }

  .download p {
    text-align: left !important;
    font-size: 19px !important;
    line-height: 1.8 !important;
    margin-bottom: 45px !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  /* Download-Buttons Mobile */
  .download-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    margin-top: 40px !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .download-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 28px !important;
    font-size: 18px !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 56px !important;
  }

  .download-button i {
    font-size: 26px !important;
    margin-right: 12px !important;
  }

  /* Einheitlicher Seitenabstand für alle Container auf Mobile */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Einheitlicher Abstand für alle Sections */
  .intro,
  .features,
  .features02,
  .download,
  .faq,
  .cta,
  footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Einheitlicher Abstand für alle Inhalte */
  .intro p,
  .features p,
  .features02 p,
  .download p,
  .faq p,
  .cta p {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Einheitlicher Abstand für Überschriften */
  h1, h2, h3, h4, h5, h6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Navigation Mobile */
  .navbar {
    padding: 15px 20px !important;
  }

  .navbar .navbar-brand {
    font-size: 18px !important;
  }

  /* Hero Section Mobile */
  .intro h1 {
    font-size: 32px !important;
    line-height: 42px !important;
    padding: 0 10px !important;
    white-space: nowrap !important;
    letter-spacing: -0.5px !important;
  }

  .intro p {
    font-size: 16px !important;
    padding: 0 10px !important;
    line-height: 1.6 !important;
  }

  /* Features Mobile */
  .features h2,
  .features02 h2 {
    font-size: 28px !important;
    margin-bottom: 30px !important;
    text-align: center !important;
  }

  /* Features02 Boxen zentrieren auf Mobile */
  .features02 .col-md:not(.features02-image-mobile) {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .features02 .row {
    justify-content: center !important;
  }

  .features02 .row .col {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .features02 .row .col .content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .features02 .row .col .content i {
    margin-bottom: 15px !important;
  }

  .features02 .row .col .content h5 {
    margin-bottom: 10px !important;
    text-align: center !important;
  }

  .features02 .row .col .content p {
    text-align: center !important;
  }

  /* Book Cards Mobile */
  .book-card {
    padding: 30px 15px 20px !important;
    margin-bottom: 40px !important;
  }

  .book-card h4 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .book-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .book-card img {
    max-width: 140px !important;
    margin-bottom: 15px !important;
  }

  /* Download Section Images Mobile */
  .download .col-second {
    margin-top: 40px !important;
  }

  .download .image1,
  .download .image2 {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    top: 0 !important;
    bottom: 0 !important;
    display: block !important;
  }

  .download .col-second .row {
    margin: 0 !important;
    gap: 20px !important;
  }

  .download .col-second .col {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* FAQ Mobile */
  .faq {
    margin-top: 60px !important;
    padding: 60px 0 !important;
  }

  .faq h2 {
    font-size: 28px !important;
    margin-bottom: 30px !important;
  }

  /* Footer Mobile */
  footer {
    padding: 60px 0 0 0 !important;
  }

  footer ul {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* CTA Section Mobile */
  .cta {
    padding: 60px 20px !important;
  }

  .cta h2 {
    font-size: 28px !important;
  }

  /* Button Mobile */
  .button {
    padding: 14px 24px !important;
    font-size: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Top Navigation für Buchseiten Mobile */
  .top-navigation {
    top: 10px !important;
    gap: 8px !important;
    width: 95% !important;
  }

  .back-to-home .button {
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
  }

  .category-dropdown {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .category-dropdown select {
    font-size: 13px !important;
    padding: 10px 15px !important;
    height: 40px !important;
  }
}

/* Spezifische iPhone 16 Pro Optimierungen (393px) */
@media (max-width: 393px) {
  /* Einheitlicher Seitenabstand auch auf sehr kleinen Bildschirmen */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Einheitlicher Abstand für alle Sections */
  .intro,
  .features,
  .features02,
  .download,
  .faq,
  .cta,
  footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .download h2 {
    font-size: 26px !important;
  }

  .intro h1 {
    font-size: 30px !important;
    line-height: 40px !important;
  }

  .download-button {
    padding: 12px 18px !important;
    font-size: 15px !important;
  }
}

/* ============================================
   UMFASSENDE MOBILE-OPTIMIERUNG
   Alle Bereiche für Mobile optimiert
   Desktop bleibt unverändert (min-width: 769px)
   ============================================ */

@media (max-width: 768px) {
  /* ========== NAVIGATION MOBILE ========== */
  .navbar-pattern {
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
  }

  .navbar-container {
    background: rgba(0, 0, 0, 0.95) !important;
  }

  .navbar-brand-text {
    font-size: 15px !important;
  }

  .navbar-menu {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    padding: 16px !important;
    border-radius: 24px !important;
    margin-top: 10px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .navbar-menu li {
    margin: 4px 0 !important;
  }

  .navbar-menu li a {
    padding: 10px 14px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    display: block !important;
    transition: all 0.3s ease !important;
  }

  .navbar-menu li a:hover {
    background: rgba(5, 150, 222, 0.1) !important;
  }

  /* ========== HERO/INTRO SECTION MOBILE ========== */
  .intro {
    padding: 100px 20px 60px 20px !important;
    text-align: center !important;
    min-height: auto !important;
  }

  .intro h1 {
    font-size: 32px !important;
    line-height: 42px !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    letter-spacing: -0.5px !important;
  }

  .hero-subtitle {
    font-size: 18px !important;
    line-height: 24px !important;
    margin-bottom: 30px !important;
    display: block !important;
  }

  .hero-subtitle span {
    display: block !important;
    margin: 2px 0 !important;
  }

  .hero-cta {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    margin-top: 70px !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .btn-hero-download {
    flex: 1 !important;
    min-width: 140px !important;
    max-width: 48% !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
  }

  .btn-hero-download:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
  }

  .btn-hero-download i {
    font-size: 20px !important;
  }

  .intro-image {
    margin-top: 40px !important;
    padding: 0 10px !important;
  }

  .intro-image img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* ========== FEATURES SECTION MOBILE ========== */
  .features {
    padding: 80px 20px !important;
    text-align: center !important;
  }

  .features h2 {
    font-size: 32px !important;
    margin-bottom: 40px !important;
    text-align: center !important;
  }

  .features .content {
    display: flex !important;
    align-items: center !important; /* Icons vertikal zentriert */
    text-align: left !important;
    margin-bottom: 40px !important;
    padding: 30px 20px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    gap: 20px !important;
  }

  .features .content:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-5px) !important;
  }

  .features .content .icon {
    flex-shrink: 0 !important;
    float: none !important;
    margin-right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .features .content .icon i {
    font-size: 48px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    color: #0596DE !important;
  }

  .features .content .text {
    flex: 1 !important;
    overflow: visible !important;
  }

  .features .content .text h5 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
    text-align: left !important;
  }

  .features .content .text p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-align: left !important;
  }

  .features-screenshots-mobile {
    margin-top: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    align-items: center !important;
  }

  .features-screenshots-mobile img {
    max-width: 280px !important;
    height: auto !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
  }

  /* ========== FEATURES02 SECTION MOBILE ========== */
  .features02 {
    padding: 80px 0 !important;
    background: rgba(255, 255, 255, 0.02) !important;
  }

  .features02 .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .features02 h2 {
    font-size: 32px !important;
    margin-bottom: 50px !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .features02 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .features02 .row .col {
    margin-bottom: 30px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .features02 .content {
    text-align: center !important;
    padding: 35px 20px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .features02 .content:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2) !important;
  }

  .features02 .content i {
    font-size: 52px !important;
    color: #0596DE !important;
    margin-bottom: 20px !important;
  }

  .features02 .content h5 {
    font-size: 22px !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
  }

  .features02 .content p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
  }

  /* ========== FAQ SECTION MOBILE ========== */
  .faq {
    padding: 80px 20px !important;
    background: rgba(0, 0, 0, 0.5) !important;
  }

  .faq h2 {
    font-size: 32px !important;
    margin-bottom: 40px !important;
    text-align: center !important;
  }

  .faq-item {
    margin-bottom: 16px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
  }

  .faq-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .faq-question {
    padding: 20px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    opacity: 0 !important;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease !important;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px !important;
    padding: 0 20px 20px 20px !important;
    opacity: 1 !important;
  }

  /* ========== CTA SECTION MOBILE ========== */
  .cta {
    padding: 80px 20px !important;
    text-align: center !important;
    background: linear-gradient(135deg, #0A3851 0%, #1CB5E0 100%) !important;
  }

  .cta h2 {
    font-size: 32px !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
  }

  .cta p {
    font-size: 18px !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .cta .button {
    padding: 18px 32px !important;
    font-size: 18px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    max-width: 100% !important;
  }

  /* ========== FOOTER MOBILE ========== */
  footer {
    padding: 60px 20px 20px 20px !important;
    background: #000000 !important;
  }

  footer ul {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
  }

  footer ul li {
    margin: 0 !important;
  }

  footer ul li a {
    font-size: 16px !important;
    padding: 8px 0 !important;
    display: block !important;
  }

  .footer-cp {
    text-align: center !important;
    padding: 30px 20px !important;
  }

  .footer-cp ul {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  /* ========== ALLGEMEINE MOBILE VERBESSERUNGEN ========== */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Bessere Touch-Targets */
  a, button {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Smooth Scrolling */
  html {
    scroll-behavior: smooth !important;
  }

  /* Bessere Lesbarkeit */
  p {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  /* Abstände optimiert */
  section, .section {
    margin-bottom: 0 !important;
  }

  /* ========== WAITLIST SECTION MOBILE ========== */
  .waitlist-section {
    padding: 40px 0 !important;
    margin: 20px 0 !important;
  }

  .waitlist-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .waitlist-section h2 {
    font-size: 24px !important;
    margin-bottom: 30px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .waitlist-form-container {
    padding: 25px 20px !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    border-radius: 16px !important;
  }

  .waitlist-form-container h3 {
    font-size: 20px !important;
    margin-bottom: 25px !important;
    text-align: left !important;
  }

  .waitlist-form-container .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .waitlist-form-container .col-12,
  .waitlist-form-container .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
  }

  .waitlist-form-container .form-group {
    margin-bottom: 20px !important;
  }

  .waitlist-form-container .form-group label {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }

  .waitlist-form-container .form-group input[type="text"],
  .waitlist-form-container .form-group input[type="email"] {
    padding: 12px 15px !important;
    font-size: 16px !important;
    height: 48px !important;
  }

  .waitlist-form-container .button {
    padding: 14px 20px !important;
    font-size: 16px !important;
    width: 100% !important;
    margin-top: 20px !important;
  }

  /* ========== WAITLIST FORM MOBILE - Text-Wrapping und Link-Styling ========== */
  .form-group:has(input[type="checkbox"]) {
    display: flex !important;
    align-items: center !important; /* Checkbox und Text auf gleicher Höhe */
    gap: 12px !important;
  }

  .form-group:has(input[type="checkbox"]) label {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    display: block !important;
  }

  /* Mobile-only Zeilenumbruch aktivieren */
  br.mobile-only {
    display: block !important;
  }

  .form-group:has(input[type="checkbox"]) label a {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    text-decoration: none !important;
    color: #60a5fa !important;
    font-weight: 600 !important;
  }

  .form-group:has(input[type="checkbox"]) input[type="checkbox"] {
    flex-shrink: 0 !important;
    margin-top: 0 !important; /* Zentriert zur Textzeile */
  }
}

/* ============================================
   KLEINE MOBILE GERÄTE (bis 430px)
   ============================================ */
@media (max-width: 430px) {
  .navbar-brand-text {
    font-size: 11px !important;
    white-space: nowrap !important;
    letter-spacing: -0.3px !important;
  }

  /* schöner Rand links/rechts */
  .intro .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Content darf breiter sein, sonst wirkt alles gequetscht */
  .intro .content {
    max-width: 360px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
  }

  /* Titel bleibt einzeilig, aber skaliert runter wenn nötig */
  .intro h1 {
    white-space: nowrap !important;
    font-size: clamp(22px, 6.5vw, 28px) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.05 !important;
    text-align: left !important;
  }

  /* Subtitle nicht zu schmal wirken lassen */
  .intro .hero-subtitle {
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
  }

  /* 2 Buttons nebeneinander, sauber */
  .intro .hero-cta {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    align-items: stretch !important;
  }

  .intro .hero-cta .btn-hero-download {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    height: 44px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .features h2,
  .features02 h2,
  .faq h2,
  .cta h2 {
    font-size: 28px !important;
  }

  .hero-subtitle {
    font-size: 16px !important;
  }

  .btn-hero-download {
    padding: 14px 20px !important;
    font-size: 15px !important;
  }

  /* ========== WAITLIST SECTION MOBILE (kleine Geräte) ========== */
  .waitlist-section {
    padding: 30px 0 !important;
    margin: 15px 0 !important;
  }

  .waitlist-section h2 {
    font-size: 22px !important;
    margin-bottom: 25px !important;
  }

  .waitlist-form-container {
    padding: 20px 15px !important;
  }

  .waitlist-form-container h3 {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  .waitlist-form-container .form-group label {
    font-size: 14px !important;
  }

  .waitlist-form-container .form-group input[type="text"],
  .waitlist-form-container .form-group input[type="email"] {
    padding: 10px 12px !important;
    font-size: 15px !important;
    height: 44px !important;
  }

  /* ========== WAITLIST FORM MOBILE - Text-Wrapping und Link-Styling ========== */
  .form-group:has(input[type="checkbox"]) {
    display: flex !important;
    align-items: center !important; /* Checkbox und Text auf gleicher Höhe */
    gap: 12px !important;
  }

  .form-group:has(input[type="checkbox"]) label {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    display: block !important;
  }

  /* Mobile-only Zeilenumbruch aktivieren */
  br.mobile-only {
    display: block !important;
  }

  .form-group:has(input[type="checkbox"]) label a {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    text-decoration: none !important;
    color: #60a5fa !important;
    font-weight: 600 !important;
  }

  .form-group:has(input[type="checkbox"]) input[type="checkbox"] {
    flex-shrink: 0 !important;
    margin-top: 0 !important; /* Zentriert zur Textzeile */
  }
}

/* Cache Busting - Updated: Mon Dec  8 18:42:16 CET 2025 */
/* FORCE RELOAD: 1765215762 */
