.guide-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 40px 24px 50px;
}

.hero {
    text-align: center;
    margin-top: 100px;
    animation: fadeIn 0.8s ease;
}

.hero h1 {
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0 0 12px 0;
}

.hero .subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 22px;
    color: #333;
}

body.dark-mode .hero .subtitle {
  color: var(--text-dark);
}

.hero-info {
    margin-top: 10px;
    font-size: 15px;
    color: #666;
}

body.dark-mode .hero-info  {
  color: var(--text-dark);
}

.hero-badges {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.hero-badges span {
    background: rgba(0,168,255,0.12);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0077b6;
}

.hero-badges i {
    width: 18px;
    height: 18px;
}

.start-inserat-btn {
    margin-top: 30px;
    padding: 16px 40px;
    background-color: var(--button-filter-light);
    color: var(--text-dark);
    font-weight: bold;
    box-shadow: rgba(240, 98, 145, 0.5) 0px 7px 20px;
    border-radius: 35px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s ease;
}

.start-inserat-btn:hover {
    background-color: var(--button-filter-hover-light);
    box-shadow: 0 9px 26px rgba(236, 64, 122, 0.7);
}

.video-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.video-wrapper canvas {
    width: 100%;
    max-width: 100%; /* wie bei deinem Beispiel */
    aspect-ratio: 16 / 9; /* 16:9 Verhältnis */
    border-radius: 24px;
     border: 6px solid #00a8ff;
    box-shadow: rgba(255, 255, 255, 0.6) 0px 2px 4px 0px inset;
    display: block;
}

/* ------------------------------------------
   Wrapper für die Sektion
------------------------------------------ */
.service-boxes-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: #c7cad5;
  transition: background 0.5s ease;
}

body.dark-mode .service-boxes-wrapper {
  background-color: #5C4A72;
}

/* ------------------------------------------
   Überschrift über den Boxen
------------------------------------------ */
.how-it-works-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
  margin-bottom: -10px;
  color: var(--text-light);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: color 0.3s ease;
}

body.dark-mode .how-it-works-title {
  color: var(--text-dark);
}


/* ------------------------------------------
   Flex Container für die Boxen
------------------------------------------ */
.service-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

/* ------------------------------------------
   Einzelne Service-Boxen
------------------------------------------ */
.service-box {
  background-color: var(--bg-light);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 35px 25px;
  flex: 1 1 300px;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease forwards;
}

body.dark-mode .service-box {
  background-color: var(--bg-dark);
}

/* Box Hover-Effekte */
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* ------------------------------------------
   Icon oben in der Box
------------------------------------------ */
.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--text-light);
  stroke: var(--text-light);
  transition: color 0.3s ease, stroke 0.3s ease, transform 0.4s ease;
}

.service-box:hover .service-icon {
  transform: translateY(-5px) rotate(-10deg);
  color: #00a8ff;
  stroke: #00a8ff;
}

body.dark-mode .service-icon {
  color: var(--text-dark);
  stroke: var(--text-dark);
}

/* ------------------------------------------
   Überschrift in den Boxen
------------------------------------------ */
.service-box h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
  transition: color 0.3s ease;
}

body.dark-mode .service-box h2 {
  color: var(--text-dark);
}

/* ------------------------------------------
   Text in den Service Boxen
------------------------------------------ */
.how-it-works-text {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--text-light);
  transition: color 0.3s ease;
  text-align: center;
}

body.dark-mode .how-it-works-text {
  color: var(--text-dark);
}

