/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #1a1d2e; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }

/* ─── VARIABLES ─── */
:root {
  --navy: #0a0f1e;
  --blue: #0055ff;
  --accent: #00c2ff;
  --off: #f5f7fc;
  --gray: #6b7280;
  --text: #1a1d2e;
  --border: #e5e9f5;
  --blight: #e8f0fe;
}

/* ─── NAV ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 60px;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; height: 60px;
  padding: 0 1rem; gap: 0.25rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; flex-shrink: 0; margin-right: 0.5rem;
}
.nav-logo img {
  height: 42px; width: auto; display: block;
}
.nav-logo span { color: var(--accent); }
.nav-tabs { display: flex; list-style: none; flex: 1; flex-wrap: nowrap; overflow: visible; }
.nav-tabs li a {
  display: block; padding: 0 0.35rem; line-height: 60px;
  color: rgba(255,255,255,0.6); font-size: 0.65rem; font-weight: 500;
  text-decoration: none; border-bottom: 2px solid transparent;
  white-space: nowrap; cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  letter-spacing: 0.01em;
}
.nav-tabs li a:hover { color: #fff; }
.nav-tabs li a.active { color: #fff; border-bottom-color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 0.3rem; flex-shrink: 0; }
.nav-soc a {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 4px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65);
  font-size: 0.65rem; font-weight: 700; text-decoration: none;
  transition: background 0.15s;
}
.nav-soc a:hover { background: var(--blue); color: #fff; }
.btn-kontakt {
  background: var(--blue); color: #fff;
  padding: 0.35rem 0.75rem; border-radius: 5px;
  font-size: 0.7rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  white-space: nowrap; transition: background 0.15s;
}
.btn-kontakt:hover { background: #003ecc; }
.hamburger {
  display: none; background: none; border: none;
  color: #fff; font-size: 1.3rem; cursor: pointer; padding: 0.25rem;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: var(--navy); z-index: 9998;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-height: calc(100vh - 60px); overflow-y: auto;
}
.mobile-menu a {
  display: block; padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.75); font-size: 0.875rem;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.04); }

/* ─── PAGES ─── */
.page { display: none; padding-top: 60px; }
.page.show { display: block; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.bg-navy { background: var(--navy); }
.bg-off { background: var(--off); }

/* ─── TYPOGRAPHY ─── */
.tag-label {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.5rem;
}
.tag-label.light { color: var(--accent); }
.heading {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 0.6rem;
}
.heading.light { color: #fff; }
.lead {
  color: var(--gray); font-size: 0.9rem; line-height: 1.7;
  max-width: 560px; margin-bottom: 2rem;
}
.lead.light { color: rgba(255,255,255,0.6); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; padding: 0.7rem 1.5rem; border-radius: 6px;
  font-weight: 600; font-size: 0.875rem; text-decoration: none;
  cursor: pointer; border: none; transition: background 0.15s, transform 0.1s;
}
.btn:hover { transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #003ecc; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-accent { background: var(--accent); color: var(--navy); }
.btn-accent:hover { background: #00aadd; }

/* ─── GRIDS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* ─── CARDS ─── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,85,255,0.1); }
.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 1.4rem;
}
.card-icon {
  width: 38px; height: 38px; border-radius: 7px;
  background: var(--blight); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; margin-bottom: 0.85rem;
}
.card h3, .card-dark h3 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.92rem; margin-bottom: 0.4rem;
}
.card-dark h3 { color: #fff; }
.card p { color: var(--gray); font-size: 0.83rem; line-height: 1.6; }
.card-dark p { color: rgba(255,255,255,0.55); font-size: 0.83rem; line-height: 1.6; }

/* ─── HERO ─── */
.hero {
  background: var(--navy); padding: 3.5rem 1.5rem 4rem;
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,85,255,0.2), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(0,194,255,0.12);
  color: var(--accent); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 4px;
  border: 1px solid rgba(0,194,255,0.22); margin-bottom: 1.1rem;
}
.hero h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1; color: #fff; letter-spacing: -0.025em;
  margin-bottom: 0.9rem;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  line-height: 1.7; margin-bottom: 1.6rem; max-width: 440px;
}
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 1.4rem;
}
.stat-card h3 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  color: #fff; font-size: 0.85rem; margin-bottom: 1rem;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.stat-box {
  background: rgba(255,255,255,0.07);
  border-radius: 7px; padding: 0.85rem; text-align: center;
}
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.25rem; color: var(--accent); display: block;
}
.stat-lbl {
  color: rgba(255,255,255,0.5); font-size: 0.68rem;
  margin-top: 0.15rem; display: block;
}

