:root {
  color-scheme: light;
  /* App Brand Colors from app_theme.dart */
  --primary: #FF6B35;
  --primary-dark: #E54E1A;
  --primary-light: #FF8F66;
  --primary-overlay-10: rgba(255, 107, 53, 0.10);
  --primary-overlay-20: rgba(255, 107, 53, 0.20);

  /* Surfaces */
  --background: #FAFAFA;
  --surface: #FFFFFF;
  --surface-variant: #FFF0E8;

  /* Text */
  --text-primary: #212121;
  --text-secondary: #5A5A5A;
  --text-tertiary: #7E7E7E;

  /* Borders & Shadows */
  --border-light: #E0E0E0;
  --border-default: #BDBDBD;
  --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.08);
  --shadow-md: 0 4px 16px rgba(255, 107, 53, 0.12);
  --shadow-lg: 0 8px 32px rgba(255, 107, 53, 0.16);

  /* Semantic Colors */
  --success: #4CAF50;
  --warning: #FF9800;
  --error: #F44336;
  --info: #2196F3;

  /* Spacing (from app_theme.dart) */
  --gap-4: 4px;
  --gap-8: 8px;
  --gap-12: 12px;
  --gap-16: 16px;
  --gap-20: 20px;
  --gap-24: 24px;
  --gap-32: 32px;
  --gap-48: 48px;
  --gap-64: 64px;

  /* Border Radius (from app_theme.dart) */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-xxl: 20px;
  --radius-full: 999px;

  /* Typography - Sora font from Google Fonts */
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  margin: 0;
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.link-highlight {
  color: var(--primary);
  font-weight: 600;
}

.link-highlight:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--gap-16) 0;
  gap: var(--gap-24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-12);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.brand__logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: var(--radius-lg);
  box-shadow: none;
  transition: transform 0.2s ease;
}

.brand__logo:hover {
  transform: scale(1.05);
}

.brand__logo svg,
.brand__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.brand__name {
  color: var(--text-primary);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: var(--gap-32);
}

.nav-list {
  display: flex;
  gap: var(--gap-24);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: var(--gap-8) var(--gap-12);
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-list a:hover {
  color: var(--primary);
  background-color: var(--primary-overlay-10);
}

.nav-cta {
  padding: var(--gap-12) var(--gap-24);
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-8);
  padding-left: var(--gap-16);
  border-left: 1px solid var(--border-light);
}

.language-switcher__button {
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.8125rem;
  border-radius: var(--radius-full);
  padding: var(--gap-8) var(--gap-12);
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-switcher__button:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.language-switcher__button.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  padding: var(--gap-64) 0;
  background: linear-gradient(180deg, var(--surface-variant) 0%, var(--background) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-overlay-10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  display: grid;
  align-items: center;
  gap: var(--gap-64);
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--gap-24);
}

.preheading {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-size: 0.875rem;
}

.preheading::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.hero h1 {
  margin: 0;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-16);
  margin-top: var(--gap-8);
}

.cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-8);
  padding: var(--gap-16) var(--gap-32);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.cta {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.secondary-cta {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.secondary-cta:hover {
  background: var(--primary-overlay-10);
}

/* Hero Visual with Mascot */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mascot-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-overlay-10) 0%, var(--surface-variant) 100%);
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mascot-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--primary-overlay-20), transparent 60%);
  animation: pulse 3s ease-in-out infinite;
}

.mascot-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.mascot-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-24);
  padding: var(--gap-48);
}

.mascot-placeholder img {
  width: 180px;
  height: 180px;
  filter: drop-shadow(0 8px 24px rgba(255, 107, 53, 0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.mascot-placeholder p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
  max-width: 240px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features {
  padding: var(--gap-64) 0;
  background: var(--surface);
}

.features__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--gap-64);
}

.features__header h2 {
  margin-bottom: var(--gap-16);
}

.features__header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--gap-32);
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--primary-overlay-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap-20);
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: var(--gap-12);
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   SCREENSHOTS SECTION
   ============================================================ */

