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

:root {
  --anthrazit: #1e2022;
  --anthrazit-2: #2B2D2F;
  --cyan:      #00C2C7;
  --cyan-dk:   #009fa4;
  --white:     #ffffff;
  --off:       #f4f5f6;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --radius:    6px;
  --shadow:    0 2px 16px rgba(0,0,0,.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--anthrazit);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .3px;
}
.btn-primary:hover { background: var(--cyan-dk); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  color: var(--anthrazit);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-full { width: 100%; text-align: center; }
.btn-nav {
  background: var(--cyan);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: background .2s;
}
.btn-nav:hover { background: var(--cyan-dk); }

/* ── Logo ──────────────────────────────────────────────────────────────────── */
.logo { display: flex; align-items: baseline; gap: 0; }
.logo-haut {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--anthrazit);
}
.logo-nah {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--cyan);
}
.logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--muted);
  margin-left: 8px;
  text-transform: uppercase;
  align-self: center;
}

/* ── Nav ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:not(.btn-nav):hover { color: var(--cyan); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--anthrazit);
  border-radius: 2px;
  transition: .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu .btn-nav { text-align: center; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px 24px 64px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 64px;
}
.hero-content { flex: 1; }

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.hero-wordmark {
  display: flex;
  gap: 0;
  line-height: 1;
  margin-bottom: 24px;
}
.hw-haut {
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--anthrazit);
}
.hw-nah {
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--cyan);
}
.hero-claim {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--anthrazit-2);
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Stats Block */
.hero-visual {
  flex: 0 0 auto;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 200px;
}
.hero-stat {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-divider {
  height: 1px;
  background: var(--border);
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ── Section Head ──────────────────────────────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ── Leistungen ────────────────────────────────────────────────────────────── */
.leistungen { padding: 96px 24px; background: var(--off); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  border-top: 3px solid transparent;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border-top-color: var(--cyan);
}
.card--accent {
  background: var(--anthrazit);
  color: var(--white);
  border-top-color: var(--cyan);
}
.card--accent p { color: rgba(255,255,255,.65); }
.card--accent li { color: rgba(255,255,255,.8); }
.card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.card--accent .card-cat { color: var(--cyan); }
.card ul { display: flex; flex-direction: column; gap: 7px; }
.card li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}
.card--accent li { color: rgba(255,255,255,.75); }

/* ── Galerie ───────────────────────────────────────────────────────────────── */
.galerie { overflow: hidden; }
.galerie-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 420px;
}
.galerie-bild {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.galerie-bild--1 {
  background-color: var(--anthrazit);
  background-image: url('assets/foto-1.jpg'), url('https://source.unsplash.com/1200x840/?football,jersey,kit');
}
.galerie-bild--2 {
  background-color: #2a3540;
  background-image: url('assets/foto-2.jpg'), url('https://source.unsplash.com/600x840/?football,training,players');
}
.galerie-bild--3 {
  background-color: #1a2830;
  background-image: url('assets/foto-3.jpg'), url('https://source.unsplash.com/600x840/?football,team,soccer');
}
.galerie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.galerie-overlay span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ── USPs ──────────────────────────────────────────────────────────────────── */
.usps { padding: 80px 24px; }
.usps-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.usp-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--cyan);
  margin-bottom: 10px;
}
.usp h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.usp p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Ablauf ────────────────────────────────────────────────────────────────── */
.ablauf { padding: 96px 24px; background: var(--anthrazit); color: var(--white); }
.ablauf .section-head h2 { color: var(--white); }
.ablauf .section-head p { color: rgba(255,255,255,.55); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}
.step-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }
.step-arrow {
  flex: 0;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  opacity: .4;
  margin-top: 28px;
  position: relative;
}
.step-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--cyan);
  opacity: 1;
}

/* ── Kontakt ───────────────────────────────────────────────────────────────── */
.kontakt { padding: 96px 24px; }
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.kontakt-text .label { margin-bottom: 12px; }
.kontakt-text h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.kontakt-text p { color: var(--muted); font-size: 16px; margin-bottom: 32px; line-height: 1.7; }
.kontakt-infos { display: flex; flex-direction: column; gap: 10px; }
.kontakt-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--anthrazit);
  transition: color .2s;
}
.kontakt-link:hover { color: var(--cyan); }
.kontakt-wa { color: #25D366; }
.kontakt-wa:hover { color: #1da851; }

.kontakt-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--anthrazit);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--cyan); }
textarea { resize: vertical; }
.form-hint { font-size: 12px; color: var(--muted); text-align: center; }

/* ── Shop Teaser ───────────────────────────────────────────────────────────── */
.shop-teaser {
  padding: 80px 24px;
  background: var(--off);
  border-top: 1px solid var(--border);
}
.shop-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.shop-teaser h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
  margin-top: 10px;
}
.shop-teaser p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
}
.shop-badge {
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--cyan);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.shop-badge-text {
  font-size: 26px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -1px;
}
.shop-badge-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 768px) {
  .shop-teaser-inner { flex-direction: column; text-align: center; }
  .shop-teaser p { margin: 0 auto; }
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer { background: var(--anthrazit); padding: 32px 24px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { display: flex; align-items: baseline; }
.footer .logo-haut { font-size: 18px; color: var(--white); }
.footer .logo-nah { font-size: 18px; color: var(--cyan); }
.footer .logo-sub { color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); }

/* ── WhatsApp Float Button ─────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 20px 13px 16px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.wa-float-label { white-space: nowrap; }

@media (max-width: 480px) {
  .wa-float { padding: 13px; border-radius: 4px; }
  .wa-float-label { display: none; }
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 88px;
    text-align: center;
    gap: 40px;
  }
  .hero-wordmark { justify-content: center; }
  .hw-haut, .hw-nah { font-size: clamp(60px, 18vw, 100px); letter-spacing: -3px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: -1; width: 100%; }
  .hero-stats { flex-direction: row; justify-content: center; }

  .galerie-grid { grid-template-columns: 1fr; height: auto; }
  .galerie-bild { height: 220px; }
  .galerie-bild--2, .galerie-bild--3 { display: none; }

  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; text-align: center; }
  .step-arrow { display: none; }

  .kontakt-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .hero-stats { flex-direction: column; width: 100%; }
}
