/*
  dvag-vermieter.css
  Page-specific styles for dvag-vermieter.html
  All classes are prefixed with .dvag- to avoid conflicts with global styles.
*/

/* =====================================================
   GESPRÄCHSANKER / BERATER-HINWEIS BOX
   ===================================================== */

.dvag-berater-hint {
  border-left: 3px solid #00ddcc;
  background: rgba(0, 221, 204, 0.07);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-top: 24px;
}

.dvag-berater-hint__label {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ddcc;
  margin-bottom: 5px;
}

.dvag-berater-hint p {
  margin: 0;
  font-style: italic;
  font-size: 0.93rem;
  opacity: 0.9;
}

/* Dark-background context: lighter text */
.dark-background .dvag-berater-hint {
  background: rgba(0, 221, 204, 0.09);
  color: #fff;
}

.light-background .dvag-berater-hint {
  background: rgba(0, 221, 204, 0.08);
  color: #031926;
}

.light-background .dvag-berater-hint p {
  color: #031926;
  opacity: 0.8;
}

/* =====================================================
   PROZESS-SCHRITTE (5-Schritt-Erklärung)
   ===================================================== */

.dvag-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .dvag-process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .dvag-process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.dvag-process-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  background: rgba(5, 42, 61, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  position: relative;
}

.dvag-process-step__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #00ddcc;
  color: #031926;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dvag-process-step__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.dvag-process-step__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.5;
}

/* =====================================================
   HIGHLIGHT-CLAIM (großes hervorgehobenes Zitat)
   ===================================================== */

.dvag-highlight-claim {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #00ddcc;
  line-height: 1.4;
  border-left: 4px solid #00ddcc;
  padding: 12px 20px;
  margin: 28px 0 0;
  font-style: normal;
}

/* =====================================================
   EINSATZBEREICHE GRID
   ===================================================== */

.dvag-einsatz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .dvag-einsatz-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.dvag-einsatz-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dvag-einsatz-item i {
  color: #00ddcc;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* =====================================================
   CHECKLISTE (Gesprächsmodul & Objektcheck)
   ===================================================== */

.dvag-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dvag-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.93rem;
  line-height: 1.45;
  background: rgba(5, 42, 61, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dvag-checklist-item:hover {
  background: rgba(5, 42, 61, 0.85);
  border-color: rgba(0, 221, 204, 0.2);
}

.dvag-checklist-item__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #00ddcc;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.dvag-checklist-item__icon i {
  font-size: 0.7rem;
  color: #00ddcc;
}

.dvag-checklist-item__text {
  color: rgba(255, 255, 255, 0.88);
}

/* Light-background variant */
.light-background .dvag-checklist-item {
  background: rgba(3, 25, 38, 0.06);
  border-color: rgba(3, 25, 38, 0.1);
  color: #031926;
}

.light-background .dvag-checklist-item:hover {
  background: rgba(3, 25, 38, 0.1);
  border-color: rgba(0, 221, 204, 0.4);
}

.light-background .dvag-checklist-item__text {
  color: #031926;
}

/* =====================================================
   DVAG-BERATER-SEKTION ("60-Sekunden-Erklärung")
   ===================================================== */

.dvag-berater-section {
  background: rgba(0, 221, 204, 0.08);
  border: 1px solid rgba(0, 221, 204, 0.2);
  border-radius: 16px;
  padding: 30px 36px;
  margin-bottom: 32px;
}

.dvag-berater-section p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.dvag-einstiegsfragen {
  counter-reset: frage;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dvag-einstiegsfrage {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(5, 42, 61, 0.6);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.87);
  line-height: 1.5;
}

.dvag-einstiegsfrage::before {
  counter-increment: frage;
  content: counter(frage);
  min-width: 30px;
  height: 30px;
  background: #00ddcc;
  color: #031926;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* =====================================================
   PARTNER-INFO
   ===================================================== */

.dvag-partner-info {
  background: rgba(5, 42, 61, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.dvag-partner-info__icon {
  font-size: 2rem;
  color: #00ddcc;
  flex-shrink: 0;
  margin-top: 2px;
}

.dvag-partner-info__name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 4px;
}

.dvag-partner-info__detail {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* =====================================================
   PAKET-CARDS (3 Pakete)
   ===================================================== */

.dvag-paket-card {
  background: rgba(5, 42, 61, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.dvag-paket-card:hover {
  border-color: rgba(0, 221, 204, 0.3);
  background: rgba(5, 42, 61, 0.9);
}

.dvag-paket-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00ddcc;
  margin-bottom: 10px;
}

.dvag-paket-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.dvag-paket-card__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* =====================================================
   HERO-ERGÄNZUNGEN (Kooperations-Badge)
   ===================================================== */

.dvag-hero-koop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 221, 204, 0.1);
  border: 1px solid rgba(0, 221, 204, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: #00ddcc;
  margin-bottom: 20px;
  font-weight: 500;
}

.dvag-hero-koop-badge i {
  font-size: 0.85rem;
}

/* =====================================================
   CTA-BUTTON OUTLINE VARIANTE
   Handled globally in idoone-theme.css for .index-page
   ===================================================== */

/* =====================================================
   CTA-CARD STANDALONE FIX
   .cta-card hat global height:100% (für Swiper/Grid).
   Standalone-Einsatz außerhalb eines Swipers braucht auto.
   ===================================================== */

#dvag-bruecke .cta-card,
#abschluss .cta-card {
  height: auto;
}

/* =====================================================
   RESPONSIVE ANPASSUNGEN FÜR TABLET-MODUS
   ===================================================== */

@media (min-width: 768px) and (max-width: 1199px) {
  .dvag-berater-section {
    padding: 24px 28px;
  }

  .dvag-process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .dvag-berater-section {
    padding: 20px 20px;
  }

  .dvag-einstiegsfrage {
    font-size: 0.88rem;
  }

  .dvag-partner-info {
    flex-direction: column;
    padding: 20px;
  }

  .btn-ss-book--outline {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* =====================================================
   FIX: Lesbarkeit auf I.DO.ONE Dark-Gradient
   -----------------------------------------------------
   idoone-theme.css setzt .light-background bewusst auf
   background-color: transparent !important, damit der
   dunkle I.DO.ONE-Gradient auf allen Sektionen sichtbar
   bleibt. DVAG-spezifische Elemente dürfen in
   .light-background daher keine dunklen Schriftfarben
   (#031926) verwenden – der Hintergrund ist nie hell.

   Ausgenommen bleiben Elemente auf mintfarbenen Kreisen:
   - .dvag-process-step__num   { color: #031926 } ✓
   - .dvag-einstiegsfrage::before { color: #031926 } ✓
   ===================================================== */

.light-background .dvag-berater-hint,
.light-background .dvag-berater-hint p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.light-background .dvag-berater-hint {
  background: rgba(0, 221, 204, 0.09) !important;
}

.light-background .dvag-checklist-item {
  background: rgba(5, 42, 61, 0.55) !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.light-background .dvag-checklist-item:hover {
  background: rgba(5, 42, 61, 0.85) !important;
  border-color: rgba(0, 221, 204, 0.2) !important;
}

.light-background .dvag-checklist-item__text {
  color: rgba(255, 255, 255, 0.88) !important;
}