/* ─── TRUST BAND ─── */
.trust-band {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
}
.trust-item strong {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: var(--blue);
}
.trust-item span { font-size: 0.8rem; color: var(--gray); }

/* ─── REVIEW CARDS ─── */
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 1.4rem;
}
.review-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.5rem; }
.review-text {
  color: rgba(255,255,255,0.7); font-size: 0.83rem;
  line-height: 1.6; font-style: italic; margin-bottom: 0.65rem;
}
.review-author { color: var(--accent); font-weight: 600; font-size: 0.78rem; }

/* ─── LEISTUNGEN ─── */
.leistung-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 1.4rem; position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.leistung-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,85,255,0.1); }
.leistung-card.featured { border-color: var(--blue); background: linear-gradient(135deg, #f0f5ff, #e8f0fe); }
.leistung-badge {
  position: absolute; top: 0.9rem; right: 0.9rem;
  background: var(--blue); color: #fff;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 3px;
}
.leistung-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.leistung-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem; margin-bottom: 0.2rem; }
.leistung-tag { color: var(--blue); font-size: 0.76rem; font-weight: 600; margin-bottom: 0.6rem; }
.leistung-desc { color: var(--gray); font-size: 0.82rem; line-height: 1.6; margin-bottom: 0.85rem; }
.feature-list { list-style: none; margin-bottom: 1rem; }
.feature-list li {
  padding: 0.28rem 0 0.28rem 1.1rem; position: relative;
  font-size: 0.8rem; color: var(--text);
  border-bottom: 1px solid #f0f3fb;
}
.feature-list li:last-child { border-bottom: none; }

/* ─── NEU: SCHMERZ / VORHER-NACHHER / ZIELGRUPPEN ─── */
.pain-quote {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.25;
  color: var(--text); letter-spacing: -0.02em; max-width: 760px;
}
.pain-quote em { color: var(--blue); font-style: normal; }
.vn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: stretch; }
.vn-card { border-radius: 12px; padding: 1.5rem 1.5rem 1.6rem; }
.vn-card.ohne { background: #fbeaec; border: 1px solid #f3c4ca; }
.vn-card.mit  { background: #e8f0fe; border: 1px solid #bcd4fb; }
.vn-label {
  display: inline-block; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 4px; margin-bottom: 0.9rem;
}
.vn-card.ohne .vn-label { background: #d6485a; color: #fff; }
.vn-card.mit  .vn-label { background: var(--blue); color: #fff; }
.vn-card h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: 0.9rem; }
.vn-card ul { list-style: none; }
.vn-card li {
  position: relative; padding: 0.42rem 0 0.42rem 1.7rem;
  font-size: 0.88rem; line-height: 1.5; color: var(--text);
}
.vn-card.ohne li::before { content: '✕'; position: absolute; left: 0; color: #d6485a; font-weight: 800; }
.vn-card.mit  li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.vn-result {
  margin-top: 1rem; padding-top: 0.9rem; border-top: 1px dashed rgba(0,0,0,0.12);
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem;
}
.vn-card.ohne .vn-result { color: #b23645; }
.vn-card.mit  .vn-result { color: var(--blue); }

.zg-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 1.6rem 1.5rem 1.5rem; display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s; height: 100%;
}
.zg-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,85,255,0.12); border-color: var(--blue); }
.zg-icon { font-size: 1.9rem; margin-bottom: 0.7rem; }
.zg-card h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: 0.35rem; }
.zg-pain { color: #b23645; font-size: 0.83rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.5; }
.zg-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.9rem; }
.zg-win {
  background: var(--off); border-radius: 8px; padding: 0.7rem 0.85rem;
  font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 1rem;
}
.zg-win span { color: var(--blue); }
.zg-card .btn { margin-top: auto; }

@media (max-width: 720px) {
  .vn-grid { grid-template-columns: 1fr; }
}
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* ─── PAKET CARDS ─── */
.paket-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.paket-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,85,255,0.1); }
.paket-card.best { background: var(--navy); border-color: var(--blue); }
.paket-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.3rem; }
.paket-num.lt { color: var(--accent); }
.paket-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 0.5rem; }
.paket-name.lt { color: #fff; }
.paket-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.75rem; color: var(--blue); margin-bottom: 0.15rem; }
.paket-price.lt { color: var(--accent); }
.paket-note { font-size: 0.75rem; color: var(--gray); margin-bottom: 1rem; }
.paket-note.lt { color: rgba(255,255,255,0.4); }
.paket-sep { height: 1px; background: var(--border); margin: 1rem 0; }
.paket-sep.lt { background: rgba(255,255,255,0.1); }
.paket-list { list-style: none; margin-bottom: 1.25rem; }
.paket-list li {
  padding: 0.32rem 0 0.32rem 1.1rem; position: relative;
  font-size: 0.8rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.paket-list li:last-child { border-bottom: none; }
.paket-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.paket-list.lt li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.07); }
.paket-list.lt li::before { color: var(--accent); }
.paket-no { font-size: 0.72rem; color: var(--gray); margin-top: -0.6rem; margin-bottom: 1rem; font-style: italic; }
.paket-no.lt { color: rgba(255,255,255,0.3); }
.btn-block { width: 100%; text-align: center; display: block; }

