/* ===== LOCAL FONTS ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/inter-800.woff2') format('woff2');
}

/* ===== VARIABLES ===== */
:root {
  --bg-dark: #000000;
  --bg-medium: #1f1e1e;
  --bg-card: #2b2a2a;
  --bg-card-highlight: rgba(199,197,197,0.6);
  --accent: #ffde59;
  --text: #ffffff;
  --text-secondary: #c7c5c5;
  --font: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 8px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid #2b2a2a;
  padding: 0 20px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.nav-logo img { height: 72px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a { color: var(--text-secondary); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-phone {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  border: 2px solid var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-phone:hover { background: var(--accent); color: #000; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  max-width: 780px;
  margin-bottom: 20px;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 36px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: var(--font);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,222,89,0.35); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #000; }

/* ===== SECTION UTILITY ===== */
.section-dark { background: var(--bg-dark); padding: 80px 20px; }
.section-medium { background: var(--bg-medium); padding: 80px 20px; }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 48px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== USP BAR ===== */
.usp-bar {
  background: var(--bg-medium);
  padding: 40px 20px;
}
.usp-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.usp-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  flex-shrink: 0;
}
.usp-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 80px 20px; }
.content-section p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 800px;
}
.content-section p:last-child { margin-bottom: 0; }
.content-section strong { color: var(--text); }

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.card:hover, .leistung-card:hover, .mythos-card:hover, .ratgeber-card:hover, .step:hover {
  background: rgba(199,197,197,0.6);
  transform: translateY(-3px);
}
.leistung-card, .mythos-card, .ratgeber-card, .step {
  transition: background 0.2s ease, transform 0.2s ease;
}
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.card p { color: var(--text-secondary); font-size: 0.95rem; }
.card-highlight {
  background: var(--bg-card-highlight);
  border: 1px solid rgba(255,222,89,0.3);
  color: #1a1a1a;
}
.card-highlight h3 { color: #111111; }
.card-highlight p { color: #2b2a2a !important; }
.card-highlight .card-number { color: #000000; }
.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.card-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

/* ===== PARTNER MARQUEE ===== */
.partner-section {
  background: rgba(199,197,197,0.6);
  padding: 60px 0;
  overflow: hidden;
}
.partner-logos-inner {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
}
.partner-track {
  display: flex;
  gap: 60px;
  flex-shrink: 0;
  padding-right: 60px; /* gap after last logo = gap between logos → seamless loop */
}
.partner-track img {
  height: 50px;
  width: auto;
  filter: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.partner-track img:hover { opacity: 1; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
.partner-label {
  text-align: center;
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  padding: 0 20px;
}

/* ===== HHS SECTION ===== */
.hhs-section { padding: 80px 20px; }
.hhs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hhs-img img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}
.hhs-content .section-label { display: block; margin-bottom: 8px; }
.hhs-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.hhs-content p { color: var(--text-secondary); margin-bottom: 16px; }
.hhs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 10px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 8px;
}

/* ===== MYTHEN ===== */
.mythen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.mythen-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
}
.mythen-myth {
  font-size: 1rem;
  font-weight: 700;
  color: #ff6b6b;
  text-decoration: line-through;
  margin-bottom: 16px;
  line-height: 1.4;
}
.mythen-truth {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.mythen-truth strong { color: var(--accent); }

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}
.process-step:last-child::after { display: none; }
.process-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.process-icon img { width: 28px; height: 28px; object-fit: contain; }
.process-step h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 0.8rem; color: var(--text-secondary); }

/* ===== TRUST BADGES ===== */
.trust-section { padding: 60px 20px; }
.trust-grid {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.trust-item img,
.trust-badges img {
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}
.trust-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 600;
}

/* ===== FAQ ACCORDION ===== */
.faq-section { padding: 80px 20px; }
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.faq-item.open { border-left-color: var(--accent); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-arrow {
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ===== GHL FORM ===== */
.form-section { background: var(--bg-dark); padding: 80px 20px; }
.form-section h2 { color: var(--text); font-family: var(--font); font-size: 2rem; margin-bottom: 12px; }
.form-section > div > p { color: var(--text-secondary); margin-bottom: 32px; }

/* ===== INTERNAL LINKS ===== */
.related-links { padding: 60px 20px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.related-link {
  display: block;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  transition: background 0.2s;
  font-weight: 600;
  font-size: 0.95rem;
}
.related-link:hover { background: #333; }
.related-link small { display: block; color: var(--text-secondary); font-weight: 400; font-size: 0.8rem; margin-top: 4px; }

/* ===== PROMOTION BOX ===== */
.promo-box {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px;
  margin: 40px 0;
}
.promo-box h3 { font-size: 1.2rem; margin-bottom: 12px; }
.promo-box p { color: var(--text-secondary); margin-bottom: 0; }

/* ===== TWO-COLUMN TEXT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
.two-col p { color: var(--text-secondary); }
.two-col h3 { font-size: 1.1rem; margin-bottom: 12px; }

/* ===== LIST STYLES ===== */
.check-list { margin: 16px 0 20px 0; }
.check-list li {
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid #2b2a2a;
  padding: 60px 20px 32px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-col h4,
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col p, .footer-col address {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: normal;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 36px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid #2b2a2a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--text-secondary); font-size: 0.8rem; }
.footer-bottom a { color: var(--text-secondary); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step::after { display: none; }
  .hhs-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 20px;
    border-bottom: 1px solid #2b2a2a;
    gap: 16px;
  }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item:last-child { grid-column: 1 / -1; }
  .mythen-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: 85vh; }
  .hero h1 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item:last-child { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .nav-phone { font-size: 0.85rem; padding: 5px 10px; }
}
