/* ===========================
   DeLux Finanz Landingpage CSS
   =========================== */

/* LP Hero */
.lp-main {
  padding-top: 3.2rem;
}

.lp-hero {
  background-color: #1d2d54;
  padding: 60px 10% 60px 10%;
}

.lp-hero-inner {
  max-width: 800px;
}

.lp-hero h1 {
  color: white;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}

.lp-hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.lp-cta-btn {
  display: inline-block;
  background-color: #e97603;
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}

.lp-cta-btn:hover {
  background-color: #c96200;
}

/* LP Content */
.lp-content {
  background-color: white;
}

.lp-content-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5%;
}

.lp-section {
  padding: 50px 0;
  border-bottom: 1px solid #edeef1;
}

.lp-section:last-of-type {
  border-bottom: none;
}

.lp-section-alt {
  background-color: transparent;
}

.lp-section h2 {
  color: #1d2d54;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lp-section p {
  color: #1d2d54;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1rem;
}

.lp-section p:last-child {
  margin-bottom: 0;
}

.lp-section a {
  color: #e97603;
  text-decoration: none;
  font-weight: bold;
}

.lp-section a:hover {
  text-decoration: underline;
}

/* FAQ Sektion */
.lp-faq-section {
  padding: 50px 0;
}

.lp-faq-section h2 {
  color: #1d2d54;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.lp-faq-item {
  border-bottom: 1px solid #edeef1;
  padding: 0;
  margin-bottom: 0;
}

.lp-faq-item summary {
  font-weight: bold;
  color: #1d2d54;
  font-size: 1rem;
  cursor: pointer;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #e97603;
  font-weight: normal;
  flex-shrink: 0;
  margin-left: 16px;
}

.lp-faq-item[open] summary::after {
  content: '-';
}

.lp-faq-item summary:hover {
  color: #e97603;
}

.faq-answer {
  padding-bottom: 18px;
}

.faq-answer p {
  color: #1d2d54;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Kontaktformular */
.lp-contact-section {
  background-color: #1d2d54;
  border-radius: 40px 40px 0 0;
  padding: 50px 10%;
  margin: 0 -5%;
}

.lp-contact-section h2 {
  color: white;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lp-contact-intro {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 36px;
}

.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.lp-form {
  display: grid;
  gap: 0;
}

.lp-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.lp-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.lp-form-group-full {
  grid-column: 1 / -1;
}

.lp-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.lp-input {
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  background-color: rgba(255,255,255,0.08);
  color: white;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: 'prompt', sans-serif;
  transition: border-color 0.2s;
}

.lp-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.lp-input:focus {
  outline: none;
  border-bottom-color: #e97603;
}

.lp-textarea {
  min-height: 120px;
  resize: vertical;
}

.lp-form-checkbox {
  margin-top: 6px;
}

.lp-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lp-checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: #e97603;
  width: 16px;
  height: 16px;
}

.lp-checkbox-label a {
  color: #e97603;
  text-decoration: none;
}

.lp-checkbox-label a:hover {
  text-decoration: underline;
}

.lp-submit-btn {
  background-color: white;
  color: #1d2d54;
  border: none;
  border-radius: 50px;
  height: 50px;
  padding: 0 32px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 20px;
  font-family: 'prompt', sans-serif;
  transition: background-color 0.2s ease;
}

.lp-submit-btn:hover {
  background-color: #e97603;
  color: white;
}

/* Kontaktinfo Sidebar */
.lp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-contact-info-item strong {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.lp-contact-info-item a,
.lp-contact-info-item span {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
}

.lp-contact-info-item a:hover {
  color: #e97603;
}

.lp-termin-btn {
  display: inline-block;
  background-color: #e97603;
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 8px;
  transition: background-color 0.2s ease;
}

.lp-termin-btn:hover {
  background-color: #c96200;
}

/* Desktop ab 992px */
@media only screen and (min-width: 992px) {

  .lp-main {
    padding-top: 3.2rem;
  }

  .lp-hero {
    padding: 80px 10% 80px 10%;
    min-height: 50vh;
    display: flex;
    align-items: center;
  }

  .lp-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 24px;
  }

  .lp-hero-sub {
    font-size: 1.15rem;
    max-width: 620px;
  }

  .lp-content-inner {
    padding: 0 0;
    max-width: 860px;
    margin: 0 auto;
  }

  .lp-section {
    padding: 60px 10%;
  }

  .lp-section h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .lp-faq-section {
    padding: 60px 10%;
  }

  .lp-faq-section h2 {
    font-size: 1.8rem;
  }

  .lp-contact-section {
    padding: 60px 10%;
    margin: 0;
  }

  .lp-contact-section h2 {
    font-size: 1.8rem;
  }

  .lp-contact-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
  }

  .lp-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* LP Hero: Zwei-Spalten Layout mit Moritz-Foto */
.lp-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lp-hero-left {
  position: relative;
  z-index: 1;
}

.lp-hero-right {
  display: none;
}

.lp-hero-name {
  color: #e97603;
  text-transform: uppercase;
  font-size: 2rem;
  font-family: 'prompt-bold', sans-serif;
  line-height: 1.1;
  margin: 0;
}

.lp-hero-img {
  display: block;
  max-width: 260px;
  margin: 1rem auto 0;
}

@media only screen and (min-width: 992px) {
  .lp-hero {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 55vh;
    padding-bottom: 0;
  }

  .lp-hero-left {
    flex: 1;
    max-width: 55%;
    padding-bottom: 60px;
  }

  .lp-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    flex: 0 0 auto;
    width: 38%;
    position: relative;
    align-self: flex-end;
  }

  .lp-hero-name {
    font-size: 3rem;
    position: absolute;
    bottom: 0;
    left: 1rem;
    z-index: 2;
  }

  .lp-hero-img {
    max-width: 320px;
    max-height: 460px;
    object-fit: contain;
    object-position: bottom;
    display: block;
    margin: 0 0 0 auto;
  }
}
