/* ============================================================
   Progressive Personal Training — Main Stylesheet
   Stack: UIkit3 + Custom CSS
   ============================================================ */

/* ===== @font-face ===== */
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed/BarlowCondensed-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed/BarlowCondensed-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed/BarlowCondensed-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed/BarlowCondensed-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/DMSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/DMSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/DMSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand Colors — aus Logo extrahiert */
  --color-primary:       #2a7a28;   /* Grün (WCAG AA konform) */
  --color-primary-dark:  #1e5c3a;   /* Grün dunkel (Hover) */
  --color-primary-deep:  #154d1a;   /* Grün tief (Gradient Ende) */
  --color-primary-bright: #4eb848;  /* Grün hell (nur für dekorative Elemente) */
  --color-silver:        #c0c0c0;   /* Silber (Logo Hauptschrift) */
  --color-silver-dark:   #999999;
  --color-dark:          #0e1a0d;   /* Sehr dunkles Grün-Schwarz */
  --color-dark-mid:      #192818;   /* Dunkles Grün */
  --color-dark-section:  #111f10;
  --color-light:         #f4f9f3;   /* Helles Grün-Weiß */
  --color-white:         #ffffff;
  --color-text:          #1a2419;   /* Fast-Schwarz mit Grün-Ton */
  --color-text-muted:    #5a6e58;

  /* Gradients */
  --gradient-main:         linear-gradient(135deg, #4eb848 0%, #2a7a28 100%);
  --gradient-main-bright:  linear-gradient(135deg, #5ecc56 0%, #4eb848 100%);
  --gradient-dark:         linear-gradient(135deg, #0e1a0d 0%, #1e3a1c 100%);
  --gradient-hero-overlay: linear-gradient(135deg, rgba(14,26,13,0.90) 0%, rgba(26,58,28,0.80) 100%);

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --fs-hero:    clamp(2.8rem, 5vw, 4.25rem);
  --fs-h1:      clamp(2.5rem, 5vw, 5rem);
  --fs-h2:      clamp(2rem, 3.5vw, 3.5rem);
  --fs-h3:      clamp(1.4rem, 2.5vw, 2rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-label:   0.7rem;

  --fw-black:   600;
  --fw-extrabold: 600;
  --fw-bold:    600;
  --fw-medium:  500;
  --fw-normal:  400;

  --lh-tight:   1.05;
  --lh-display: 1.1;
  --lh-normal:  1.6;
  --ls-wide:    0.1em;
  --ls-wider:   0.15em;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  6rem;

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(78, 184, 72, 0.18);
  --shadow-lg:   0 24px 64px rgba(78, 184, 72, 0.28);
  --shadow-dark: 0 16px 48px rgba(0,0,0,0.45);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-normal: 300ms ease;
  --t-slow:   600ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --nav-height: 72px;
}


/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast);
}


/* ===== TYPOGRAPHY UTILITIES ===== */
.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}
.section-label--light {
  color: rgba(255,255,255,0.65);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-black);
  line-height: var(--lh-display);
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.02em;
}
.section-title--light {
  color: var(--color-white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.section-sub--light {
  color: rgba(255,255,255,0.65);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}


/* ===== BUTTONS ===== */
.btn-primary,
.btn-ghost,
.btn-white,
.btn-outline-white {
  display: inline-block;
  text-decoration: none !important;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  letter-spacing: var(--ls-wide);
  text-transform:none;
  border-radius: var(--radius-pill);
  padding: 0.5rem 2rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--color-white);
  border-color: #49B043;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(78, 184, 72, 0.35);
}
.btn-ghost:hover {
  background: rgba(42, 122, 40, 0.08);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  color: var(--color-accent);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-large {
  padding: 0.6rem 2rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}


/* ===== NAVIGATION ===== */
.uk-navbar-container.nav-main,
.uk-navbar-container.nav-main.nav--scrolled {
  background: rgba(0, 0, 0, 0.538) !important;
}

.uk-navbar-container.nav-main .uk-container[uk-navbar] {
  display: flex;
  align-items: center;
  min-height: 0;
}

.uk-navbar-container.nav-main .uk-navbar-left,
.uk-navbar-container.nav-main .uk-navbar-right {
  min-height: 0;
}

.uk-navbar-container.nav-main .uk-navbar-item,
.uk-navbar-container.nav-main .uk-logo {
  min-height: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}

.uk-navbar-container.nav-main.nav--scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.20);
}


