/* =========================================================
   vorteile.css
   Zusätzliche Styles ausschließlich für invarexo-vorteile.html
   Ergänzt top.css / nav.css / hero.css / footer.css,
   verändert diese nicht.
   ========================================================= */

:root {
  --vt-accent: #1a6ce0;
  --vt-accent-dark: #0f4fb0;
  --vt-border-dark: #0d2b66;
  --vt-ink: #101828;
  --vt-ink-soft: #475467;
  --vt-line: #e4e7ec;
  --vt-bg-soft: #f7f9fc;
  --vt-dark-bg: #0f172a;
  --vt-dark-line: #253147;
  --vt-radius: 14px;
}

/* ---------- Seiten-Intro (kein großer Bild-Hero, sondern schmales Eyebrow-Banner) ---------- */
.vt-intro {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--vt-line);
  background: linear-gradient(180deg, var(--vt-bg-soft) 0%, #ffffff 100%);
  text-align: center;
}

.vt-intro .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--vt-accent-dark);
  background: rgba(26, 108, 224, 0.08);
  border: 1px solid rgba(26, 108, 224, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 auto 18px;
}

.vt-intro h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 auto 18px;
  color: var(--vt-ink);
  max-width: 720px;
}

.vt-intro .vt-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--vt-ink-soft);
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- Vorteils-Liste (5 Kernvorteile) ---------- */
.vt-benefits {
  padding: 64px 0;
}

.vt-benefits .section-head {
  margin-bottom: 40px;
}

.vt-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vt-benefit-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 2px solid var(--vt-border-dark);
  border-radius: var(--vt-radius);
  background: #fff;
  transition: box-shadow .15s ease, transform .15s ease;
}

.vt-benefit-item:hover {
  box-shadow: 0 8px 24px rgba(13, 43, 102, 0.18);
  transform: translateY(-2px);
}

.vt-benefit-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--vt-border-dark);
  background: rgba(13, 43, 102, 0.06);
  color: var(--vt-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 8px;
  overflow: hidden;
}

.vt-benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vt-benefit-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--vt-ink);
}

.vt-benefit-item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--vt-ink-soft);
}

.vt-benefit-item.wide {
  grid-column: 1 / -1;
}

/* ---------- Vergleich Invarexo vs. klassische Cloud-Lösung ---------- */
.vt-compare {
  padding: 64px 0;
  background: var(--vt-bg-soft);
}

.vt-compare-wrap {
  overflow-x: auto;
  border: 2px solid var(--vt-border-dark);
  border-radius: var(--vt-radius);
  background: #fff;
}

.vt-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 14.5px;
}

.vt-compare-table th,
.vt-compare-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--vt-line);
}

.vt-compare-table thead th {
  background: #fbfcfe;
  color: var(--vt-ink);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.vt-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.vt-compare-table td:first-child {
  color: var(--vt-ink-soft);
  font-weight: 500;
  white-space: nowrap;
}

.vt-yes {
  color: #0a8a4b;
  font-weight: 600;
}

.vt-no {
  color: #8a8f98;
}

/* ---------- Statistik-Grid ---------- */
.vt-stats {
  padding: 60px 0;
  background: var(--vt-dark-bg);
}

.vt-stats .section-head h2,
.vt-stats .section-head p {
  color: #fff;
}

.vt-stats .section-head p {
  color: #c3cbdb;
}

.vt-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.vt-stat-card {
  border: 2px solid #3b6fd9;
  border-radius: var(--vt-radius);
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.03);
}

.vt-stat-number {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.vt-stat-label {
  font-size: 13.5px;
  color: #a7b1c6;
  line-height: 1.5;
}

/* ---------- Zusätzlicher Text-Block mit dunkelblauem Rahmen ---------- */
.vt-note-box {
  margin-top: 24px;
  padding: 20px 24px;
  border: 2px solid var(--vt-border-dark);
  border-radius: var(--vt-radius);
  background: #fff;
  color: var(--vt-ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 760px;
}

.vt-note-box.on-dark {
  background: rgba(255, 255, 255, 0.03);
  border-color: #3b6fd9;
  color: #dbe3f5;
}

/* ---------- CTA-Banner ---------- */
.vt-cta {
  padding: 64px 0 80px;
}

.vt-cta-box {
  border-radius: 20px;
  background: linear-gradient(135deg, var(--vt-accent) 0%, var(--vt-accent-dark) 100%);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.vt-cta-box h2 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 8px;
}

.vt-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.6;
}

.vt-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vt-cta-actions .btn.primary {
  background: #fff;
  color: var(--vt-accent-dark);
}

.vt-cta-actions .btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .vt-benefit-list {
    grid-template-columns: 1fr;
  }

  .vt-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vt-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .vt-stat-grid {
    grid-template-columns: 1fr;
  }
}