/* ------------------------------------------
   Links innerhalb der Boxen (a href)
------------------------------------------ */
.service-box a {
  display: inline-flex;         
  align-items: center;           
  gap: 6px;                    
  margin: 6px 0;               
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 550;
  border-radius: 25px;         
  text-decoration: none;
  color: var(--text-light);
  background: var(--bg-light);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* Hover Effekt */
.service-box a:hover {
  background: #F4A7C1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Dark Mode Anpassung */
body.dark-mode .service-box a {
  background: var(--bg-dark);
  color: #fff;
}

body.dark-mode .service-box a:hover {
  background: #E86BA8;
}

/* ------------------------------------------
   Icons innerhalb der Links
------------------------------------------ */
.service-box a i {
  display: inline-block;      
  vertical-align: middle;       
  width: 18px;              
  height: 18px;                
  stroke-width: 2;            
  flex-shrink: 0;             
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-box a:hover i {
  transform: translateY(-2px); 
  color: #fff;                 
}

.start-inserat-btn-now {
    display: block;          /* macht den Button zu einem Block-Element */
    margin: 0px auto 0 auto; /* oben 30px, unten 0, links/rechts automatisch = zentriert */
    padding: 16px 40px;
    background-color: var(--button-filter-light);
    color: var(--text-dark);
    font-weight: bold;
    box-shadow: rgba(240, 98, 145, 0.5) 0px 7px 20px;
    border-radius: 35px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s ease;
}

.start-inserat-btn-now:hover {
    background-color: var(--button-filter-hover-light);
    box-shadow: 0 9px 26px rgba(236, 64, 122, 0.7);
}



/*

*/










/* === Pricing Container === */
.pricing-cardcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: -60px;
}

.flag-selector-modern { 
    display: flex;
    justify-content: center;
    gap: 18px;             
    margin-top: 100px;     
    flex-wrap: wrap;
}

.flag-card {
    width: 45px;           
    height: 45px;
    border-radius: 15px;   
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    overflow: hidden;
}

/* Flaggenbild rund, 100% Container, 36px */
.flag-card img {
    width: 27px;                
    height: 27px;
    object-fit: cover;          
    border-radius: 50%;         
    transition: transform 0.3s ease, border 0.3s ease;
    image-rendering: auto;
    image-rendering: crisp-edges; 
}

/* Hover Effekt */
.flag-card:hover {
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4); /* leichtes Pink */
}

/* Aktive Flagge */
.flag-card.active {
    transform: translateY(-6px) scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7); /* Pink */
}

body.dark-mode .flag-card.active {
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.6);
}

/* Unterstrich */
.flag-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 100%;
    height: 4px;
    background: #00a8ff; 
    border-radius: 3px;
    opacity: 0.95;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode .flag-card::after {
     background-color: #00a8ff;
}

.flag-card.active::after {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 500px) {
    .flag-card {
        width: 50px;
        height: 50px;
    }
    .flag-card img {
        width: 32px;
        height: 32px;
    }
}


/* --- Toggle (Vermieten/Verkaufen) Styling --- */
.toggle-group {
  display: flex;
  gap: 10px;
  font-weight: bold;
  justify-content: center; /* mittig */
}

.toggle-group input[type="radio"] {
  display: none;
}

.toggle-group label {
  background-color: var(--bg-light);
  color: #333;
  cursor: pointer;
  padding: 12px 20px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px; /* passt zu modernem Flaggenlook */
  font-size: 1rem;
  transition: all 0.2s ease;
}

body.dark-mode .toggle-group label {
  background-color: #1F133A;
  color: var(--text-dark);
}

.toggle-group input[type="radio"]:checked + label {
  background-color: #7986CB;
  color: #fff;
  border-color: #7986CB;
  transition: all 0.15s ease;
}

body.dark-mode .toggle-group input[type="radio"]:checked + label {
  background-color: #5C6BC0;
  color: #fff;
  border-color: #5C6BC0;
}

.toggle-group label:hover {
  background-color: rgb(240, 240, 240);
  box-shadow: 0 0 5px rgba(17, 43, 189, 0.9);
}

body.dark-mode .toggle-group label:hover {
  background-color: #3a256e;
  border-color: #6200ea;
  box-shadow: 0 0 5px rgba(98, 0, 234, 0.9);
}



/* ==========================================
   ================= PAYMENT =================
   ========================================== */

/* ------------------------------------------
   Preis-Karten Container – min-width + responsive
   ------------------------------------------ */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Mindestbreite 350px */
  gap: 40px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}

/* ------------------------------------------
   (iPhone 4 / < 400px)
   ------------------------------------------ */