.uk-navbar-container.nav-main .uk-navbar-nav > li > a {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.90);
  padding: 0 var(--space-sm);
  transition: color var(--t-fast);
}
.uk-navbar-container.nav-main .uk-navbar-nav > li > a:hover {
  color: var(--color-white);
}

.nav-cta {
  margin-left: auto;
}

.uk-navbar-right {
  display: flex !important;
  align-items: center;
}

.uk-navbar-toggle {
  color: rgba(255,255,255,0.90);
}



/* ===== HERO ===== */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 90vh;
  margin-top: calc(var(--nav-height) * -1);
  background: #0e1a0d;
  position: relative;
}

/* Kein Glow nötig — echtes Foto als Hintergrund */

/* Optionales Foto-Hintergrund — einfach hero-bg.webp ablegen */
.hero-bg {
  z-index: 1;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* Foto vorhanden? Overlay darunter anpassen (.hero-overlay opacity) */
}

.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.70) 0%,
    rgba(0, 0, 0, 0.70) 55%,
    rgba(0, 0, 0, 0.70) 100%
  );
  z-index: 2;
}

/* Diagonal-Akzent — stärker und sichtbarer */
.hero-diagonal {
  position: absolute;
  right: 0;
  top: 0;
  width: 44%;
  height: 100%;
  background: var(--gradient-main);
  opacity: 0.14;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 3;
  pointer-events: none;
}

/* Zweiter dünnerer Diagonal-Streifen für Tiefe */
.hero-diagonal::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-top: calc(var(--nav-height) + 1rem);
  padding-bottom: 4rem;
}

.hero-label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin: 0 0 var(--space-sm);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--color-white);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.02em;
}
.hero-headline--accent {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.2rem;
  backdrop-filter: blur(8px);
  font-size: 1rem;
}
.hero-badge__stars {
  color: #f5c518;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.hero-badge__text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.95);
  font-weight: var(--fw-medium);
}

/* Hero stats (right column) */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-left: 2rem;
}
.hero-stat {
  background: rgba(140, 230, 130, 0.18);
  border: 1px solid rgba(160, 240, 150, 0.40);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow:
    0 4px 24px rgba(78, 184, 72, 0.15),
    inset 0 1px 0 rgba(200, 255, 190, 0.25);
  text-align: center;
  transition: transform var(--t-normal), background var(--t-normal), box-shadow var(--t-normal);
}
.hero-stat:hover {
  transform: translateY(-4px);
  background: rgba(140, 230, 130, 0.26);
  box-shadow:
    0 8px 36px rgba(78, 184, 72, 0.25),
    inset 0 1px 0 rgba(200, 255, 190, 0.30);
}
.hero-stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
}
.hero-stat__label {
  font-size: 0.72rem;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-top: 0.25rem;
  font-weight: var(--fw-medium);
}

.hero-scroll-hint {
  bottom: 1.5rem;
  color: rgba(255,255,255,0.45);
  animation: bounce 2s ease-in-out infinite;
  z-index: 3;
}
.hero-scroll-hint svg * {
  stroke: rgba(255,255,255,0.45) !important;
}
.hero-scroll-hint a {
  color: rgba(255,255,255,0.45);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}


/* ===== LEISTUNGEN ===== */
.section-services {
  background: var(--color-light);
  padding: var(--space-3xl) 0;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card--featured {
  background: var(--color-dark);
  border-color: transparent;
  color: var(--color-white);
}
.service-card--featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--gradient-main);
  z-index: -1;
}

.service-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.service-card__icon-wrap {
  display: flex;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}
.service-card--featured .service-card__icon-wrap {
  color: rgba(255,255,255,0.6);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: var(--fw-black);
  line-height: 1.15;
  margin: 0 0 0.3rem;
  color: inherit;
}

.service-card__duration {
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}
.service-card--featured .service-card__duration {
  color: rgba(255,255,255,0.5);
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  flex: 1;
}
.service-card__features li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.94rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text);
}
.service-card--featured .service-card__features li {
  border-bottom-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.service-card__features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}
.service-card--featured .service-card__features li::before {
  color: rgba(255,255,255,0.6);
}

.service-card__cta {
  margin-top: 1.8rem;
  text-align: center;
}
.service-card--featured .service-card__cta.btn-ghost {
  border-color: rgba(255,255,255,0.3);
  color: var(--color-white);
}
.service-card--featured .service-card__cta.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}


/* ===== COACHES ===== */
.section-coaches {
  background: var(--color-white);
  padding: var(--space-3xl) 0;
}

.coach-photo-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.coach-photo-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  opacity: 0.08;
  z-index: 1;
  border-radius: var(--radius-lg);
}