/* ─── ROI RECHNER ─── */
.roi-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 1.75rem; margin-top: 2rem;
}
.roi-inputs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1.5rem;
}
.roi-group label {
  display: block; font-size: 0.76rem; font-weight: 600;
  margin-bottom: 0.3rem; color: var(--text);
}
.roi-group input {
  width: 100%; padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--text); transition: border-color 0.15s;
}
.roi-group input:focus { outline: none; border-color: var(--blue); }
.roi-result {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 10px; padding: 1.4rem;
}
.roi-result h4 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 0.9rem; color: var(--blue); margin-bottom: 1rem;
}
.roi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.65rem;
}
.roi-item {
  background: #fff; border-radius: 7px;
  padding: 0.85rem 0.5rem; text-align: center; min-width: 0;
}
.roi-value {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  color: var(--blue); display: block;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.roi-label { font-size: 0.62rem; color: var(--gray); margin-top: 0.2rem; line-height: 1.3; }

/* ─── SCHULUNGEN ─── */
.schulung-card {
  border-radius: 10px; padding: 1.6rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.schulung-card.virtuell { background: rgba(0,85,255,0.14); }
.schulung-card.vorort { background: rgba(0,194,255,0.1); }
.schulung-type { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.65rem; }
.schulung-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; }
.schulung-desc { color: rgba(255,255,255,0.6); font-size: 0.83rem; line-height: 1.65; margin-bottom: 1rem; }
.schulung-list { list-style: none; margin-bottom: 1.25rem; }
.schulung-list li { padding: 0.28rem 0 0.28rem 1.1rem; position: relative; color: rgba(255,255,255,0.75); font-size: 0.8rem; }
.schulung-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.schulung-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--accent); }
.schulung-note { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 0.18rem; }

/* ─── SOCIAL MEDIA PAKETE ─── */
.sm-card {
  border-radius: 12px; padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sm-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,85,255,0.12); }
