/* ============================================================
   sports-imaging.com — Global Stylesheet
   Design: Minimalist premium — Adidas meets Mayo Clinic
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --navy:      #0D1B2A;
  --navy-mid:  #162436;
  --navy-soft: #1E3148;
  --cyan:      #00B4D8;
  --cyan-dark: #0096B7;
  --cyan-glow: rgba(0, 180, 216, 0.15);
  --white:     #FFFFFF;
  --off-white: #F8F9FA;
  --gray-100:  #F1F3F5;
  --gray-200:  #E9ECEF;
  --gray-400:  #ADB5BD;
  --gray-600:  #6C757D;
  --gray-800:  #343A40;
  --text-main: #0D1B2A;
  --text-body: #2C3E50;
  --text-muted:#6C757D;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08);
  --shadow-md: 0 4px 16px rgba(13,27,42,0.12);
  --shadow-lg: 0 12px 40px rgba(13,27,42,0.16);
  --shadow-xl: 0 24px 64px rgba(13,27,42,0.20);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 0.75rem;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--gray {
  background: var(--off-white);
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.section--dark .section-header p {
  color: rgba(255,255,255,0.6);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--cyan);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
}

.navbar__logo-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.navbar__logo-sub {
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__nav a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--white);
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
  width: 100%;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.navbar__mobile-menu.open { display: flex; }

.navbar__mobile-menu a {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__mobile-menu a:hover { color: var(--white); }
.navbar__mobile-menu a:last-child { border-bottom: none; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0, 180, 216, 0.05) 0%, transparent 50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero__title span {
  color: var(--cyan);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__stat {
  background: rgba(13,27,42,0.8);
  padding: 24px 20px;
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-value span {
  color: var(--cyan);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.hero__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-4px);
}

.hero__card-icon {
  width: 48px;
  height: 48px;
  background: var(--cyan-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.hero__card-title {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hero__card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.hero__cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  white-space: nowrap;
}

.trust-bar__items {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.trust-bar__item {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-bar__item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--cyan-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan-dark);
  font-family: var(--font-head);
  transition: gap var(--transition);
}

.service-card__link:hover { gap: 10px; }

/* --- Feature List --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  background: var(--cyan-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-item__content h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.feature-item__content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* --- Profile Card --- */
.profile-visual {
  position: relative;
}

.profile-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}

.profile-img-placeholder__icon {
  font-size: 5rem;
  opacity: 0.6;
}

.profile-img-placeholder__text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.profile-img-placeholder__sub {
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.profile-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.credentials-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.credential__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.credential__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

.credential__text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* --- Quote Block --- */
.quote-block {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 32px;
  font-size: 12rem;
  font-family: Georgia, serif;
  color: rgba(0, 180, 216, 0.1);
  line-height: 1;
  pointer-events: none;
}

.quote-block__text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.quote-block__author {
  font-size: 0.875rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--gray-200);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step__number {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cyan);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.process-step__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #F59E0B;
  font-size: 0.9rem;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-section .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Leistungen specific --- */
.leistungen-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 80px) 0 80px;
}

.leistungen-hero h1 { color: var(--white); }
.leistungen-hero p { color: rgba(255,255,255,0.62); font-size: 1.15rem; }

.leistung-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}

.leistung-detail:last-of-type { border-bottom: none; }

.leistung-detail:nth-child(even) { background: var(--off-white); }

.leistung-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.leistung-icon-large {
  font-size: 4rem;
  margin-bottom: 24px;
  display: block;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  background: var(--cyan-glow);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--cyan-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  font-family: var(--font-head);
}

.tag--navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* --- Team page --- */
.team-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 80px) 0 80px;
}

.team-hero h1 { color: var(--white); }
.team-hero p { color: rgba(255,255,255,0.62); font-size: 1.15rem; }

.team-profile {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.expertise-item {
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--cyan);
}