.coach-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
}

.coach-photo-hint {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-family: monospace;
}

.coach-name-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(14, 26, 13, 0.88);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  z-index: 2;
}
.coach-name-badge__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: var(--fw-black);
  color: var(--color-white);
  letter-spacing: -0.01em;
}
.coach-name-badge__title {
  display: block;
  font-size: 0.78rem;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}

.coach-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-text);
  border-left: 4px solid var(--color-primary);
  margin: 0 0 var(--space-md);
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-style: italic;
}

.coach-bio {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

/* Stats */
.coach-stats {
  margin: var(--space-lg) 0;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.coach-stat {
  text-align: center;
}
.coach-stat__number {
  display: inline;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: var(--fw-black);
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.coach-stat__plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--fw-black);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.coach-stat__label {
  font-size: 0.72rem;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  font-weight: var(--fw-medium);
  display: block;
}


/* ===== ERGEBNISSE ===== */
.section-results {
  background: var(--color-dark);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.result-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-dark-mid);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--t-normal);
}
.result-card:hover {
  transform: translateY(-4px);
}

.result-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.result-card__images--single {
  display: block;
}

.result-card__images--single img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.result-card__info {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.result-card__side {
  position: relative;
}

.result-card__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.result-card__img-placeholder--before {
  background: rgba(255,255,255,0.04);
}
.result-card__img-placeholder--after {
  background: rgba(78, 184, 72, 0.12);
}

.result-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.result-card__label {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.result-card__label--after {
  color: var(--color-white);
  background: rgba(78, 184, 72, 0.65);
}

.result-card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
}
.result-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.02em;
}
.result-card__duration {
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-primary-bright);
}

/* Slider navigation */
.slider-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--t-fast);
}
.slider-nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Dotnav */
.results-dots {
  margin-top: 2rem !important;
}
.results-dots .uk-dotnav > * > * {
  background: rgba(255,255,255,0.25);
  border-color: transparent;
}
.results-dots .uk-dotnav > .uk-active > * {
  background: var(--color-primary);
}


/* ===== TESTIMONIALS ===== */
.section-testimonials {
  background: #f8f9fa;
  padding: var(--space-3xl) 0;
}

.reviews-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1a1a1a;
  font-weight: var(--fw-black);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.reviews-source {
  font-size: 0.95rem;
  color: #34a853;
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-lg);
}
.reviews-source__brand {
  color: #5f6368;
}

.reviews-slider-wrap {
  position: relative;
  padding: 0 2rem;
}

/* Google Review Card */
.greviews-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.25rem 1.1rem;
  border: 1px solid #e8eaed;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: box-shadow var(--t-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.greviews-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.greviews-card__header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.greviews-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-body);
  object-fit: cover;
}

.greviews-card__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.greviews-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.greviews-card__time {
  font-size: 0.75rem;
  color: #70757a;
  margin-top: 1px;
}

.greviews-card__gicon {
  flex-shrink: 0;
}

.greviews-card__stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.5rem;
}
.greviews-card__verified {
  flex-shrink: 0;
}

.greviews-card__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #3c4043;
  flex: 1;
  margin: 0;
}

/* Slider nav */
.reviews-nav {
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border: 1px solid #e8eaed;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #5f6368 !important;
}
.reviews-nav:hover {
  background: #f1f3f4;
}

/* Footer */
.reviews-footer {
  text-align: center;
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.reviews-total {
  font-size: 0.9rem;
  color: #5f6368;
  margin: 0;
}
.reviews-total strong {
  color: #202124;
}

.btn-reviews {
  display: inline-flex;
  align-items: center;
  background: #34a853;
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: 0.95rem;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
}
.btn-reviews:hover {
  background: #2d9248;
  box-shadow: 0 4px 16px rgba(52,168,83,0.35);
  color: #fff;
}

/* ===== VIDEOS ===== */
.section-videos {
  background: var(--color-dark);
  padding: var(--space-3xl) 2rem;
  overflow: hidden;
}

.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-dark-mid);
  border: 1px solid rgba(255,255,255,0.08);
}

.video-card__thumb {
  position: relative;
  cursor: pointer;
  height: 380px;
  overflow: hidden;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-normal);
}

.video-card__thumb:hover img {
  transform: scale(1.04);
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: none;
}

.video-card__play::before {
  content: '';
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(42, 122, 40, 0.6);
  animation: pulse-play 2s infinite;
}

.video-card__play::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