.sm-card.basis { background: #fff; border: 1.5px solid var(--border); }
.sm-card.premium { background: var(--navy); border: 1.5px solid var(--blue); }
.sm-badge { display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 3px; margin-bottom: 0.75rem; }
.sm-badge.b { background: var(--blight); color: var(--blue); }
.sm-badge.p { background: var(--accent); color: var(--navy); }
.sm-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: 0.4rem; }
.sm-name.lt { color: #fff; }
.sm-tagline { font-size: 0.8rem; color: var(--gray); margin-bottom: 0.85rem; }
.sm-tagline.lt { color: rgba(255,255,255,0.55); }
.sm-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.75rem; color: var(--blue); }
.sm-price.lt { color: var(--accent); }
.sm-period { font-size: 0.75rem; color: var(--gray); margin-bottom: 1rem; }
.sm-period.lt { color: rgba(255,255,255,0.4); }
.sm-sep { height: 1px; background: var(--border); margin: 1rem 0; }
.sm-sep.lt { background: rgba(255,255,255,0.1); }
.sm-list { list-style: none; margin-bottom: 1.25rem; }
.sm-list li { padding: 0.32rem 0 0.32rem 1.1rem; position: relative; font-size: 0.8rem; border-bottom: 1px solid var(--border); }
.sm-list li:last-child { border-bottom: none; }
.sm-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.sm-list.lt li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.07); }
.sm-list.lt li::before { color: var(--accent); }
.sm-no { font-size: 0.72rem; color: var(--gray); margin-top: -0.6rem; margin-bottom: 1rem; font-style: italic; }
.sm-no.lt { color: rgba(255,255,255,0.3); }

/* ─── ÜBER MICH ─── */
.about-grid { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: start; }
.about-photo { width: 100%; border-radius: 10px; display: block; margin-bottom: 1rem; }
.about-photo-placeholder {
  width: 100%; aspect-ratio: 3/4; border-radius: 10px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; margin-bottom: 1rem;
}
.cred-box { background: var(--navy); border-radius: 10px; padding: 1.2rem; }
.cred-box h4 {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
}
.cred-row {
  display: flex; gap: 0.6rem; align-items: flex-start;
  padding: 0.42rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cred-row:last-child { border-bottom: none; }
.cred-icon { font-size: 0.82rem; flex-shrink: 0; margin-top: 0.05rem; }
.cred-title { display: block; font-size: 0.76rem; font-weight: 600; color: #fff; }
.cred-sub { font-size: 0.68rem; color: rgba(255,255,255,0.45); }
.about-text h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 0.85rem; }
.about-text h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.92rem; margin: 1.1rem 0 0.4rem; }
.about-text p { color: var(--gray); font-size: 0.85rem; line-height: 1.75; margin-bottom: 0.6rem; }
.exp-row { display: flex; gap: 0.7rem; flex-wrap: wrap; margin: 0.9rem 0; }
.exp-box { background: var(--blight); border-radius: 7px; padding: 0.6rem 1rem; text-align: center; }
.exp-box strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--blue); }
.exp-box span { font-size: 0.7rem; color: var(--gray); }

