/* ============================================================
   FestgeldLeads.de – Callcenter-Edition Stylesheet
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #1a4fa0;
  --primary-dark:  #0e3270;
  --primary-light: #2d6ee0;
  --accent:        #f0a500;
  --accent-dark:   #c98900;
  --green:         #16a34a;
  --red:           #dc2626;
  --text:          #111827;
  --text-muted:    #6b7280;
  --bg:            #ffffff;
  --bg-light:      #f3f6fb;
  --bg-dark:       #0d1b3e;
  --border:        #e2e8f0;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow:    0 8px 30px rgba(0,0,0,.11);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.16);
  --font: 'Inter', system-ui, sans-serif;
  --ease: .22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Gradient Text ────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(130deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  border-radius: var(--radius); transition: all var(--ease);
  white-space: nowrap; justify-content: center;
}
.btn-sm  { padding: 8px 18px;  font-size: .85rem; }
.btn-lg  { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 18px rgba(26,79,160,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,79,160,.45); filter: brightness(1.07); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 18px rgba(240,165,0,.35);
}
.btn-accent:hover { transform: translateY(-2px); filter: brightness(1.07); }

.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,.12); color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: #fff; }

/* ── Section ──────────────────────────────────────────────── */
.section       { padding: 88px 0; }
.section-light { background: var(--bg-light); }
.section-dark  { background: var(--bg-dark); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-header.light h2, .section-header.light p { color: #fff; }
.section-header.light p { opacity: .75; }
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 14px;
}
.section-header p { font-size: 1.02rem; color: var(--text-muted); }

.section-badge {
  display: inline-block;
  background: rgba(26,79,160,.1); color: var(--primary);
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.badge-light { background: rgba(255,255,255,.14); color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 66px;
}

.logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; }
.logo-wrap { display: flex; flex-direction: column; gap: 1px; }
.logo-slogan { font-size: .65rem; font-weight: 500; color: var(--text-muted); letter-spacing: .03em; line-height: 1; }
.logo-img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .95rem;
}
.logo-text strong { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: .88rem; font-weight: 500; color: var(--text-muted); transition: color var(--ease); }
.nav-links a:hover { color: var(--primary); }
.nav-links .btn { color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(160deg, #07122b 0%, #0f2d6e 55%, #1a5dc0 100%);
  display: flex; align-items: center; overflow: hidden; padding-top: 66px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; background: #fff; opacity: .04; }
.shape-1 { width: 700px; height: 700px; top: -200px; right: -200px; }
.shape-2 { width: 350px; height: 350px; bottom: -80px; left: -80px; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 56px; align-items: center;
  padding: 80px 24px 90px; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff;
  font-size: .8rem; font-weight: 600;
  padding: 7px 16px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2); margin-bottom: 22px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: #fff; line-height: 1.18; margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.78);
  max-width: 520px; margin-bottom: 34px; line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Lead-Vorschau-Karte */
.lead-preview {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lead-preview-header {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1);
  padding: 13px 18px;
  color: #fff; font-size: .85rem; font-weight: 700;
}
.lead-preview-header i { color: var(--accent); font-size: 1rem; }
.lead-preview-header span:last-child { margin-left: auto; }

.badge-live {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(22,163,74,.25); color: #4ade80;
  font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}
.badge-live i { font-size: .5rem; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.lead-fields { padding: 10px 0; }
.lead-fields li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 18px; border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .85rem;
}
.lead-fields li:nth-child(odd) { background: rgba(255,255,255,.03); }
.lead-fields li:last-child { border-bottom: none; }

.field-label {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.55); min-width: 130px;
}
.field-label i { width: 14px; text-align: center; color: rgba(255,255,255,.4); }
.field-value { color: #fff; font-weight: 600; text-align: right; }
.field-value.verified { color: #4ade80; display: flex; align-items: center; gap: 5px; }
.field-value.verified i { font-size: .8rem; }
.field-value.highlight { color: var(--accent); font-size: 1rem; font-weight: 800; }

.lead-preview-footer {
  display: flex; align-items: center; gap: 8px;
  background: rgba(22,163,74,.12);
  padding: 10px 18px; color: #4ade80;
  font-size: .77rem; font-weight: 600;
}
.lead-preview-footer i { font-size: .9rem; }

/* ============================================================
   KPI-BAR
   ============================================================ */
.kpi-bar {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
}
.kpi-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.kpi { text-align: center; padding: 8px 32px; }
.kpi-number {
  display: block; font-size: 1.75rem; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 4px;
}
.kpi-label { font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 500; white-space: nowrap; }
.kpi-sep { width: 1px; height: 44px; background: rgba(255,255,255,.12); }

/* ============================================================
   DATENSATZ-FELDER
   ============================================================ */
.fields-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.field-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.field-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.field-card.must  { border-left: 4px solid var(--primary); }
.field-card.opt   { border-left: 4px solid var(--accent); }

.field-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(26,79,160,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.field-icon.phone  { background: rgba(22,163,74,.1);  color: var(--green); }
.field-icon.money  { background: rgba(240,165,0,.12); color: var(--accent-dark); }

.field-info { flex: 1; }
.field-info strong { display: block; font-size: .9rem; font-weight: 700; }
.field-info span   { font-size: .8rem; color: var(--text-muted); }

.field-tag { font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; flex-shrink: 0; }
.must-tag  { background: rgba(26,79,160,.1);  color: var(--primary); }
.opt-tag   { background: rgba(240,165,0,.12); color: var(--accent-dark); }

/* Lieferformate */
.format-box {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: inline-block;
}
.format-title {
  display: flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: .85rem; margin-bottom: 10px; color: var(--text);
}
.format-title i { color: var(--primary); }
.format-list { display: flex; flex-wrap: wrap; gap: 7px; }
.format-item {
  display: flex; align-items: center; gap: 5px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 5px 11px;
  font-size: .8rem; font-weight: 600; color: var(--text);
  transition: border-color var(--ease), color var(--ease);
}
.format-item:hover { border-color: var(--primary); color: var(--primary); }
.format-item i { color: var(--primary); font-size: .78rem; }

/* ============================================================
   QUALITÄT
   ============================================================ */
.quality-steps {
  display: flex; align-items: stretch; gap: 0;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 56px;
}
.qs-step {
  flex: 1; min-width: 200px; max-width: 260px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.qs-step:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.qs-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(26,79,160,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 16px;
}
.qs-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.qs-body p  { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

.qs-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.2rem; opacity: .4;
  padding: 0 10px; align-self: center;
}

/* Erreichbarkeit Balken */
.reach-compare {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.reach-compare h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 28px; }

.reach-bars { display: flex; flex-direction: column; gap: 18px; margin-bottom: 18px; }
.reach-row  { display: flex; align-items: center; gap: 16px; }
.reach-label {
  font-size: .85rem; font-weight: 600; color: var(--text);
  min-width: 240px; flex-shrink: 0;
}
.reach-bar-wrap { flex: 1; background: var(--bg-light); border-radius: 50px; height: 34px; overflow: hidden; }
.reach-bar {
  height: 100%; border-radius: 50px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: flex-end; padding-right: 12px;
  width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.reach-bar.bar-mid { background: linear-gradient(90deg, #6b7280 0%, #9ca3af 100%); }
.reach-bar.bar-low { background: linear-gradient(90deg, #dc2626 0%, #f87171 100%); }
.reach-bar span { color: #fff; font-size: .8rem; font-weight: 700; white-space: nowrap; }

.reach-note {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--text-muted);
}
.reach-note i { color: var(--primary); }

/* ============================================================
   PAKETE
   ============================================================ */
/* ============================================================
   PREIS AUF ANFRAGE – BOX
   ============================================================ */
.anfrage-box {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 24px;
  align-items: center;
}

.anfrage-left {
  text-align: center;
  padding: 0 24px;
}

.anfrage-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(26,79,160,.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.anfrage-icon.icon-green { background: rgba(22,163,74,.1);  color: var(--green); }
.anfrage-icon.icon-gold  { background: rgba(240,165,0,.12); color: var(--accent-dark); }

.anfrage-left h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
}
.anfrage-left p {
  font-size: .9rem; color: var(--text-muted); line-height: 1.6;
}
.anfrage-left p strong { color: var(--text); }

.anfrage-divider {
  width: 1px; height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

.anfrage-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
}

.anfrage-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.anfrage-cta-text i {
  font-size: 1.6rem;
  opacity: .85;
  flex-shrink: 0;
}
.anfrage-cta-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.anfrage-cta-text span {
  font-size: .88rem;
  opacity: .8;
}

.anfrage-cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
  border-color: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}
.anfrage-cta-box .btn-primary:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

@media (max-width: 900px) {
  .anfrage-box {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }
  .anfrage-divider { width: 60px; height: 1px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .anfrage-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .anfrage-cta-text { flex-direction: column; text-align: center; }
  .anfrage-cta-box .btn-primary { width: 100%; justify-content: center; }
}

/* Exklusiv-Only Badge (ersetzt Toggle) */
.exclusive-only-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(26,79,160,.08) 0%, rgba(240,165,0,.08) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 14px 28px;
  margin-bottom: 40px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}
.exclusive-only-badge i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.exclusive-only-badge strong { color: var(--primary); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; align-items: stretch;
}

.pricing-card {
  background: var(--bg); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 30px;
  position: relative; display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #eef3ff 0%, #fff 100%);
  box-shadow: 0 12px 50px rgba(26,79,160,.18);
}

.pc-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; font-size: .72rem; font-weight: 700;
  padding: 4px 16px; border-radius: 50px; white-space: nowrap;
}

.pc-head h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.pc-price {
  display: flex; align-items: flex-end; gap: 2px; margin-bottom: 6px;
}
.pc-cur  { font-size: 1.3rem; font-weight: 700; color: var(--primary); padding-bottom: 5px; }
.pc-amt  { font-size: 3rem; font-weight: 800; color: var(--primary); line-height: 1; transition: opacity .25s, transform .25s; }
.pc-per  { font-size: .88rem; color: var(--text-muted); padding-bottom: 6px; }
.pc-head > p { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }

.pc-list { flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pc-list li { display: flex; align-items: center; gap: 9px; font-size: .9rem; }
.pc-list li i { font-size: .8rem; flex-shrink: 0; }
.pc-list li i.fa-check { color: var(--green); }
.pc-list li i.fa-times { color: #d1d5db; }
.pc-list li i.pc-excl  { color: var(--primary); }
.pc-list li.off { color: #9ca3af; }

.pricing-hint {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(240,165,0,.08); border: 1.5px solid rgba(240,165,0,.3);
  border-radius: var(--radius); padding: 16px 20px;
  font-size: .88rem; color: var(--text); margin-top: 28px;
}
.pricing-hint i { color: var(--accent-dark); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   LIEFERUNG & TECHNIK
   ============================================================ */
.tech-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-bottom: 48px;
}
.tech-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: background var(--ease), border-color var(--ease);
}
.tech-card:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.tech-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(240,165,0,.18); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px;
}
.tech-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.tech-card p  { font-size: .87rem; color: rgba(255,255,255,.62); line-height: 1.65; margin-bottom: 14px; }
.tech-tag {
  display: inline-block; background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7); font-size: .72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
}

/* Timeline */
.timeline-box {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 32px 36px;
}
.timeline-box h3 {
  font-size: 1.05rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.timeline-box h3 i { color: var(--accent); }

.timeline {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.tl-item { text-align: center; min-width: 120px; }
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: 2px solid rgba(255,255,255,.4);
  margin: 0 auto 8px;
}
.tl-dot.dot-gold  { background: var(--accent); border-color: var(--accent); }
.tl-dot.dot-green { background: #4ade80; border-color: #4ade80; }
.tl-label { font-size: .8rem; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.tl-text  { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.4; }
.tl-line  { flex: 1; height: 2px; background: rgba(255,255,255,.15); min-width: 20px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px;
}
.testi-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: var(--accent); font-size: .9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p {
  font-size: .92rem; color: var(--text-muted); font-style: italic;
  margin-bottom: 20px; line-height: 1.7;
}
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; font-weight: 700; font-size: .8rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; }
.testi-author small  { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.faq-item.open, .faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none;
  font-family: var(--font); font-size: .95rem; font-weight: 600; color: var(--text);
  cursor: pointer; text-align: left; transition: background var(--ease);
}
.faq-q:hover { background: var(--bg-light); }
.faq-item.open .faq-q { background: rgba(26,79,160,.05); color: var(--primary); }
.faq-q i { font-size: .8rem; color: var(--text-muted); transition: transform var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--primary); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 22px 18px; font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 320px; }

/* ============================================================
   KONTAKT
   ============================================================ */
.section-contact { background: var(--bg-dark); }

/* ── Telegram CTA ── */
.tg-cta-wrap {
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px;
}

.tg-cta-icon {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, #0088cc, #29b6f6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,136,204,.45);
  font-size: 2.4rem; color: #fff;
}

.tg-cta-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800; color: #fff; line-height: 1.2;
  margin: 0;
}

.tg-cta-sub {
  color: rgba(255,255,255,.7); font-size: 1.05rem;
  line-height: 1.65; max-width: 540px; margin: 0;
}

.tg-cta-checks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px;
}
.tg-cta-checks span {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
}
.tg-cta-checks i { color: #4ade80; font-size: .85rem; }

.btn-telegram-main {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #0088cc, #29b6f6);
  color: #fff; font-family: var(--font); font-size: 1.15rem; font-weight: 700;
  padding: 18px 44px; border-radius: 50px;
  box-shadow: 0 8px 28px rgba(0,136,204,.45);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-telegram-main i { font-size: 1.4rem; }
.btn-telegram-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,136,204,.55);
}

.tg-langs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px;
  margin-top: 4px;
}
.tg-langs span {
  color: rgba(255,255,255,.5); font-size: .85rem; font-weight: 500;
  letter-spacing: .03em;
}
.tg-langs-label {
  color: rgba(255,255,255,.75) !important; font-weight: 700 !important;
  font-size: .85rem; letter-spacing: .04em;
}
.tg-cta-note {
  color: rgba(255,255,255,.45); font-size: .85rem; margin: 0;
}
.tg-cta-note i { margin-right: 5px; }
.tg-cta-note a { color: rgba(255,255,255,.65); text-decoration: underline; }
.tg-cta-note a:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060f1e; color: rgba(255,255,255,.65); padding-top: 56px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 56px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .86rem; max-width: 290px; line-height: 1.7; }
.footer-slogan { color: rgba(255,255,255,.55); font-size: .88rem; font-style: italic; letter-spacing: .02em; }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-col h4 { color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: 14px; }
.footer-col a  { display: block; font-size: .84rem; color: rgba(255,255,255,.5); margin-bottom: 9px; transition: color var(--ease); }
.footer-col a:hover { color: #fff; }

.footer-bottom { padding: 18px 0; }
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 6px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── Scroll to Top ────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 26px; right: 26px;
  width: 44px; height: 44px; background: var(--primary); color: #fff;
  border: none; border-radius: 50%; font-size: .95rem; cursor: pointer;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(12px);
  transition: opacity var(--ease), transform var(--ease);
  z-index: 900; display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .lead-preview  { max-width: 420px; }
  .contact-wrap  { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .reach-label   { min-width: 180px; }
  .fields-grid   { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: 1fr 1fr; }
  .anfrage-box   { grid-template-columns: 1fr; }
}

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

  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 18px 24px 26px; gap: 16px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    transform: translateY(-110%); transition: transform .3s ease; z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger      { display: flex; }
  .nav-links .btn { width: 100%; justify-content: center; }

  .hero-inner  { padding: 44px 20px 60px; }
  .hero-cta    { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .lead-preview  { max-width: 100%; }

  .kpi-inner   { gap: 0; flex-wrap: wrap; }
  .kpi         { padding: 8px 14px; width: 50%; }
  .kpi-number  { font-size: 1.3rem; }
  .kpi-sep     { display: none; }

  .fields-grid { grid-template-columns: 1fr; }
  .field-card  { padding: 14px 16px; }

  .quality-steps  { flex-direction: column; align-items: center; gap: 10px; }
  .qs-arrow       { transform: rotate(90deg); }
  .reach-compare  { padding: 24px 16px; }
  .reach-label    { min-width: 0; font-size: .78rem; }

  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 22px 18px; }

  .anfrage-box    { grid-template-columns: 1fr; gap: 20px; padding: 24px 18px; }
  .anfrage-divider { width: 60px; height: 1px; margin: 0 auto; }
  .anfrage-cta-box { flex-direction: column; text-align: center; padding: 22px 18px; }
  .anfrage-cta-text { flex-direction: column; text-align: center; }
  .anfrage-cta-box .btn-primary { width: 100%; justify-content: center; }

  .faq-q { font-size: .9rem; padding: 16px 14px; }

  .tg-cta-title  { font-size: 1.7rem; }
  .tg-cta-sub    { font-size: .95rem; }
  .btn-telegram-main { font-size: 1rem; padding: 15px 28px; width: 100%; justify-content: center; }
  .tg-cta-checks { gap: 8px 16px; }
  .tg-langs      { gap: 8px 14px; }

  .footer-inner  { grid-template-columns: 1fr; gap: 28px; }
  .footer-cols   { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .fields-grid   { grid-template-columns: 1fr; }
  .kpi           { width: 50%; }
  .footer-cols   { grid-template-columns: 1fr; }
  .tg-cta-icon   { width: 70px; height: 70px; font-size: 1.8rem; }
  .tg-cta-title  { font-size: 1.5rem; }
  .logo-slogan   { display: none; }
  .anfrage-left h3 { font-size: 1rem; }
  .section-header h2 { font-size: 1.6rem; }
}