.screenshots {
  padding: var(--gap-64) 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-variant) 100%);
}

.screenshots__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--gap-48);
}

.screenshots__header h2 {
  margin-bottom: var(--gap-16);
}

.screenshots__header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

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

.screenshot-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.screenshot-image {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  background: var(--surface-variant);
}

.screenshot-placeholder {
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, var(--primary-overlay-10) 0%, var(--surface-variant) 50%, var(--primary-overlay-10) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.screenshot-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.screenshot-placeholder span {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.5;
}

.screenshot-caption {
  padding: var(--gap-20);
  text-align: center;
}

.screenshot-caption h4 {
  font-size: 1.125rem;
  margin-bottom: var(--gap-8);
  color: var(--text-primary);
}

.screenshot-caption p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ============================================================
   STATS SECTION
   ============================================================ */

.stats {
  padding: var(--gap-64) 0;
  background: var(--primary);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap-48);
  text-align: center;
}

.stat-card h3 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--gap-8);
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  padding: var(--gap-64) 0;
  background: var(--surface);
}

.cta-section__content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-section h2 {
  margin-bottom: var(--gap-20);
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--gap-32);
  line-height: 1.7;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-16);
  justify-content: center;
  margin-bottom: var(--gap-20);
}

.cta-form input {
  flex: 1 1 280px;
  max-width: 400px;
  padding: var(--gap-16) var(--gap-24);
  border-radius: var(--radius-full);
  border: 2px solid var(--border-default);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: var(--surface);
}

.cta-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-overlay-10);
}

.cta-form button {
  padding: var(--gap-16) var(--gap-32);
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
  font-family: inherit;
}

.cta-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.disclaimer {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

.disclaimer a:hover {
  color: var(--primary-dark);
}

/* ============================================================
   SOURCE NOTICE
   ============================================================ */

.source-note {
  padding: var(--gap-48) 0;
  background: var(--surface-variant);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.source-note__content {
  max-width: 720px;
  margin: 0 auto;
}

.source-note h3 {
  margin-bottom: var(--gap-16);
}

.source-note p {
  color: var(--text-secondary);
  margin-bottom: var(--gap-12);
  line-height: 1.7;
}

.source-note p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--border-light);
  background: var(--surface);
  padding: var(--gap-48) 0 var(--gap-32);
}

.site-footer__content {
  display: grid;
  gap: var(--gap-32);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-12);
  font-weight: 600;
  font-size: 1.125rem;
}

.footer-brand .brand__logo {
  width: 40px;
  height: 40px;
}

.footer-brand .brand__logo svg,
.footer-brand .brand__logo img {
  width: 28px;
  height: 28px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-16) var(--gap-24);
  justify-content: center;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  padding: var(--gap-8) var(--gap-12);
  border-radius: var(--radius-md);
}

.footer-links a:hover {
  color: var(--primary);
  background: var(--primary-overlay-10);
}

.site-footer__legal {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

/* ============================================================
   RESPONSIVE DESIGN (Mobile-First)
   ============================================================ */

@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
    padding: var(--gap-12) 0;
  }

  .site-header nav {
    width: 100%;
    flex-direction: column;
    gap: var(--gap-16);
  }

  .nav-list {
    width: 100%;
    justify-content: center;
    gap: var(--gap-8);
  }

  .nav-list a {
    font-size: 0.875rem;
    padding: var(--gap-8);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
    border-left: none;
    padding-left: 0;
  }

  .language-switcher__button {
    flex: 1;
    text-align: center;
  }

  .hero {
    padding: var(--gap-48) 0;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: var(--gap-48);
  }

  .hero__copy {
    text-align: center;
  }

  .lead {
    max-width: 100%;
  }

  .cta-group {
    justify-content: center;
    width: 100%;
  }

  .cta,
  .secondary-cta {
    flex: 1;
    min-width: 140px;
  }

  .mascot-container {
    max-width: 320px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-24);
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-24);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-32);
  }

  .cta-form {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-form input {
    max-width: 100%;
  }

  .cta-form button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero__content {
    gap: var(--gap-48);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  border-top: 2px solid var(--primary);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: var(--gap-24) 0;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-32);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1 1 400px;
}