/* ─── BLOG ─── */
.blog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,85,255,0.1); }
.blog-img { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 2rem; background: linear-gradient(135deg, #1a3a6b, #0055ff); }
.blog-body { padding: 1.1rem; }
.blog-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 0.4rem; }
.blog-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.875rem; color: var(--text); margin-bottom: 0.45rem; line-height: 1.35; }
.blog-excerpt { color: var(--gray); font-size: 0.78rem; line-height: 1.6; margin-bottom: 0.55rem; }
.blog-meta { font-size: 0.7rem; color: #b0b8cc; }

/* ─── JOBS ─── */
.job-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; transition: border-color 0.2s; margin-bottom: 1.1rem;
}
.job-card:hover { border-color: var(--blue); }
.job-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: 0.3rem; }
.job-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.job-tag { background: var(--blight); color: var(--blue); font-size: 0.65rem; font-weight: 600; padding: 0.18rem 0.5rem; border-radius: 3px; }
.job-desc { color: var(--gray); font-size: 0.8rem; line-height: 1.6; }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.05rem 0; }
.faq-question {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.875rem;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; color: var(--text);
}
.faq-icon { font-size: 1rem; color: var(--blue); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-answer { display: none; color: var(--gray); font-size: 0.83rem; line-height: 1.7; padding-top: 0.55rem; }

/* ─── KONTAKT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.form-group { margin-bottom: 0.85rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.28rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.6rem 0.82rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  color: var(--text); background: #fff; transition: border-color 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-steps { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-step { display: flex; gap: 0.7rem; align-items: flex-start; }
.step-num {
  background: var(--blue); color: #fff; width: 22px; height: 22px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; flex-shrink: 0;
}
.contact-step strong { display: block; font-size: 0.83rem; font-weight: 600; }
.contact-step p { font-size: 0.76rem; color: var(--gray); margin-top: 0.1rem; }
.contact-info-item { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.8rem; }
.contact-info-icon {
  width: 34px; height: 34px; border-radius: 7px; background: var(--blight);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; flex-shrink: 0;
}
.contact-info-label { font-size: 0.65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-info-value { font-size: 0.83rem; font-weight: 500; }
.social-links { display: flex; gap: 0.5rem; margin-top: 1.1rem; }
.social-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--navy); color: #fff; padding: 0.48rem 0.85rem;
  border-radius: 6px; text-decoration: none; font-size: 0.76rem; font-weight: 600;
  transition: background 0.15s;
}
.social-btn:hover { background: var(--blue); }

/* ─── CTA BAND ─── */
.cta-band { background: var(--blue); padding: 2.75rem 1.5rem; text-align: center; }
.cta-band h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: #fff; margin-bottom: 0.6rem;
}
.cta-band p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-bottom: 1.4rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 2.5rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.6rem; padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: #fff; margin-bottom: 0.6rem; }
.footer-logo span { color: var(--accent); }
.footer-grid > div > p { font-size: 0.8rem; line-height: 1.65; max-width: 200px; }
.footer-col h5 { color: #fff; font-weight: 700; font-size: 0.76rem; letter-spacing: 0.04em; margin-bottom: 0.8rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; margin-bottom: 0.32rem; cursor: pointer; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 1.2rem auto 0;
  display: flex; justify-content: space-between;
  font-size: 0.73rem; flex-wrap: wrap; gap: 0.4rem;
}
.footer-social { display: flex; gap: 0.4rem; margin-top: 0.8rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 27px; height: 27px; border-radius: 4px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  font-size: 0.7rem; font-weight: 700; text-decoration: none;
  transition: background 0.15s;
}
.footer-social a:hover { background: var(--blue); color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .stat-card { display: none; }
  .roi-grid { grid-template-columns: 1fr 1fr; }
  .roi-inputs { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-tabs { display: none; }
  .nav-soc { display: none; }
  .hamburger { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .roi-inputs { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr 1fr; }
  .roi-value { font-size: clamp(1rem, 4vw, 1.2rem); }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .section { padding: 2.5rem 0; }
  .hero { padding: 2.5rem 1.5rem 3rem; }
  .roi-box { padding: 1.25rem; }
  .trust-inner { gap: 1.25rem; }
}

/* ─── TEL VARS ─── */
.tel-navy  { background: var(--navy); }
.tel-blue  { color: var(--blue); }
.tel-off   { background: var(--off); }

/* ─── HERO ─── */
.tel-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.tel-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 80% 50%, rgba(0,85,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.tel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.tel-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--accent); flex: none; }
.tel-h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .95;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.tel-h1 em { font-style: normal; color: var(--accent); }
.tel-lead {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}
.tel-lead b { color: #fff; }
.tel-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tel-stats { display: flex; gap: 32px; }
.tel-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.tel-stat-n span { color: var(--accent); }
.tel-stat-l { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 4px; line-height: 1.3; }

/* Phone mockup */
.tel-phone {
  background: #0d1626;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  max-width: 320px;
  margin-left: auto;
}
.tel-phone-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tel-phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: grid; place-items: center;
  font-size: 16px; color: #fff; font-weight: 700; flex: none;
}
.tel-phone-name { font-size: 13px; font-weight: 600; color: #fff; }
.tel-phone-sub  { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 1px; }
.tel-phone-dot  {
  width: 8px; height: 8px; border-radius: 50%;
  background: #1fae73; box-shadow: 0 0 6px #1fae73;
  margin-left: auto; flex: none;
  animation: telPulse 2s infinite;
}
@keyframes telPulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.tel-bubble {
  border-radius: 14px;
  padding: 10px 13px;
  font-size: 12.5px;
  line-height: 1.45;
  margin-bottom: 8px;
  max-width: 88%;
}
.tel-bubble.ki {
  background: rgba(0,85,255,.18);
  border: 1px solid rgba(0,85,255,.25);
  color: rgba(255,255,255,.85);
}
.tel-bubble.kunde {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  margin-left: auto;
}
.tel-bubble b { color: var(--accent); }
.tel-saved {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(31,174,115,.15);
  border: 1px solid rgba(31,174,115,.3);
  border-radius: 10px;
  font-size: 11.5px;
  color: #5fe0a8;
  line-height: 1.5;
}

/* ─── SECTION BASE ─── */
.tel-section { padding: 64px 0; }
.tel-section-off { padding: 64px 0; background: var(--off); }
.tel-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.tel-h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(28px, 3.5vw, 42px); line-height: 1.05; margin-bottom: 14px; }
.tel-sub { font-size: 15px; color: var(--gray); line-height: 1.65; max-width: 580px; margin-bottom: 44px; }

/* ─── ABLAUF ─── */
.tel-ablauf { display: flex; flex-direction: column; gap: 0; }
.tel-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  position: relative;
}
.tel-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px; top: 42px;
  width: 1px; bottom: 0;
  background: linear-gradient(180deg, var(--border), transparent);
}
.tel-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  flex: none;
  position: relative;
  z-index: 1;
  background: var(--blight);
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.tel-step-num.done { background: var(--navy); color: var(--accent); border-color: var(--accent); }
.tel-step-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.tel-step-desc { font-size: 14px; color: var(--gray); line-height: 1.55; }
.tel-step-quote {
  margin-top: 8px;
  padding: 9px 13px;
  background: var(--off);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}