@keyframes pulse-play {
  0%   { box-shadow: 0 0 0 0 rgba(78, 184, 72, 0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(78, 184, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78, 184, 72, 0); }
}

.video-card__thumb:hover .video-card__play::before {
  background: var(--color-primary-dark);
}

.video-card__thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__iframe {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.video-card__iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-cookie-notice {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  z-index: 2;
}

.video-cookie-notice p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
  max-width: 280px;
  line-height: 1.5;
}

.video-cookie-notice__btn {
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.video-cookie-notice__btn:hover {
  background: var(--color-primary-dark);
}

.calendly-cookie-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #f5f5f5;
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  min-height: 300px;
}

.calendly-cookie-notice p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
  max-width: 320px;
  line-height: 1.5;
}

.calendly-cookie-notice__btn {
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.calendly-cookie-notice__btn:hover {
  background: var(--color-primary-dark);
}

/* ===== FAQ ===== */
.section-faq {
  background: var(--color-white);
  padding: var(--space-3xl) 0;
}

.faq-list {
  border-top: 1px solid rgba(0,0,0,0.07);
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-text) !important;
  padding: 1.4rem 3rem 1.4rem 0;
  transition: color var(--t-fast);
}
.faq-question:hover {
  color: var(--color-primary) !important;
}
.uk-open .faq-question {
  color: var(--color-primary) !important;
}

/* UIkit accordion arrow override */
.uk-accordion-title::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline fill='none' stroke='%232a7a28' stroke-width='1.5' points='5 8 10 13 15 8'/%3E%3C/svg%3E") !important;
}

.faq-answer {
  padding: 0 3rem var(--space-md) 0;
}
.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-2xl);
  padding: var(--space-xl) 2rem;
  background: var(--color-light);
  border-radius: var(--radius-lg);
}
.faq-cta p {
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
}


/* ===== KONTAKT ===== */
.section-contact {
  padding: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.contact-bg {
  background: var(--gradient-dark);
}
.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(78, 184, 72, 0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(42, 122, 40, 0.10) 0%, transparent 50%);
}

.contact-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1rem;
  width: 100%;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  color: var(--color-white);
  margin: var(--space-sm) 0 var(--space-sm);
  letter-spacing: -0.02em;
}

.contact-sub {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

/* Kontakt Info Grid */
.contact-info-grid {
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  text-align: left;
}

.contact-info-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-info-text {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.contact-info-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none;
}
.contact-info-btn:hover {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}

.contact-meta {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  text-align: center;
}
.contact-meta p { margin-bottom: 1rem; }

.contact-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.contact-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Contact Modal */
.impressum-modal-body {
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem 2rem !important;
  overflow-y: auto;
}
.impressum-modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: var(--fw-black);
  color: var(--color-text);
  margin: 0 0 1.5rem;
}
.impressum-modal-body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin: 1.2rem 0 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.impressum-modal-body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.impressum-modal-body a {
  color: var(--color-primary);
}

.contact-modal-body {
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem 2rem !important;
  max-width: 520px !important;
}
.contact-modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: var(--fw-black);
  color: var(--color-text);
  margin: 0 0 0.3rem;
}
.contact-modal-sub {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.contact-input {
  border: 1.5px solid rgba(0,0,0,0.1) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.85rem 1rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  transition: border-color var(--t-fast), box-shadow var(--t-fast) !important;
  height: auto !important;
}
.contact-input:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(42, 122, 40, 0.12) !important;
  outline: none !important;
}

.contact-form-legal {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.8rem;
}
.contact-form-legal a {
  color: var(--color-primary);
}


/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-dark);
  padding: 2rem 0;
}
.footer-inner {
  gap: 1.5rem;
}
.footer-brand img {
  margin-bottom: 0.75rem;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  margin: 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast);
}
.footer-links a:hover {
  color: var(--color-white);
}


/* ===== UIkit OVERRIDES ===== */

/* Modal overlay */
.uk-modal-dialog {
  border-radius: var(--radius-lg);
}

/* Notification */
.uk-notification-message {
  font-family: var(--font-body);
  border-radius: var(--radius-md);
}

/* Scrollspy animations */
[uk-scrollspy]:not(.uk-animation-fade):not(.uk-animation-slide-bottom-medium):not(.uk-animation-slide-bottom-small):not(.uk-animation-slide-left-medium):not(.uk-animation-slide-right-medium) {
  opacity: 1;
}


/* ===== RESPONSIVE ===== */

