/* ============================================
   GARANTIE.CSS — Styles für garantie.html
   
   Hero + 3-Spalten + Coverage-Boxen + Ablauf
   Inline-SVG-Icons
   ============================================ */

/* ============================================
   HERO (kompakt)
   ============================================ */

.gar-hero {
  position: relative;
  background: linear-gradient(135deg, #1a83a4 0%, #2BC4D8 100%);
  color: #fff;
  padding: 130px 0 70px 0;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gar-hero {
    padding: 110px 0 50px 0;
  }
}

.gar-hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gar-hero__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-transform: uppercase;
}

.gar-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}

.gar-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.gar-hero__subtitle strong {
  color: #fff;
  font-weight: 700;
}

/* ============================================
   SECTIONS
   ============================================ */

.gar-section {
  padding: 4rem 0;
  background: #fff;
}

.gar-section--alt {
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .gar-section {
    padding: 2.5rem 0;
  }
}

.gar-section-header {
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.gar-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.gar-section-subtitle {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   3-SPALTEN ÜBERSICHT
   ============================================ */

.gar-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .gar-3col {
    grid-template-columns: 1fr;
  }
}

.gar-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.2s;
}

.gar-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 131, 164, 0.12);
  border-color: #2BC4D8;
}

.gar-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1a83a4 0%, #2BC4D8 100%);
  border-radius: 50%;
  margin: 0 auto 1.25rem auto;
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 131, 164, 0.3);
}

.gar-feature__icon svg {
  width: 28px;
  height: 28px;
}

.gar-feature__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.gar-feature__text {
  color: #495057;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.gar-feature__text strong {
  color: #1a83a4;
  font-weight: 600;
}

/* ============================================
   COVERAGE (Abgedeckt / Nicht abgedeckt)
   ============================================ */

.gar-coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gar-coverage {
    grid-template-columns: 1fr;
  }
}

.coverage-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 2px solid;
}

.coverage-box.covered {
  border-color: #d4f0d4;
  background: linear-gradient(180deg, #f0faf0 0%, #fff 100%);
}

.coverage-box.not-covered {
  border-color: #f8d7da;
  background: linear-gradient(180deg, #fdf2f2 0%, #fff 100%);
}

.coverage-box__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coverage-box.covered .coverage-box__title {
  color: #2d6a4f;
}

.coverage-box.not-covered .coverage-box__title {
  color: #842029;
}

.coverage-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coverage-box__list li {
  padding: 0.55rem 0 0.55rem 1.75rem;
  position: relative;
  color: #495057;
  line-height: 1.5;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.coverage-box__list li:last-child {
  border-bottom: none;
}

.coverage-box.covered .coverage-box__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d6a4f;
  font-weight: 700;
  font-size: 1.1rem;
}

.coverage-box.not-covered .coverage-box__list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #842029;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   ABLAUF (3 Steps)
   ============================================ */

.gar-ablauf {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .gar-ablauf {
    grid-template-columns: 1fr;
  }
}

.gar-step {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  text-align: center;
  transition: all 0.2s;
}

.gar-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 131, 164, 0.12);
  border-color: #2BC4D8;
}

.gar-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a83a4 0%, #2BC4D8 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 12px rgba(26, 131, 164, 0.3);
}

.gar-step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.gar-step__text {
  color: #495057;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.gar-step__text strong {
  color: #2c3e50;
  font-weight: 600;
}

/* ============================================
   CTA BLOCK
   ============================================ */

.gar-cta {
  background: linear-gradient(135deg, #1a83a4 0%, #2BC4D8 100%);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gar-cta {
    padding: 2rem 1.5rem;
  }
}

.gar-cta__title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.gar-cta__text {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.gar-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.gar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.gar-btn--primary {
  background: #fff;
  color: #1a83a4;
}

.gar-btn--primary:hover {
  background: #f0fbfc;
  color: #1a83a4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gar-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.gar-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .gar-cta__buttons {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .gar-btn {
    width: 100%;
    justify-content: center;
  }
}