.tel-step-chip {
  display: inline-block;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--blight);
  color: var(--blue);
  border: 1px solid rgba(0,85,255,.2);
}

/* ─── NUTZEN GRID ─── */
.tel-nutzen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tel-nutzen-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: .2s;
}
.tel-nutzen-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,85,255,.08); }
.tel-nutzen-icon { font-size: 26px; margin-bottom: 12px; }
.tel-nutzen-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; margin-bottom: 7px; }
.tel-nutzen-desc { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ─── TECHNIK ─── */
.tel-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tel-tech-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 20px;
}
.tel-tech-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tel-tech-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(0,194,255,.15); color: var(--accent);
  border: 1px solid rgba(0,194,255,.25);
}
.tel-tech-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: #fff; }
.tel-tech-rows { display: flex; flex-direction: column; gap: 7px; font-size: 13px; }
.tel-tech-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.tel-tech-row:last-child { border-bottom: none; }
.tel-tech-label { color: rgba(255,255,255,.45); }
.tel-tech-val { color: #fff; font-weight: 500; }
.tel-tech-rec { background: rgba(0,85,255,.2); border-color: rgba(0,85,255,.4); }
.tel-tech-rec .tel-tech-badge { background: rgba(0,85,255,.3); color: #7eb3ff; border-color: rgba(0,85,255,.4); }

/* ─── WEITERLEITUNG ─── */
.tel-wl-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.tel-wl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.tel-wl-icon { font-size: 22px; margin-bottom: 10px; }
.tel-wl-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.tel-wl-code {
  font-family: monospace;
  font-size: 12px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 8px;
  margin: 8px 0;
  display: block;
  word-break: break-all;
}
.tel-wl-desc { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ─── PAKET ─── */
.tel-paket {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.tel-paket-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 26px; color: #fff; margin-bottom: 10px; }
.tel-paket-sub { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 20px; }
.tel-paket-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.tel-paket-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,.8); }
.tel-paket-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex: none; margin-top: 1px; }
.tel-prices { display: flex; flex-direction: column; gap: 10px; }
.tel-price-row {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tel-price-row.highlight {
  background: rgba(0,85,255,.2);
  border-color: rgba(0,85,255,.4);
}
.tel-price-label { font-size: 13px; color: rgba(255,255,255,.6); }
.tel-price-val { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; }
.tel-price-val small { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400; color: rgba(255,255,255,.4); }
.tel-btn-blue {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
  text-transform: uppercase;
  border: 0;
  border-radius: 10px;
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: .18s;
}
.tel-btn-blue:hover { background: #003ecc; transform: translateY(-2px); }

/* ─── RECHT ─── */
.tel-recht {
  background: #fff8ed;
  border: 1.5px solid #f0c060;
  border-radius: 12px;
  padding: 20px;
}
.tel-recht-head { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; color: #92600a; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.tel-recht-list { display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: #6b4a10; }
.tel-recht-list li { display: flex; gap: 8px; align-items: flex-start; }
.tel-recht-list li::before { content: '!'; font-weight: 800; color: #d08020; flex: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .tel-hero-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .tel-phone { display: none !important; }
  .tel-nutzen-grid { grid-template-columns: 1fr !important; }
  .tel-panel:first-child { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1) !important; }
  .tel-uber-bar { flex-direction: column !important; align-items: flex-start !important; }
  .tel-tech-grid { grid-template-columns: 1fr !important; }
  .tel-wl-grid { grid-template-columns: 1fr !important; }
  .tel-stats { gap: 14px !important; flex-wrap: wrap !important; }
  .tel-section, .tel-section-off { padding: 40px 16px !important; }
  .tel-h1 { font-size: clamp(32px,8vw,52px) !important; }
  .tel-h2 { font-size: clamp(22px,6vw,34px) !important; }
  .tel-sub { font-size: 14px !important; margin-bottom: 28px !important; }

  /* Ablauf: 2-spaltig → 1-spaltig */
  .tel-section .container > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  /* PAKET-Bereich – Fix für Preise sichtbar */
  .tel-paket {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding: 24px 16px !important;
    border-radius: 14px !important;
  }
  .tel-paket-title { font-size: 22px !important; line-height: 1.2 !important; }
  .tel-paket-sub { font-size: 13px !important; }
  .tel-paket-list { margin-bottom: 16px !important; }
  .tel-paket-list li { font-size: 13px !important; }
  .tel-prices {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .tel-price-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 14px !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .tel-price-val { font-size: 18px !important; }
  .tel-price-label { font-size: 12px !important; }
  .tel-btn-blue {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 14px !important;
    font-size: 13px !important;
    box-sizing: border-box !important;
  }

  /* Weiterleitung 3-spaltig → 1-spaltig */
  .tel-wl-grid { grid-template-columns: 1fr !important; }
  .tel-recht { padding: 14px !important; }
  .tel-recht-head { font-size: 13px !important; }
  .tel-recht-list li { font-size: 12px !important; }
}

/* ─── SEITEN-LAYOUT (Mehrseiten-Version) ─── */
.page { display: block; padding-top: 60px; }
