/* Modern Landing Page Styles - CrossFit Körperschmiede */

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

:root {
  --primary-red: #8b1e1e;
  --primary-red-hover: #a52525;
  --dark-bg: #0a0a0a;
  --dark-secondary: #1a1a1a;
  --light-bg: #fafafa;
  --text-primary: #0a0a0a;
  --text-secondary: #525252;
  --border-light: #e5e5e5;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky navbar */
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

/* Navigation */
.navbar {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu li a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--primary-red);
}

.nav-menu li .nav-cta {
  background: var(--primary-red);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-menu li .nav-cta:hover {
  background: var(--primary-red-hover);
  color: white;
  transform: translateY(-2px);
}

.logo {
  max-width: 110px;
  width: 100%;
  height: auto;
}

/* Hero Section */
.hero {
  background: var(--dark-bg);
  color: white;
  padding: 85px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(139, 30, 30, 0.1) 100%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  padding: 0;
  margin: 0;
}

.hero-video-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 30, 30, 0.15);
  border: 1px solid rgba(139, 30, 30, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  margin: 0 0 32px 0;
  backdrop-filter: blur(8px);
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #ffb8b8;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.highlight {
  color: var(--primary-red);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px 0;
  font-weight: 400;
}

.hero-reviews {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-reviews.desktop-only {
  margin-top: 0;
}

.hero-reviews.mobile-only {
  display: none;
  margin: 24px 0 0 0;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.review-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.review-icon {
  flex-shrink: 0;
}

.muenchen-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-platform {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.review-score {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.review-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.review-external {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.review-badge:hover .review-external {
  color: rgba(255, 255, 255, 0.9);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

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

.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-red);
  color: white;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139, 30, 30, 0.3);
}

.cta-button:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(139, 30, 30, 0.4);
}

.cta-button.primary {
  background: var(--primary-red);
}

.cta-button.large {
  padding: 20px 40px;
  font-size: 18px;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 20px;
}

.cta-button:hover .arrow {
  transform: translateX(4px);
}

.trust-text {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Replaced hero-image with hero-video for YouTube embed */
.hero-video {
  position: relative;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile-first video - shown on mobile, hidden on desktop */
.hero-video.mobile-first {
  display: none;
  margin: 32px 0 0 0;
  width: 100%;
  max-width: 100%;
}

/* Desktop-only video - hidden on mobile, shown on desktop */
.hero-video.desktop-only {
  display: block;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.centered {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Social Proof Section */
.social-proof {
  padding: 100px 0;
  background: var(--light-bg);
}

/* New container for business testimonials - centered layout */
.business-testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
}

.business-testimonials-container .testimonial-card.business-style {
  max-width: 1280px; /* Increased max-width to match the width of 3 white testimonials */
  width: 100%;
  grid-column: unset;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

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

/* Updated testimonial-images to display single combined before/after image at full width */
.testimonial-images {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-images img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 500px;
}

.testimonial-images .before,
.testimonial-images .after {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f5f5f5;
}

.transform-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-red);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.testimonial-content {
  padding: 32px;
}

.stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

/* Made stats more prominent with larger font, semi-bold weight, and darker color */
.testimonial-author span {
  font-size: 14.5px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}

/* Business-Style Testimonials */
.testimonial-card.business-style {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Removed grid-column span since business testimonials are now in separate container */
}

.testimonial-card.business-style:hover {
  border-color: rgba(139, 30, 30, 0.5);
}

.business-testimonial-layout {
  padding: 40px 48px; /* Optimized padding for better aesthetics */
}

.business-profile {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-profile img {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid var(--primary-red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.business-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.business-info strong {
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.business-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.business-info .industry {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.business-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.business-col h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.business-col.before h3 {
  color: #ef4444;
  border-bottom-color: rgba(239, 68, 68, 0.3);
}

.business-col.after h3 {
  color: #10b981;
  border-bottom-color: rgba(16, 185, 129, 0.3);
}

.business-item {
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.business-item.negative {
  color: rgba(255, 255, 255, 0.7);
}

.business-item.negative::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
  font-size: 18px;
}

.business-item.positive::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 18px;
}

.business-result {
  text-align: center;
  padding: 40px;
  background: rgba(139, 30, 30, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 30, 30, 0.3);
  margin-bottom: 32px;
}

.business-percentage {
  font-size: 72px;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.business-metric {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.business-timeline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.business-quote {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  padding-left: 24px;
  border-left: 3px solid var(--primary-red);
  padding-bottom: 35px;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background: white;
}

/* What You Get Section */
.what-you-get {
  padding: 100px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Updated grid to always show 2 columns (2x2 layout) */
  gap: 32px;
}

.benefit-card {
  background: var(--light-bg);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 30, 30, 0.2);
  background: white;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Added styles for PNG icon images inside benefit-icon */
.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.3;
}

.benefit-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.benefit-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.benefit-features li {
  font-size: 14px;
  color: var(--text-primary);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.benefit-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 16px;
}

/* Countdown Wrapper - Added strategic positioning in benefits section */
.countdown-wrapper {
  background: linear-gradient(135deg, rgba(139, 30, 30, 0.95) 0%, rgba(139, 30, 30, 1) 100%);
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 48px 0;
  box-shadow: 0 8px 32px rgba(139, 30, 30, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.countdown-heading {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 20px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 100px;
}

.countdown-number {
  font-size: 48px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.countdown-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 5px 24px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--light-bg);
}

.feature-icon-large {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Added styles for PNG icon images inside feature-icon-large */
.feature-icon-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Problem/Solution Section */
.problem-solution {
  padding: 100px 0;
  background: var(--dark-bg);
  color: white;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.ps-content {
  padding: 48px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.ps-content.problem {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.ps-content.solution {
  background: rgba(139, 30, 30, 0.1);
  border: 1px solid rgba(139, 30, 30, 0.3);
}

.ps-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ps-list li {
  font-size: 16px;
  line-height: 1.6;
  padding-left: 32px;
  position: relative;
}

/* Timeline Section */
.timeline {
  padding: 100px 0;
  background: var(--light-bg);
}

.timeline-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  background: white;
  padding: 40px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-red);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.timeline-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--primary-red);
  opacity: 0.2;
  line-height: 1;
}

.timeline-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 14px;
  background: rgba(139, 30, 30, 0.08);
  color: var(--primary-red);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

/* Coaches Section */
.coaches {
  padding: 100px 0;
  background: var(--light-bg);
}

.coaches-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.coach-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.coach-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.coach-card:nth-child(even) {
  grid-template-columns: 1fr 400px;
}

.coach-card:nth-child(even) .coach-image {
  order: 2;
}

.coach-card:nth-child(even) .coach-content {
  order: 1;
}

.coach-image {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
}

.coach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
  transition: transform 0.3s ease;
}

.coach-card:hover .coach-image img {
  transform: scale(1.05);
}

.coach-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coach-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.coach-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.coach-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.coach-quote {
  background: var(--light-bg);
  padding: 24px;
  border-left: 4px solid var(--primary-red);
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 32px;
}

.coach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
}

.stat span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.coaches-cta {
  text-align: center;
  margin-top: 60px;
  padding: 60px 40px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.coaches-cta h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.coaches-cta p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Gym Gallery Section */
.gym-gallery {
  padding: 100px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery grid variations for different image sizes */
.gallery-item.gallery-tall {
  grid-row: span 2;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}

.gallery-item.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--light-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Final CTA Section */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 30, 30, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

@media (max-width: 1024px) {
  .final-cta h2 {
    font-size: 42px;
  }
}

.final-cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  line-height: 1.6;
}

.final-cta .countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.final-cta .countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta .countdown-number {
  font-size: 48px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.final-cta .countdown-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.final-trust {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: white;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  max-width: 180px;
  margin: 0 auto 24px;
  display: block;
  opacity: 0.9;
}

.footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .hero-video.desktop-only {
    height: 400px;
  }

  .hero-video-wrapper {
    display: none;
  }

  .ps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coach-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .coach-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .coach-card:nth-child(even) .coach-image,
  .coach-card:nth-child(even) .coach-content {
    order: unset;
  }

  .coach-image {
    height: 400px;
  }

  .coach-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item.gallery-wide {
    grid-column: span 2;
  }

  .testimonial-card.business-style {
    grid-column: span 1;
  }

  .business-comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .business-percentage {
    font-size: 56px;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 60px;
    overflow-x: hidden;
  }

  .hero .container {
    padding: 0 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .hero-content > * {
    box-sizing: border-box;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  /* Show mobile-first video, hide desktop video */
  .hero-video.mobile-first {
    display: block;
    height: 220px;
    margin: 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-video.mobile-first .video-wrapper {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
  }

  .hero-video.desktop-only,
  .hero-video-wrapper {
    display: none;
  }

  .hero-reviews.desktop-only {
    display: none;
  }

  .hero-reviews.mobile-only {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 16px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-reviews.mobile-only .review-badge {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
    gap: 8px;
  }

  .hero-reviews.mobile-only .review-content {
    gap: 2px;
    flex: 1;
    min-width: 0;
  }

  .hero-reviews.mobile-only .review-platform {
    font-size: 10px;
    line-height: 1.2;
  }

  .hero-reviews.mobile-only .review-score {
    font-size: 14px;
    line-height: 1.2;
  }

  .hero-reviews.mobile-only .review-count {
    font-size: 10px;
    line-height: 1.2;
  }

  .hero-reviews.mobile-only .review-rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .hero-reviews.mobile-only .review-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .hero-reviews.mobile-only .muenchen-icon {
    width: 18px;
    height: 18px;
  }

  .hero-reviews.mobile-only .review-external {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    font-size: 18px;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-menu li .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

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

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

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

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 32px 24px;
  }

  .timeline-number {
    font-size: 40px;
  }

  .coach-image {
    height: 350px;
  }

  .coach-content {
    padding: 32px 24px;
  }

  .coach-content h3 {
    font-size: 28px;
  }

  .coach-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .coaches-cta {
    padding: 40px 24px;
  }

  .coaches-cta h3 {
    font-size: 24px;
  }

  .coaches-cta p {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 12px;
  }

  .gallery-item.gallery-tall {
    grid-row: span 1;
  }

  .gallery-item.gallery-wide {
    grid-column: span 1;
  }

  .gallery-item.gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .business-testimonial-layout {
    padding: 32px 24px;
  }

  .business-profile {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .business-profile img {
    width: 150px;
    height: 150px;
  }

  .business-info strong {
    font-size: 20px;
  }

  .business-comparison {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .business-result {
    padding: 32px 20px;
  }

  .business-percentage {
    font-size: 48px;
  }

  .business-metric {
    font-size: 16px;
  }

  .business-quote {
    font-size: 15px;
  }

  .final-cta h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .final-cta-content p {
    font-size: 18px;
  }

  .final-cta .countdown {
    gap: 12px;
  }

  .final-cta .countdown-item {
    padding: 16px 20px;
  }

  .final-cta .countdown-number {
    font-size: 32px;
  }

  .countdown {
    gap: 12px;
  }

  .countdown-item {
    padding: 16px 20px;
  }

  .countdown-number {
    font-size: 32px;
  }

  .cta-button.large {
    padding: 18px 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero .container {
    padding: 0 16px;
    margin: 0 auto;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-video {
    height: 250px;
  }

  .section-title {
    font-size: 28px;
  }

  .final-cta h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .ps-content {
    padding: 32px 24px;
  }

  .coach-image {
    height: 300px;
  }

  .coach-content h3 {
    font-size: 24px;
  }

  .coach-quote {
    padding: 20px;
    font-size: 14px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}
