/* ==========================================
   FESTGELD-ANGEBOTE.DE – ANGEBOT PAGE CSS
   ========================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.65;
}

a { color: #1a5fa8; text-decoration: underline; }
a:hover { color: #0d3d70; }

/* ---- SHARED LAYOUT ---- */
.fa-section-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   HEADER
   ========================================== */
.fa-header {
  background: #fff;
  border-bottom: 1px solid #e5e9f0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.fa-header-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Logo */
.fa-logo-link { text-decoration: none; }
.fa-logo-main {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #1e2d40;
  letter-spacing: -0.3px;
}
.fa-logo-dot { color: #1a5fa8; }
.fa-logo-claim {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 1px;
}

/* Badges */
.fa-header-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hbadge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #444;
}
.hbadge-flag { font-size: 20px; }
.hbadge-icon { font-size: 18px; }
.hbadge-icon .fa-google { color: #4285F4; }
.hbadge-info { display: flex; flex-direction: column; }
.hbadge-stars { color: #f5a623; font-size: 13px; line-height: 1.1; }
.hbadge-label { font-size: 10.5px; color: #555; line-height: 1.4; }
.hbadge-label strong { font-size: 11px; color: #222; }
.tp-logo-badge {
  background: #00b67a;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 3px 6px;
  border-radius: 3px;
}
.tp-stars { color: #00b67a; }

/* Trust bar */
.fa-trust-bar {
  background: #1a5fa8;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 20px;
  font-size: 12.5px;
  color: #fff;
  font-weight: 500;
  flex-wrap: wrap;
}
.fa-trust-bar i { margin-right: 4px; }

/* ==========================================
   HERO SECTION
   ========================================== */
.fa-hero {
  background: #f8fafc;
  padding: 60px 0 60px;
  border-bottom: 1px solid #e5e9f0;
  overflow: visible;
}
.fa-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image col hidden – sticker now inside form card */
.fa-hero-img-col {
  display: none;
}
.fa-hero-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f0f0f0;
}
.fa-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.fa-sticker {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: #1a3a6b;
  color: #fff;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.25);
}
.fa-sticker-text { font-size: 11px; font-weight: 500; opacity: 0.9; }
.fa-sticker-rate {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: underline;
}

/* Sticker Ecke – oben rechts auf der Formkarte */
.fa-sticker-corner {
  position: absolute;
  top: -44px;
  right: -44px;
  background: #1a3a6b;
  color: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
  border: 4px solid #fff;
  z-index: 10;
}
.fa-sticker-corner .fa-sticker-text { font-size: 12px; font-weight: 500; opacity: 0.9; }
.fa-sticker-corner .fa-sticker-rate {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: underline;
}

/* Form card */
.fa-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 40px 30px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.11);
  border: 1px solid #e5e9f0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.fa-form-title {
  font-size: 19px;
  font-weight: 800;
  color: #1e2d40;
  line-height: 1.3;
  margin-bottom: 10px;
}
.fa-form-desc {
  font-size: 13.5px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.6;
}
.fa-form-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
  margin-bottom: 18px;
}
.fa-form-benefits li {
  font-size: 12.5px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fa-form-benefits i { color: #2a9d5c; font-size: 11px; }

/* Form fields */
.fa-form { display: flex; flex-direction: column; gap: 11px; }
.fa-field { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.fa-field-row { display: flex; gap: 12px; }
.fa-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.2px;
}
.fa-input, .fa-select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #d0d5de;
  border-radius: 6px;
  font-size: 13.5px;
  font-family: inherit;
  color: #222;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.fa-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.fa-input:focus, .fa-select:focus {
  border-color: #1a5fa8;
  box-shadow: 0 0 0 3px rgba(26,95,168,0.1);
}
.fa-input.error { border-color: #e53e3e; }

/* Phone */
.fa-phone-wrap {
  display: flex;
  border: 1.5px solid #d0d5de;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.fa-phone-wrap:focus-within { border-color: #1a5fa8; }
.fa-phone-pre {
  background: #f0f3f8;
  padding: 10px 12px;
  font-size: 13px;
  color: #444;
  white-space: nowrap;
  border-right: 1px solid #d0d5de;
}
.fa-phone-input { border: none !important; border-radius: 0 !important; flex: 1; box-shadow: none !important; }
.fa-phone-input:focus { box-shadow: none; }

/* Radio */
.fa-radio-group { display: flex; gap: 20px; padding-top: 2px; }
.fa-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  cursor: pointer;
}
.fa-radio-label input { display: none; }
.fa-radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #1a5fa8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  transition: background 0.15s;
}
.fa-radio-label input:checked + .fa-radio-custom,
.fa-radio-custom.checked-init {
  background: #1a5fa8;
}
.fa-radio-label input:checked + .fa-radio-custom::after,
.fa-radio-custom.checked-init::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* Submit */
.fa-btn-submit {
  background: #1e7d46;
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(30,125,70,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fa-btn-submit:hover { background: #155f34; transform: translateY(-1px); }

.fa-consent {
  font-size: 11px;
  color: #999;
  text-align: center;
}
.fa-consent a { color: #1a5fa8; }
.fa-secure {
  font-size: 11.5px;
  color: #666;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.fa-secure i { color: #2a9d5c; }

/* ==========================================
   BANK LOGOS
   ========================================== */
.fa-banks {
  padding: 28px 0 22px;
  border-bottom: 1px solid #eef0f5;
  text-align: center;
  background: #fff;
}
.fa-banks-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 18px;
}
.fa-banks-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.fa-bank-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 130px;
  background: #fff;
  border-radius: 6px;
}
.fa-bank-logo img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.fa-bank-logo img:hover {
  opacity: 1;
}
/* UBS hat schwarzen Hintergrund → screen blendet schwarz heraus */
.fa-bank-logo--dark {
  background: #fff;
}
.fa-bank-logo--dark img {
  mix-blend-mode: screen;
  opacity: 1;
  background: transparent;
}
.fa-banks-note { font-size: 13px; color: #888; margin-bottom: 4px; }
.fa-banks-foot { font-size: 11px; color: #aaa; }

/* ==========================================
   FEATURE TEASER
   ========================================== */
.fa-teaser {
  padding: 44px 0;
  border-bottom: 1px solid #eef0f5;
}
.fa-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.fa-green-title {
  font-size: 20px;
  font-weight: 800;
  color: #1e2d40;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid #1e7d46;
  display: inline-block;
}
.fa-green-title em {
  color: #1a5fa8;
  font-style: normal;
}
.fa-teaser-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-top: 14px;
}
.fa-teaser-photo {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 240px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.fa-how {
  padding: 48px 0;
  background: #f8fafc;
  border-bottom: 1px solid #eef0f5;
  text-align: center;
}
.fa-how-inner { text-align: center; }
.fa-section-title {
  font-size: 24px;
  font-weight: 800;
  color: #1e2d40;
  margin-bottom: 8px;
}
.fa-section-sub {
  font-size: 13.5px;
  color: #777;
  margin-bottom: 32px;
}
.fa-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fa-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
}
.fa-step-num {
  width: 52px;
  height: 52px;
  background: #1a3a6b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(26,58,107,0.3);
}
.fa-step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #1e2d40; }
.fa-step p { font-size: 13px; color: #666; line-height: 1.55; }
.fa-step-arrow {
  font-size: 28px;
  color: #ccc;
  padding-top: 18px;
  flex-shrink: 0;
}

/* ==========================================
   VORTEILE
   ========================================== */
.fa-vorteile {
  padding: 48px 0;
  border-bottom: 1px solid #eef0f5;
}
.fa-vorteile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.fa-vorteile-left p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
  margin-top: 14px;
}
.fa-vorteil-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.fa-check-icon { color: #2a9d5c; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.fa-vorteil-item strong { display: block; font-size: 14.5px; margin-bottom: 3px; color: #1e2d40; }
.fa-vorteil-item p { font-size: 13px; color: #666; }

/* ==========================================
   CHART SECTION
   ========================================== */
.fa-chart-section {
  padding: 48px 0;
  background: #f8fafc;
  border-bottom: 1px solid #eef0f5;
}
.fa-chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.fa-chart-wrap { min-height: 240px; }
#faChart { max-height: 260px; }
.fa-chart-text p { font-size: 13.5px; color: #555; line-height: 1.7; margin-top: 12px; }

/* ==========================================
   TEAM
   ========================================== */
.fa-team {
  padding: 48px 0;
  border-bottom: 1px solid #eef0f5;
}
.fa-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.fa-team-text p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
  margin-top: 14px;
}
.fa-team-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 260px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ==========================================
   CALCULATOR CARDS
   ========================================== */
.fa-calc {
  padding: 52px 0;
  text-align: center;
  border-bottom: 1px solid #eef0f5;
}
.fa-calc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.fa-calc-card {
  border: 1.5px solid #e0e4ec;
  border-radius: 10px;
  padding: 26px 20px 22px;
  text-align: center;
  position: relative;
  background: #fff;
  transition: box-shadow 0.2s;
}
.fa-calc-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.fa-calc-featured {
  border-color: #1a5fa8;
  box-shadow: 0 6px 22px rgba(26,95,168,0.13);
}
.fa-calc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a5fa8;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.fa-calc-amount { font-size: 22px; font-weight: 800; color: #1e2d40; margin-bottom: 5px; }
.fa-calc-meta { font-size: 13px; color: #888; margin-bottom: 12px; }
.fa-calc-earn { font-size: 20px; font-weight: 800; color: #1e7d46; margin-bottom: 5px; }
.fa-calc-total { font-size: 13px; color: #555; margin-bottom: 18px; }
.fa-btn-calc {
  display: block;
  background: #1e7d46;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: background 0.2s;
  text-decoration: none;
  text-align: center;
}
.fa-btn-calc:hover { background: #155f34; color: #fff; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.fa-testimonials {
  padding: 52px 0;
  background: #f8fafc;
  border-bottom: 1px solid #eef0f5;
  text-align: center;
}
.fa-slider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.fa-slides-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 160px;
}
.fa-slide {
  display: none;
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  padding: 24px 26px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.fa-slide.active { display: block; }
.fa-slide-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.fa-avatar {
  width: 46px;
  height: 46px;
  background: #1a5fa8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
  flex-shrink: 0;
}
.fa-slide-head strong { font-size: 15px; display: block; }
.fa-slide-head p { font-size: 12px; color: #888; margin-top: 1px; }
.fa-stars { color: #f5a623; font-size: 15px; }
.fa-slide-text { font-size: 14px; color: #444; font-style: italic; line-height: 1.65; }

.fa-slider-btn {
  background: #fff;
  border: 1.5px solid #d0d5de;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
.fa-slider-btn:hover { border-color: #1a5fa8; color: #1a5fa8; }

.fa-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.fa-dot {
  width: 10px;
  height: 10px;
  background: #d0d5de;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.fa-dot.active { background: #1a5fa8; }

/* ==========================================
   CTA MID BLOCK
   ========================================== */
.fa-cta-mid {
  background: linear-gradient(135deg, #1a3a6b 0%, #1e7d46 100%);
  padding: 44px 0;
}
.fa-cta-mid-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.fa-cta-mid-text h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.fa-cta-mid-text p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }

/* ==========================================
   GLOBAL CTA BUTTON
   ========================================== */
.fa-btn-cta {
  display: inline-block;
  background: #1e7d46;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 7px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(30,125,70,0.3);
  white-space: nowrap;
  font-family: inherit;
}
.fa-btn-cta:hover { background: #155f34; transform: translateY(-1px); color: #fff; }
.fa-cta-mid .fa-btn-cta {
  background: #fff;
  color: #1e2d40 !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.fa-cta-mid .fa-btn-cta:hover { background: #f0f4f8; }

/* ==========================================
   FAQ
   ========================================== */
.fa-faq {
  padding: 52px 0 40px;
  text-align: center;
}
.fa-faq-list {
  margin: 0 auto;
  max-width: 760px;
  text-align: left;
  margin-top: 8px;
}
.fa-faq-item { border-bottom: 1px solid #eef0f5; }
.fa-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14.5px;
  color: #1e2d40;
  padding: 15px 4px;
  gap: 12px;
  transition: color 0.15s;
}
.fa-faq-q:hover { color: #1a5fa8; }
.fa-faq-icon { color: #1a5fa8; flex-shrink: 0; transition: transform 0.2s; font-size: 13px; }
.fa-faq-q.open .fa-faq-icon { transform: rotate(180deg); }
.fa-faq-a {
  display: none;
  font-size: 13.5px;
  color: #1a5fa8;
  line-height: 1.7;
  padding: 2px 4px 16px;
}
.fa-faq-a.open { display: block; }
.fa-faq-cta { margin-top: 30px; text-align: center; }

/* ==========================================
   FOOTER
   ========================================== */
.fa-footer {
  background: #1e2d40;
  padding: 36px 0 24px;
}
.fa-footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.fa-footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fa-footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.fa-footer-col p { font-size: 12.5px; color: #8a9dae; line-height: 1.7; }
.links-col ul { list-style: none; }
.links-col li { margin-bottom: 7px; }
.links-col a { color: #4db8e8; font-size: 13px; text-decoration: underline; }
.links-col a:hover { color: #7fd4f4; }
.fa-footer-risk h4 { color: #aabdd0; font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.fa-footer-risk p { font-size: 11.5px; color: #6d8293; line-height: 1.75; margin-bottom: 10px; }

/* ==========================================
   THANK YOU OVERLAY
   ========================================== */
.fa-thankyou {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.fa-thankyou-box {
  background: #fff;
  border-radius: 14px;
  padding: 52px 40px;
  text-align: center;
  max-width: 440px;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.fa-ty-icon { font-size: 60px; color: #2a9d5c; display: block; margin-bottom: 18px; }
.fa-thankyou-box h2 { font-size: 26px; font-weight: 800; margin-bottom: 14px; color: #1e2d40; }
.fa-thankyou-box p { font-size: 15px; color: #555; line-height: 1.65; margin-bottom: 26px; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 860px) {
  .fa-hero-inner { flex-direction: column; padding: 0 16px; }
  .fa-hero-img-col { display: none; }
  .fa-sticker-corner { top: -36px; right: -8px; width: 90px; height: 90px; }
  .fa-sticker-corner .fa-sticker-text { font-size: 10px; }
  .fa-sticker-corner .fa-sticker-rate { font-size: 18px; }
  .fa-form-card { padding: 44px 20px 24px; }
  .fa-teaser-grid { grid-template-columns: 1fr; }
  .fa-vorteile-grid { grid-template-columns: 1fr; }
  .fa-chart-grid { grid-template-columns: 1fr; }
  .fa-team-grid { grid-template-columns: 1fr; }
  .fa-calc-cards { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .fa-footer-cols { grid-template-columns: 1fr; }
  .fa-cta-mid-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .fa-header-badges { display: none; }
  .fa-form-benefits { grid-template-columns: 1fr; }
  .fa-field-row { flex-direction: column; }
  .fa-trust-bar { gap: 10px; font-size: 11.5px; }
  .fa-form-card { padding: 20px 16px; }
  .fa-section-title { font-size: 20px; }
  .fa-steps { flex-direction: column; align-items: center; }
  .fa-step-arrow { display: none; }
  .fa-banks-row { gap: 18px; }
}