@media (max-width: 400px) {
  .pricing-container {
    grid-template-columns: 1fr; /* Nur eine Card pro Reihe */
    gap: 16px;
    padding: 0 12px; /* kleine Padding, damit es in den Bildschirm passt */
  }

  .pricing-card {
    min-width: auto; /* Mindestbreite auflösen */
    padding: 16px 12px; /* kompaktere Karte */
  }

  .pricing-card .price-int {
    font-size: 28px; /* kleinere Zahl */
  }

  .pricing-card .price-dec {
    font-size: 14px;
    right: 10px;
  }

  .pricing-card h3 {
    font-size: 18px;
  }

  .pricing-card .discount-badge {
    top: 120px;
    right: 12px;
    font-size: 14px;
  }

  .pricing-card ul.features li {
    min-width: 100px; /* kleinere Feature-Items */
  }

  .pricing-card .buy-btn {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* ------------------------------------------
   Einzelne Karten – Container für Preis & Features
   ------------------------------------------ */
.pricing-card {
  position: relative; 
  border: 2px solid #d1d5db;
  border-radius: 20px;
  padding: 30px 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05); 
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid #8964ef; 
  background: linear-gradient(145deg, #eef2ff, #ffffff); 
}

/* ------------------------------------------
   Titel der Preis-Karten
   ------------------------------------------ */
.pricing-card h3 {
  margin: 0 0 6px 0;
  font-size: 24px;         
  font-weight: 550;        
  color: #111827;          
  letter-spacing: 0.2px;    
  line-height: 1.4;     
  align-self: center;       
  text-align: center;      
  width: 100%;         
}

/* ------------------------------------------
   Feature-Liste innerhalb der Karte mit Lucide Icons
------------------------------------------ */
.pricing-card ul.features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

.pricing-card ul.features li {
  margin: 8px 0;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: #374151; /* Textfarbe */
  display: flex;
  align-items: center;
}

.pricing-card ul.features li svg {
  stroke: #10b981; /* Icon-Farbe */
  stroke-width: 3;
  width: 24px;      /* Breite */
  height: 24px;     /* Höhe */
  margin-right: 8px; /* Abstand zum Text */
  flex-shrink: 0;   /* Icon wird nicht kleiner */
}

/* ------------------------------------------
   Wrapper für die gesamte Preis-Darstellung innerhalb der Karte
   ------------------------------------------ */
.pricing-card .price-wrapper {
  text-align: center;
  margin: 12px 0;
}

.pricing-card .price-line {
  display: flex;
  justify-content: left;
  align-items: flex-end;
  gap: 4px;
  font-weight: 600;
  margin-top: 10px;
  position: relative;
}

.pricing-card .price-int {
  font-size: 45px;
  line-height: 0.8;
  color: #04884f;
}

.pricing-card .price-dec {
  font-size: 20px;
  line-height: 1;
  position: absolute;      
  top: 0px;            
  right: 23px;
  color: #04884f;          
}

.pricing-card .per-month {
  font-size: 14px;
  line-height: 1;
  margin-left: 5px;
  color: var(--text-light);
}

.pricing-card .discount-badge {
  position: absolute;  
  top: 345px;          
  right: 30px;          
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background: var(--button-filter-light);        
  padding: 4px 10px;
  border-radius: 6px;    
  white-space: nowrap;
}

.pricing-card .old-price {
  font-size: 18px;              
  color: var(--text-light);     
  position: relative;           
  margin-top: 5px;              
  margin-left: 0px;             
  display: inline-block;
  font-weight: 550;        
}

.pricing-card .old-price-value {
  position: relative;
  display: inline-block;
  color: var(--text-light);
}

.pricing-card .old-price-value::after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 19%;
  width: 100%;
  height: 2px;                  
  background-color: #e53935;    
  transform: rotate(-8deg);    
  transform-origin: left bottom;  
  pointer-events: none;
}


.mwst-hinweis {
    font-size: 11px;
    line-height: 1;
    margin-left: 5px;
    color: var(--text-light);
}