/* Tablet */
@media (min-width: 640px) and (max-width: 959px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
    --fs-hero: clamp(2.5rem, 6vw, 4rem);
    --fs-h2: clamp(1.8rem, 4vw, 3rem);
  }

  /* Hero */
  .hero-content {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 3rem;
  }
  .hero-stats {
    padding-left: 1rem;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0;
  }
  .hero-stat {
    padding: 0.75rem 1rem;
  }
  .hero-stat__number {
    font-size: 2rem;
  }
  .hero-stat__label {
    font-size: 0.65rem;
  }
  .btn-large {
    font-size: 0.88rem;
    padding: 0.55rem 1.4rem;
  }

  /* Services */
  .service-card {
    padding: 2rem 1.5rem;
  }

  /* Coach */
  .coach-photo {
    height: 380px;
  }
  .coach-quote {
    font-size: 1.3rem;
  }
  .coach-stat__number {
    font-size: 2.2rem;
  }

  /* Testimonials */
  .reviews-slider-wrap {
    padding: 0 1.5rem;
  }

  /* Contact */
  .contact-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  .contact-ctas {
    flex-direction: column;
    align-items: center;
  }
  .contact-ctas a,
  .contact-ctas button {
    width: 100%;
    text-align: center;
  }

  /* Section header */
  .section-header {
    margin-bottom: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 639px) {
  :root {
    --space-3xl: 3.5rem;
    --space-2xl: 2.5rem;
    --fs-hero: clamp(2.4rem, 11vw, 3.2rem);
  }

  /* Hero — allow section to grow taller than viewport on small screens */
  .hero-section {
    height: auto !important;
    min-height: 80svh;
    align-items: flex-start;
  }
  .hero-scroll-hint-mobile {
    padding: 1.2rem 0 1rem;
    color: rgba(255,255,255,0.45);
    animation: bounce 2s ease-in-out infinite;
  }
  .hero-scroll-hint-mobile svg * {
    stroke: rgba(255,255,255,0.45) !important;
  }
  .hero-scroll-hint-mobile a {
    color: rgba(255,255,255,0.45);
  }
  .hero-content {
    padding-top: calc(var(--nav-height) + 1.5rem);
    padding-bottom: 0.5rem;
    text-align: center;
  }
  .hero-content .uk-grid > * {
    text-align: center;
  }
  .hero-label {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .hero-headline {
    margin-bottom: 0.75rem;
    text-align: center;
  }
  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
  }
  .hero-ctas a {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.85rem 1.2rem;
  }
  .hero-badge {
    display: flex;
    margin: 0 auto 0;
  }
  .hero-stats {
    padding-left: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
  }
  .hero-stat {
    flex: 1;
    padding: 0.8rem 0.4rem;
    min-width: 0;
  }
  .hero-stat__number {
    font-size: 1.6rem;
    font-weight: 700;
  }
  .hero-stat__label {
    font-size: 0.58rem;
    font-weight: 600;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }

  /* Contact */
  .contact-info-grid > * {
    padding-left: 0 !important;
  }
  .contact-ctas {
    flex-direction: column;
    align-items: center;
  }
  .contact-ctas a,
  .contact-ctas button {
    width: 100%;
    text-align: center;
  }

  /* Coach */
  .coach-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .coach-stat__label {
    font-size: 0.55rem;
  }
  .coach-stat__number {
    font-size: 2rem;
  }

  /* Footer */
  .site-footer {
    padding: 3.5rem 0;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }

  /* Services */
  .service-card {
    margin-bottom: 1rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 1.05rem;
    padding-right: 2rem;
  }
}

@media (max-width: 480px) {
  .uk-navbar-right {
    display: none !important;
  }
  .uk-navbar-left {
    flex: 1;
    justify-content: center;
  }
}

/* Print */
@media print {
  .nav-main, .hero-scroll-hint, .contact-ctas { display: none; }
  body { color: #000; }
}


/* ===== KLARO Button-Reihenfolge ===== */
.klaro .cn-body .cn-buttons {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.klaro .cn-body .cn-buttons .cm-btn-accept-all { order: 1; }
.klaro .cn-body .cn-buttons .cm-btn-accept     { order: 1; }
.klaro .cn-body .cn-buttons .cm-btn-success    { order: 1; }
.klaro .cn-body .cn-buttons .cm-btn-decline    { order: 2; }
.klaro .cn-body .cn-buttons .cm-btn-danger     { order: 2; }
.klaro .cn-body .cn-buttons .cm-btn-info       { order: 3; margin-left: auto; }
.klaro .cn-body .cn-buttons .cm-btn-lern-more  { order: 3; margin-left: auto; }