.cookie-banner__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--gap-8);
}

.cookie-banner__description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.cookie-banner__link:hover {
  color: var(--primary-dark);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--gap-12);
  flex-wrap: wrap;
}

.cookie-banner__button {
  padding: var(--gap-12) var(--gap-24);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.cookie-banner__button--accept {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.cookie-banner__button--accept:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-banner__button--decline {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-default);
}

.cookie-banner__button--decline:hover {
  background: var(--primary-overlay-10);
  border-color: var(--primary);
  color: var(--primary);
}

/* Responsive adjustments for cookie banner */
@media (max-width: 768px) {
  .cookie-banner {
    padding: var(--gap-20) 0;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: var(--gap-20);
  }

  .cookie-banner__text {
    text-align: center;
  }

  .cookie-banner__actions {
    flex-direction: column;
    gap: var(--gap-12);
  }

  .cookie-banner__button {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   FOR TRAINERS SECTION
   ============================================================ */

.for-trainers {
  padding: var(--gap-64) 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--surface-variant) 50%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}

.for-trainers::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-overlay-10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.for-trainers__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--gap-64);
}

.for-trainers__header h2 {
  margin-bottom: var(--gap-16);
  margin-top: var(--gap-12);
}

.for-trainers__header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.for-trainers__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-48);
}

/* Trainer Benefits Grid */
.trainer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap-24);
}

.trainer-benefit-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--gap-32);
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trainer-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.trainer-benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.trainer-benefit-card h3 {
  margin-bottom: var(--gap-12);
  color: var(--text-primary);
}

.trainer-benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Trainer Visual/Screenshot Placeholder */
.trainer-visual {
  display: flex;
  justify-content: center;
  padding: var(--gap-32) 0;
}

.trainer-screenshot-placeholder {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 3px dashed var(--border-default);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-16);
  transition: all 0.3s ease;
}

.trainer-screenshot-placeholder:hover {
  border-color: var(--primary);
  background: var(--surface-variant);
}

.trainer-screenshot-placeholder span {
  font-size: 4rem;
}

.trainer-screenshot-placeholder p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.trainer-screenshot-placeholder small {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

/* Trainer CTA */
.trainer-cta {
  text-align: center;
  max-width: 600px;
  margin: var(--gap-48) auto 0;
  padding: var(--gap-48);
  background: var(--surface);
  border-radius: var(--radius-xxl);
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.trainer-cta h3 {
  margin-bottom: var(--gap-12);
  color: var(--text-primary);
}

.trainer-cta > p {
  margin-bottom: var(--gap-24);
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.trainer-cta .cta {
  font-size: 1.125rem;
  padding: var(--gap-20) var(--gap-48);
  margin-bottom: var(--gap-16);
}

.trainer-cta__note {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
}

/* Responsive adjustments for trainer section */
@media (max-width: 1024px) {
  .trainer-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .for-trainers {
    padding: var(--gap-48) 0;
  }

  .for-trainers__header {
    margin-bottom: var(--gap-48);
  }

  .trainer-benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-20);
  }

  .trainer-screenshot-placeholder {
    aspect-ratio: 4/3;
  }

  .trainer-screenshot-placeholder span {
    font-size: 3rem;
  }

  .trainer-cta {
    padding: var(--gap-32);
    margin-top: var(--gap-32);
  }
}

@media (max-width: 480px) {
  .trainer-benefits-grid {
    gap: var(--gap-16);
  }

  .trainer-benefit-card {
    padding: var(--gap-24);
  }

  .trainer-screenshot-placeholder span {
    font-size: 2.5rem;
  }

  .trainer-screenshot-placeholder p {
    font-size: 1rem;
  }
}