.expertise-item h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.expertise-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--cyan);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.timeline-item__year {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan-dark);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-item__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Football page --- */
.fussball-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.fussball-hero::before {
  content: '⚽';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28rem;
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
}

.fussball-hero h1 { color: var(--white); }
.fussball-hero p { color: rgba(255,255,255,0.62); font-size: 1.15rem; }

.injury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.injury-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.injury-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.injury-card__icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.injury-card__title { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.injury-card__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* --- Fellowships page --- */
.fellowships-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 80px) 0 80px;
}

.fellowships-hero h1 { color: var(--white); }
.fellowships-hero p { color: rgba(255,255,255,0.62); font-size: 1.15rem; }

.lang-switch {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 4px;
  gap: 4px;
  margin-top: 28px;
}

.lang-btn {
  padding: 8px 20px;
  border-radius: calc(var(--radius-md) - 4px);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  border: none;
}

.lang-btn.active {
  background: var(--cyan);
  color: var(--navy);
}

.fellowship-content { display: none; }
.fellowship-content.active { display: block; }

.fellowship-tier {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.fellowship-tier:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-6px);
}

.fellowship-tier--featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), var(--shadow-md);
}

.fellowship-tier__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--cyan);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fellowship-tier__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fellowship-tier__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.fellowship-tier__duration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-glow);
  color: var(--cyan-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.fellowship-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.fellowship-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.fellowship-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.fellowship-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Contact page --- */
.kontakt-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 80px) 0 80px;
}

.kontakt-hero h1 { color: var(--white); }
.kontakt-hero p { color: rgba(255,255,255,0.62); font-size: 1.15rem; }

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kontakt-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.kontakt-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.kontakt-info-item__title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.kontakt-info-item__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}

/* --- Contact Form --- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--white);
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

.form-control::placeholder { color: var(--gray-400); }

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C757D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit {
  margin-top: 8px;
}

.calendly-embed {
  background: var(--off-white);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.calendly-embed__icon { font-size: 3.5rem; }
.calendly-embed__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.calendly-embed__desc { font-size: 0.95rem; color: var(--text-muted); max-width: 360px; }
.calendly-embed__note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 8px;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer__bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* --- Page headers for inner pages --- */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0, 180, 216, 0.07) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 700px; }
.page-hero p {
  color: rgba(255,255,255,0.62);
  font-size: 1.15rem;
  max-width: 600px;
  margin-top: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb__sep { color: rgba(255,255,255,0.2); }

/* --- Divider --- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--cyan);
  margin: 24px 0;
  border-radius: 2px;
}

.divider--center { margin-left: auto; margin-right: auto; }

/* --- Chips / Pills --- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-cyan { color: var(--cyan) !important; }
.text-muted { color: var(--text-muted) !important; }

.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }

.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 48px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .fellowship-tiers { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .injury-grid { grid-template-columns: repeat(2, 1fr); }
  .team-profile { grid-template-columns: 1fr; max-width: 800px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .section { padding: 64px 0; }

  .navbar__nav,
  .navbar__cta { display: none; }

  .navbar__hamburger { display: flex; }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 0;
  }

  .hero__stats { grid-template-columns: repeat(3, 1fr); }

  .hero__visual { display: none; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .two-col--reverse { direction: ltr; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .injury-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

  .leistung-content { grid-template-columns: 1fr; gap: 40px; }

  .kontakt-layout { grid-template-columns: 1fr; }

  .contact-form { padding: 28px 20px; }

  .form-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

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

  .hero__badge { font-size: 0.68rem; }

  .quote-block { padding: 32px 24px; }

  .trust-bar__items { gap: 24px; }
}

@media (max-width: 480px) {
  :root { --max-width: 100%; }

  .container { padding: 0 16px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .hero__stats { grid-template-columns: 1fr; gap: 2px; }

  .hero__stat-value { font-size: 1.6rem; }

  .footer__grid { grid-template-columns: 1fr; }

  .fellowship-tier { padding: 28px 20px; }
}
