.elementor-165 .elementor-element.elementor-element-6e3ca04{--display:flex;}.elementor-165 .elementor-element.elementor-element-ae26c9d{width:100%;max-width:100%;}.elementor-165 .elementor-element.elementor-element-ae26c9d > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-ae26c9d *//* style.css */
:root {
  --bg: #f7f9fa;
  --text: #212529;
  --accent: #0069d9;
  --light: #ffffff;
  --primary: #0069d9;
  --bg: #ffffff;
  --bot-bg: #f5f5f5;
  --user-bg: #e0e0e0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

b{
    font-weight: 500;
    text-decoration: underline !important;
}

c{
    font-weight: 500;
    text-decoration: underline !important;
    font-size: 13px;
}

h3{
    font-size: 22px !important;
    font-weight: 500;}
    
p{
    font-size: 16px;

}


.w-40 { width: 40%!important; }
.w-10 { width: 10%!important; text-align: center; }



/* Toggle-Button */
#chatToggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 10001;
}
#chatToggle:hover {
  transform: scale(1.1);
}

/* Chat-Pane */
#chatPane {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 360px;
  max-height: 500px;
  background: var(--bg);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(400px);
  transition: transform 0.4s ease-in-out;
  z-index: 10000;
}
#chatPane.open {
  transform: translateX(0);
}

/* Header */
#chatHeader {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#chatHeader button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Messages */
#chatMessages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
}
.chat-message {
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}
.chat-message.bot {
  text-align: left;
}
.chat-message.user {
  text-align: right;    /* Bubble stays on right */
}
.bubble {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 18px;
  max-width: 75%;
  line-height: 1.4;
}
.chat-message.bot .bubble {
  background: var(--bot-bg);
  border-top-left-radius: 4px;
}
.chat-message.user .bubble {
  background: var(--user-bg);
  border-top-right-radius: 4px;
  text-align: left;      /* Text inside bubble is left-aligned */
  padding-left: 12px;    /* Optional inner padding */
}

/* Typing Indicator */
.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
}
.typing-dot {
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  animation: blink 1s infinite ease-in-out both;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Input */
#chatInputWrapper {
  display: flex;
  border-top: 1px solid #ddd;
}
#chatInput {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 1rem;
}
#chatInput:focus {
  outline: none;
}
#chatSend {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 16px;
  cursor: pointer;
}





.verification-badge {
  max-height: 4rem;
  height: auto;
}






/* Call-to-Action Button Animation */
.cta-button {
  padding: 1rem 2rem;
  font-size: 1.015rem !important;
  border-radius: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
  margin-bottom: 5%;
}


.cta-button {
  padding: 1rem 2rem;
  font-size: 1.125rem !important;
  border-radius: 2rem;
  /* langsamerer, sanfterer Übergang */
  transition: transform 1.6s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 1.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.cta-button:hover {
  /* dezentes Schrumpfen */
  transform: scale(0.95);
  box-shadow: 0 6px 16px rgba(0, 105, 217, 0.3);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}








.col-md-6 {
    padding-left: 20px !important;
  text-align: left;
  line-height: 1.6; /* 1.6-fache Zeilenhöhe */
}



.faq-toggle {
  color: var(--accent);         /* Link-Farbe passend zur CI */
  text-decoration: underline !important;    /* Unterstrichen */
  padding-left: 10px;
  padding-top: 10px;
  cursor: pointer;
  font-weight: 500;
}





.hero {
  position: relative; /* für das absolute Bild */
  overflow: hidden;   /* falls es über den Container hinausgeht */
}

.hero-decor {
  position: absolute;
  top: 90%;
  right: 0;
  transform: translateY(-50%);
  width: 40%;         /* skaliere nach Bedarf */
  max-width: 300px;   /* Grenze für sehr große Bildschirme */
  opacity: 0.2;       /* leicht transparent, damit Text bleibt im Fokus */
  z-index: 0;         /* hinter dem Text */
  
}

/* Stelle sicher, dass dein Text über dem Bild liegt */
.hero > *:not(.hero-decor) {
  position: relative;
  z-index: 1;
}








.header-divider {
  width: 90%;                /* Länge des Strichs */
  height: 1px;                /* Dicke */
  background-color: #e0e0e0;  /* hellgrau */
  margin: 1.5rem auto;        /* Abstand oben/unten, zentriert */
  border-radius: 1px;         /* etwas abgerundete Enden */
  opacity: 0.75;
}


.header {
  background: white;
  padding: 1rem ;
  padding-bottom: 3rem;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.btn-signup{
    font-size: 26px !important;
}



.btn-primary {
  background: var(--accent);
  color: var(--light);
}
.btn-primary:hover {
  opacity: 0.9;
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--light);
}
.hero {
  text-align: center;
  padding: 4rem 0;
}
.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.hero-buttons a + a {
  margin-left: 1rem;
}

.footer {
  background: var(--light);
  padding: 2rem 0;
  text-align: center;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}





/* Mobile: Stapel-Layout */

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary{
    margin-bottom: 6vw;
        text-align: center;
}

.btn-secondary{
    margin-bottom: 3vw;
    text-align: center;
}


}/* End custom CSS */