/* =============================================
   YOU FIT / YOU FIGHT — Mobile Premium v2
   Loaded after style.css
   ============================================= */

/* ---- Animations ---- */
@keyframes mobileRiseIn {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes mobileGlowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(232,240,0,0), 0 2px 8px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 24px rgba(232,240,0,0.18), 0 2px 8px rgba(0,0,0,0.3); }
}

@keyframes mobileShimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

@keyframes mobileBorderGlow {
  0%, 100% { border-color: rgba(232,240,0,0.12); }
  50% { border-color: rgba(232,240,0,0.35); }
}

@keyframes mobileButtonBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.012); }
}

@keyframes neonLine {
  0% { transform: scaleX(0); opacity: 0; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0; }
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta { display: none !important; }
  .burger { display: flex !important; }
  .path-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .page-probetraining {
    justify-content: flex-start !important;
    padding-top: calc(var(--nav-h) + 36px) !important;
    padding-bottom: 48px;
  }
}

/* ════════════════════════════════════════════
   ██  PHONE (≤768px)  ██
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --pad: 20px;
    --section-y: 56px;
    --gap: 14px;
    --r: 20px;
    --r-sm: 14px;
    --mobile-bar: 56px;
  }

  html {
    font-size: 15px;
    scroll-padding-top: var(--nav-h);
  }

  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: calc(var(--mobile-bar) + env(safe-area-inset-bottom) + 40px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background:
      radial-gradient(ellipse 90% 50% at 15% 0%, rgba(232,240,0,0.05) 0%, transparent 55%),
      radial-gradient(ellipse 50% 35% at 85% 5%, rgba(255,255,255,0.025) 0%, transparent 55%),
      linear-gradient(180deg, #080808 0%, #0a0a0a 30%, #060606 100%);
  }

  #announcement-bar { display: none !important; }

  .container { padding: 0 var(--pad); max-width: 100%; }
  .section { padding: var(--section-y) 0; position: relative; }
  .section-sm { padding: 34px 0; }

  /* Elegant section dividers */
  .section::after {
    content: "";
    position: absolute;
    left: var(--pad); right: var(--pad);
    bottom: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent);
    pointer-events: none;
  }
  .section:last-of-type::after,
  .footer.section::after { display: none; }

  /* ═══════════════════════════════════
     NAV — Frosted glass, Apple-style
     ═══════════════════════════════════ */
  .nav {
    height: var(--nav-h);
    background: rgba(8,8,8,0.78);
    backdrop-filter: blur(40px) saturate(220%);
    -webkit-backdrop-filter: blur(40px) saturate(220%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  }
  .nav.scrolled {
    background: rgba(8,8,8,0.94);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 40px rgba(0,0,0,0.6);
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .nav-inner { padding: 0 var(--pad); }
  .nav-logo { font-size: 1.08rem; letter-spacing: 0.04em; line-height: 1; }

  .burger {
    display: flex;
    width: 46px; height: 46px;
    min-width: 46px; min-height: 46px;
    align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .burger:active {
    transform: scale(0.9);
    background: rgba(232,240,0,0.1);
    border-color: rgba(232,240,0,0.25);
  }
  .burger.open {
    background: rgba(232,240,0,0.08);
    border-color: rgba(232,240,0,0.2);
  }

  /* ═══════════════════════════════════
     MOBILE MENU — Full premium
     ═══════════════════════════════════ */
  .mobile-menu {
    padding: calc(var(--nav-h) + 28px) var(--pad) max(36px, env(safe-area-inset-bottom));
    background:
      radial-gradient(ellipse 100% 40% at 50% 0%, rgba(232,240,0,0.035) 0%, transparent 65%),
      linear-gradient(180deg, rgba(8,8,8,0.985) 0%, rgba(4,4,4,0.995) 100%);
    backdrop-filter: blur(48px) saturate(160%);
    -webkit-backdrop-filter: blur(48px) saturate(160%);
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
  }

  /* Stagger animation */
  .mobile-menu.open > *,
  .mobile-menu.open .mobile-menu-group { animation: mobileRiseIn 0.55s cubic-bezier(0.16,1,0.3,1) both; }
  .mobile-menu.open > *:nth-child(2),
  .mobile-menu.open .mobile-menu-group:nth-of-type(2) { animation-delay: 0.05s; }
  .mobile-menu.open > *:nth-child(3),
  .mobile-menu.open .mobile-menu-group:nth-of-type(3) { animation-delay: 0.1s; }
  .mobile-menu.open > *:nth-child(4),
  .mobile-menu.open .mobile-menu-group:nth-of-type(4) { animation-delay: 0.15s; }
  .mobile-menu.open > *:nth-child(5),
  .mobile-menu.open .mobile-menu-group:nth-of-type(5) { animation-delay: 0.2s; }
  .mobile-menu.open > *:nth-child(6) { animation-delay: 0.25s; }
  .mobile-menu.open > *:nth-child(7) { animation-delay: 0.3s; }
  .mobile-menu.open > *:nth-child(8) { animation-delay: 0.35s; }

  .mobile-menu > a:not(.btn) {
    font-family: var(--font-display);
    font-size: 1.65rem;
    letter-spacing: 0.05em;
    width: 100%; padding: 15px 0;
    min-height: 54px;
    display: flex; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), padding-left 0.3s ease;
    position: relative;
  }
  .mobile-menu > a:not(.btn)::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px; height: 55%;
    background: var(--neon); border-radius: 3px;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .mobile-menu > a:not(.btn).active::before { transform: translateY(-50%) scaleY(1); }
  .mobile-menu > a:not(.btn).active { padding-left: 16px; color: var(--neon); }
  .mobile-menu > a:not(.btn):active { transform: translateX(8px); color: var(--neon); }

  .mobile-menu .mob-fight { color: var(--accent-fight) !important; }
  .mobile-menu-divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent 80%);
    margin: 16px 0;
  }
  .mobile-menu .btn, .mobile-menu .mt-8 { width: 100%; margin-top: 28px; }
  .mobile-menu .btn {
    max-width: none; border-radius: var(--r-sm);
    justify-content: center; min-height: 56px;
    font-size: 0.92rem; letter-spacing: 0.08em;
  }

  /* Accordion sub-menus */
  .mobile-menu-group { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .mobile-menu-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 15px 0; min-height: 54px;
    font-family: var(--font-display); font-size: 1.65rem;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--white); background: none; border: none;
    text-align: left; cursor: pointer;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .mobile-menu-group--fight .mobile-menu-toggle { color: var(--accent-fight); }
  .mobile-menu-toggle:active { transform: translateX(8px); }
  .mobile-menu-toggle .chevron {
    font-size: 1.5rem; opacity: 0.35;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  }
  .mobile-menu-group.open .mobile-menu-toggle .chevron { transform: rotate(90deg); opacity: 0.9; }
  .mobile-menu-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s cubic-bezier(0.16,1,0.3,1); }
  .mobile-menu-group.open .mobile-menu-sub { grid-template-rows: 1fr; }
  .mobile-menu-sub-inner {
    overflow: hidden; display: flex; flex-direction: column; gap: 2px;
    padding-bottom: 0; transition: padding 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .mobile-menu-group.open .mobile-menu-sub-inner { padding-bottom: 16px; }
  .mobile-menu-sub a {
    font-family: var(--font-ui) !important; font-size: 0.95rem !important;
    font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    color: rgba(255,255,255,0.55) !important;
    padding: 12px 0 12px 20px !important; min-height: 44px !important;
    border-bottom: none !important;
    border-left: 2px solid rgba(255,255,255,0.06);
    transition: color 0.3s ease, border-color 0.3s ease, padding-left 0.3s ease;
  }
  .mobile-menu-sub a:hover, .mobile-menu-sub a.active { color: var(--neon) !important; border-left-color: var(--neon); padding-left: 26px !important; }
  .mobile-menu-group--fight .mobile-menu-sub a.active { color: var(--accent-fight) !important; border-left-color: var(--accent-fight); }

  /* ═══════════════════════════════════
     HERO — Immersive with visible photo
     ═══════════════════════════════════ */
  .hero {
    min-height: min(100dvh, 920px);
    display: block;
    padding-bottom: 0;
  }
  .hero-bg {
    background-position: center 30% !important;
  }
  .hero-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.35) 25%,
      rgba(0,0,0,0.7) 55%,
      rgba(0,0,0,0.92) 80%,
      var(--black) 100%
    ) !important;
  }
  .hero-content {
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 40px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: min(100dvh, 920px);
  }
  .hero-badge {
    font-size: 0.68rem; padding: 8px 18px;
    margin-bottom: 18px;
    animation: mobileGlowPulse 3.2s ease-in-out infinite;
    border-radius: 100px; letter-spacing: 0.12em;
    backdrop-filter: blur(8px);
  }
  .hero-title .line1, .hero-title .line3 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    color: var(--white); -webkit-text-stroke: 0 !important;
    line-height: 1.0;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  }
  .hero-title .line2, .hero-title .f-line2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    color: var(--neon); -webkit-text-stroke: 0 !important;
    line-height: 1.0;
    text-shadow: 0 0 40px rgba(232,240,0,0.2);
  }
  body:not(.theme-taupe) .hero-title .f-line2 { color: var(--accent-fight); }
  .hero-sub {
    font-size: 0.92rem; line-height: 1.75;
    margin: 18px 0 26px;
    color: rgba(255,255,255,0.72);
    max-width: 100%; text-wrap: balance;
  }
  .hero-actions { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero-actions .btn {
    width: 100%; justify-content: center;
    white-space: normal; text-align: center;
    border-radius: var(--r-sm);
    padding: 16px 20px; font-size: 0.86rem;
    min-height: 52px; line-height: 1.35;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  }
  .hero-actions .btn:active { transform: scale(0.97); }

  /* Hero stat cards — glass grid */
  .hero-stats {
    margin-top: 28px; padding-top: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; border-top: none;
  }
  .hero-stat {
    padding: 18px 14px; border-radius: var(--r-sm);
    background: linear-gradient(168deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.025) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
    animation: mobileRiseIn 0.6s cubic-bezier(0.16,1,0.3,1) both;
    position: relative; overflow: hidden;
  }
  .hero-stat::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,240,0,0.2), transparent);
  }
  .hero-stat:nth-child(2) { animation-delay: 0.08s; }
  .hero-stat:nth-child(3) { animation-delay: 0.16s; }
  .hero-stat:nth-child(4) { animation-delay: 0.24s; }
  .hero-stat .num { font-size: 1.65rem; line-height: 1.1; color: var(--white); }
  .hero-stat .label { font-size: 0.62rem; margin-top: 6px; line-height: 1.35; opacity: 0.6; hyphens: auto; }
  .hero-video { object-position: center 28%; }
  .scroll-hint { display: none; }

  /* ═══════════════════════════════════
     PAGE HERO
     ═══════════════════════════════════ */
  .page-hero {
    padding: calc(var(--nav-h) + 36px) 0 40px;
    text-align: left;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.025), transparent 70%),
      radial-gradient(ellipse 70% 50% at 0% 0%, rgba(232,240,0,0.07), transparent 60%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .page-hero .container { align-items: flex-start; }
  .page-hero h1 {
    font-size: clamp(2.1rem, 9.5vw, 2.9rem);
    line-height: 1.04; margin-bottom: 14px; text-wrap: balance;
  }
  .page-hero p { font-size: 0.94rem; line-height: 1.7; color: rgba(255,255,255,0.62); max-width: 100%; }
  .breadcrumb { font-size: 0.7rem; margin-bottom: 16px; flex-wrap: wrap; gap: 4px 8px; opacity: 0.65; }

  /* ═══════════════════════════════════
     SECTION HEADINGS
     ═══════════════════════════════════ */
  .section-heading { text-align: center; margin-bottom: 34px; }
  .section-heading h2 {
    font-size: clamp(1.65rem, 7.5vw, 2.2rem);
    line-height: 1.06; margin-bottom: 12px; text-wrap: balance;
  }
  .section-heading p {
    font-size: 0.92rem; line-height: 1.7;
    color: rgba(255,255,255,0.55); max-width: 32ch;
    margin: 0 auto; padding: 0 4px;
  }
  .section-label { font-size: 0.7rem; letter-spacing: 0.14em; }
  .section-label::before, .section-label::after { width: 22px; }

  /* ═══════════════════════════════════
     PATH CARDS — Full-bleed image + glass
     ═══════════════════════════════════ */
  .path-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .path-card {
    border-radius: var(--r);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    background: linear-gradient(168deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease;
  }
  .path-card:hover { transform: none !important; }
  .path-card:active { transform: scale(0.98); border-color: rgba(255,255,255,0.18); }
  .path-card-body { padding: 22px 22px 26px; }
  .path-card-tag {
    display: inline-flex; align-items: center;
    min-height: 30px; padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    font-size: 0.72rem; letter-spacing: 0.08em;
  }
  .path-card h2 { font-size: 2rem; margin-bottom: 8px; }
  .path-card p { font-size: 0.9rem; line-height: 1.65; }
  .path-card .btn {
    margin-top: 20px; width: 100%;
    justify-content: center; font-size: 0.84rem; min-height: 50px;
  }

  /* ═══════════════════════════════════
     FEATURES — Bold modern cards
     ═══════════════════════════════════ */
  .advantages-grid { grid-template-columns: 1fr !important; gap: 44px !important; }
  .brand-block-title h3 { font-size: 1.7rem; white-space: normal; text-wrap: balance; }
  .features-grid, .features-grid[style] { grid-template-columns: 1fr !important; gap: 12px !important; }

  .feature-card {
    padding: 24px 22px;
    border-radius: var(--r);
    text-align: left !important;
    background: linear-gradient(168deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 10px 36px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease;
    position: relative; overflow: hidden;
  }
  .feature-card:hover { transform: none !important; }
  .feature-card:active { transform: translateY(-3px) scale(0.99); border-color: rgba(255,255,255,0.16); }
  .feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
  .feature-card p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); }

  .feature-icon {
    width: 52px; height: 52px; margin-bottom: 16px;
    animation: mobileSoftFloat 3.5s ease-in-out infinite;
    border-radius: 14px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(232,240,0,0.12), rgba(232,240,0,0.04));
    border: 1px solid rgba(232,240,0,0.15);
    display: flex; align-items: center; justify-content: center;
  }
  .feature-icon img {
    width: 100%; height: 100%; object-fit: contain;
    filter: brightness(1.1) contrast(1.05);
  }
  /* Fight feature icons */
  .fight-feat .feature-icon {
    background: linear-gradient(135deg, rgba(232,240,0,0.12), rgba(232,240,0,0.04));
    border-color: rgba(232,240,0,0.15);
  }

  /* ═══════════════════════════════════
     MEDIA / HOURS
     ═══════════════════════════════════ */
  .media-grid { grid-template-columns: 1fr; gap: var(--gap); }
  .media-card {
    border-radius: var(--r); overflow: hidden;
    background: linear-gradient(168deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 10px 36px rgba(0,0,0,0.3);
  }
  .media-card-body { padding: 20px 22px 24px; }
  .hours-list { gap: 8px; }
  .hours-row {
    padding: 16px 18px; border-radius: var(--r-sm);
    background: linear-gradient(168deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  }

  /* ═══════════════════════════════════
     SPLIT
     ═══════════════════════════════════ */
  .split {
    display: grid !important; grid-template-columns: 1fr !important; gap: 28px !important;
  }
  .split-img {
    order: -1; border-radius: var(--r);
    box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  }
  .split [style*="font-size:3rem"], .split h2[style*="font-size:3rem"] {
    font-size: clamp(1.75rem, 7.5vw, 2.2rem) !important; margin-bottom: 16px !important;
  }
  .split [style*="justify-content:space-between"] {
    flex-direction: column !important; align-items: flex-start !important; gap: 4px !important; padding: 14px 0 !important;
  }

  /* ═══════════════════════════════════
     DISCIPLINES
     ═══════════════════════════════════ */
  .disciplines-grid { grid-template-columns: 1fr; gap: 14px; padding: 0 var(--pad); }
  .discipline-card {
    border-radius: var(--r); overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }
  .discipline-card:active { transform: scale(0.98); }
  .discipline-overlay { padding: 22px; }
  .discipline-overlay h3 { font-size: 1.6rem; }
  .discipline-overlay p { font-size: 0.88rem; line-height: 1.65; }
  .discipline-full {
    border-radius: var(--r); overflow: hidden; margin-bottom: var(--gap);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  }
  .discipline-full .d-overlay { padding: 22px !important; }
  .discipline-full .d-overlay h2 { font-size: 1.95rem !important; }
  .fight-num { display: none !important; }
  .level-cards { grid-template-columns: 1fr !important; gap: 14px !important; }

  /* ═══════════════════════════════════
     CARDS / PRICING / REVIEWS / TRAINERS
     ═══════════════════════════════════ */
  .card, .price-card, .review-card, .glass-card { border-radius: var(--r); }
  .card, .price-card, .review-card, .trainer-card, .glass-card {
    background: linear-gradient(168deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 10px 36px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative; overflow: hidden;
  }

  .courses-grid { grid-template-columns: 1fr; gap: var(--gap); }
  .pricing-grid { grid-template-columns: 1fr; gap: var(--gap); }

  .price-card {
    padding: 28px 24px;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease;
  }
  .price-card.featured {
    order: -1;
    border-color: rgba(232,240,0,0.25);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 60px rgba(232,240,0,0.06), inset 0 1px 0 rgba(232,240,0,0.15);
    animation: mobileBorderGlow 4s ease-in-out infinite;
  }
  .price-card:active, .review-card:active, .trainer-card:active,
  .glass-card:active, .contact-info-card:active, .direction-card:active {
    transform: scale(0.98);
  }
  .price-amount .number { font-size: 2.8rem; }
  .price-amount .period { font-size: 0.84rem; }
  .price-features li {
    font-size: 0.88rem; padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .price-features li:last-child { border-bottom: none; }
  .price-card .btn { width: 100% !important; justify-content: center !important; }

  /* Trainers */
  .trainers-grid { grid-template-columns: 1fr !important; gap: var(--gap) !important; }
  .trainer-card {
    border-radius: var(--r);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease;
  }
  .trainer-card:hover { transform: none !important; }
  .trainer-info { padding: 20px 22px !important; }
  .trainer-info h3 { font-size: 1.35rem; margin-bottom: 4px; }
  .trainer-role { opacity: 0.65; letter-spacing: 0.08em; font-size: 0.75rem; }
  .trainer-info p { font-size: 0.88rem; line-height: 1.65; margin-top: 10px; font-style: italic; color: rgba(255,255,255,0.5); }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: var(--gap); }
  .review-card { padding: 24px; border-radius: var(--r); }
  .review-text { font-size: 0.92rem; line-height: 1.7; }

  /* ═══════════════════════════════════
     TABS — 2×2
     ═══════════════════════════════════ */
  .tabs-nav {
    display: grid !important; grid-template-columns: 1fr 1fr !important;
    gap: 8px !important; padding: 8px !important;
    margin-bottom: 26px; overflow: visible !important;
    border-radius: var(--r);
    background: linear-gradient(168deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  }
  .tab-btn {
    white-space: normal !important; text-align: center;
    line-height: 1.25; padding: 14px 12px !important;
    font-size: 0.7rem !important; min-height: 50px;
    border-radius: var(--r-sm) !important;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  }
  .tab-btn:active { transform: scale(0.95); }
  .tab-label-long { display: none; }
  .tab-label-short { display: inline; }

  /* ═══════════════════════════════════
     FILTER BAR
     ═══════════════════════════════════ */
  .filter-bar {
    flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
    margin-bottom: 22px; gap: 8px; padding: 4px 0 10px;
    -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-bar .btn {
    flex-shrink: 0; scroll-snap-align: start;
    border-radius: 100px; padding: 10px 20px;
    font-size: 0.76rem; min-height: 42px;
  }
  .filter-bar .btn:active { transform: scale(0.95); }

  /* ═══════════════════════════════════
     BUTTONS — Premium touch
     ═══════════════════════════════════ */
  .btn {
    padding: 14px 24px; font-size: 0.86rem;
    border-radius: var(--r-sm); min-height: 50px;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  }
  .btn:active { transform: scale(0.97); }
  .btn-lg { padding: 16px 26px; font-size: 0.9rem; min-height: 54px; }
  .btn-sm { padding: 11px 20px; font-size: 0.78rem; min-height: 44px; }

  /* ═══════════════════════════════════
     CTA BANNER
     ═══════════════════════════════════ */
  .cta-banner {
    padding: 40px 24px; border-radius: var(--r);
    text-align: center;
    background: linear-gradient(145deg, rgba(30,30,30,0.95), rgba(14,14,14,0.98)) !important;
    border: 1px solid rgba(255,255,255,0.09) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: ''; position: absolute;
    top: 0; left: 20%; right: 20%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,240,0,0.25), transparent);
  }
  .cta-banner::after { display: none; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6.5vw, 1.95rem); margin-bottom: 14px; line-height: 1.08; }
  .cta-banner p { font-size: 0.92rem; margin-bottom: 22px; line-height: 1.7; color: rgba(255,255,255,0.6); }
  .cta-banner .cta-actions { flex-direction: column; gap: 10px; max-width: 100%; }
  .cta-banner .cta-actions .btn { width: 100%; justify-content: center; }

  /* ═══════════════════════════════════
     FOOTER
     ═══════════════════════════════════ */
  .footer {
    padding: 44px 0 max(115px, calc(92px + env(safe-area-inset-bottom)));
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015));
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { font-size: 0.92rem; line-height: 1.7; }
  .footer-links a { font-size: 0.9rem; padding: 5px 0; display: inline-block; }
  .footer-links a:active { transform: translateX(4px); }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding-top: 24px; }
  .footer-social { justify-content: center; gap: 14px; }

  /* ═══════════════════════════════════
     FORMS
     ═══════════════════════════════════ */
  .form-control {
    font-size: 16px; min-height: 52px;
    border-radius: var(--r-sm); padding: 15px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .form-control:focus { border-color: rgba(232,240,0,0.3); box-shadow: 0 0 0 3px rgba(232,240,0,0.06); }
  .form-label { font-size: 0.78rem; letter-spacing: 0.06em; }

  .contact-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .contact-info-cards { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .contact-info-card { padding: 20px !important; border-radius: var(--r-sm) !important; }
  .form-card { padding: 28px 22px !important; border-radius: var(--r) !important; box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
  .form-tabs { margin-bottom: 24px !important; }
  .form-tab-btn { padding: 12px 16px !important; font-size: 0.78rem !important; }
  .trial-benefits { grid-template-columns: 1fr !important; gap: 10px !important; }
  .directions-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .direction-card { padding: 24px 20px !important; border-radius: var(--r) !important; }
  .accordion-header { padding: 20px 22px !important; font-size: 0.97rem !important; }
  .map-container iframe { height: 260px; border-radius: var(--r); border: 1px solid rgba(255,255,255,0.06); }

  /* ═══════════════════════════════════
     FLOATING UI — Bottom bar
     ═══════════════════════════════════ */
  #floating-cta {
    bottom: 0; left: 0; right: 0; width: 100%;
    border-radius: 0; justify-content: center;
    padding: 16px 22px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    font-size: 0.84rem; letter-spacing: 0.08em;
    min-height: var(--mobile-bar);
    transform: translateY(110%); opacity: 0;
    border-top: 1px solid rgba(232,240,0,0.2);
    box-shadow: 0 -6px 32px rgba(0,0,0,0.65);
    z-index: 800;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  }
  #floating-cta.show { transform: translateY(0); opacity: 1; }
  #floating-cta:hover { transform: translateY(0); }

  #whatsapp-btn {
    bottom: calc(var(--mobile-bar) + max(14px, env(safe-area-inset-bottom)) + 10px);
    right: 16px; width: 50px; height: 50px;
    z-index: 799; border-radius: 50%;
    box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  }
  #back-top, button[id="back-top"] {
    bottom: calc(var(--mobile-bar) + max(14px, env(safe-area-inset-bottom)) + 10px) !important;
    right: 16px !important; left: auto !important; width: 46px !important; height: 46px !important;
    border-radius: 12px !important; z-index: 790;
    box-shadow: 0 6px 24px rgba(0,0,0,0.45);
    background: rgba(20,20,20,0.9) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1) !important;
  }

  /* ═══════════════════════════════════
     COOKIE BANNER
     ═══════════════════════════════════ */
  #cookie-banner {
    padding: 20px var(--pad);
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  }
  .cookie-inner { flex-direction: column; gap: 16px; align-items: stretch; }
  .cookie-text { font-size: 0.88rem; min-width: 0; line-height: 1.6; }
  .cookie-actions { width: 100%; gap: 8px; }
  .cookie-btn {
    flex: 1; text-align: center;
    padding: 14px 18px; font-size: 0.8rem;
    min-height: 48px; border-radius: var(--r-sm);
  }
  .cookie-btn:active { transform: scale(0.96); }

  /* ═══════════════════════════════════
     MISC
     ═══════════════════════════════════ */
  .loader-logo { font-size: 1.7rem; letter-spacing: 0.06em; }
  .loader-bar-wrap { width: 140px; }

  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .dashboard-main { padding: 22px var(--pad); }
  .dashboard-stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dashboard-stat { padding: 18px 16px; border-radius: var(--r-sm); }

  .page-probetraining { padding: calc(var(--nav-h) + 32px) 0 48px; justify-content: flex-start; }
  main[style*="padding: 120px"] { padding: calc(var(--nav-h) + 32px) 0 48px !important; }

  /* Grid overrides */
  .grid[style*="grid-template-columns:1fr 1fr"],
  .grid[style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(auto-fit"],
  [style*="grid-template-columns: repeat(auto-fit"],
  [style*="grid-template-columns:repeat(auto-fill"],
  [style*="grid-template-columns: repeat(auto-fill"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Maintained native aspect ratios from desktop */
  [style*="font-size:4rem"]:not(.hero-title *) { font-size: 2.2rem !important; }
  [style*="font-size:3.5rem"] { font-size: 2rem !important; }
  [style*="font-size:3rem"]:not(.hero-title *) { font-size: 1.85rem !important; }

  .price-highlight, [style*="margin-top:40px"][style*="border-radius:var(--radius-lg)"] {
    padding: 24px 20px !important; flex-direction: column !important;
    align-items: stretch !important; gap: 20px !important; border-radius: var(--r) !important;
  }
  .price-card[style*="padding:50px"], .price-card[style*="padding:50px 40px"] { padding: 28px 24px !important; }
  .zoom-in:not(.hero-stat) { padding: 22px !important; border-radius: var(--r) !important; }

  .login-card {
    padding: 32px 24px !important; margin: var(--pad);
    border-radius: var(--r) !important;
  }

  /* Disable hover lifts */
  .feature-card:hover, .price-card:hover, .trainer-card:hover,
  .card:hover, .path-card:hover, .glass-card:hover { transform: none !important; }

  [style*="font-size:1.8rem"] { font-size: 1.5rem !important; }

  .section-heading p, .hero-sub, .page-hero p,
  .review-text, .feature-card p, .path-card p { text-wrap: pretty; }

  #scroll-progress { height: 2px; box-shadow: 0 0 8px rgba(232,240,0,0.3); }

  .community-grid { grid-template-columns: 1fr !important; gap: var(--gap) !important; }
  .scaneca-grid { grid-template-columns: 1fr !important; gap: var(--gap) !important; }
  .news-grid, .aktuelles-grid { grid-template-columns: 1fr !important; gap: var(--gap) !important; }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  :root { --nav-h: 56px; --pad: 16px; --section-y: 42px; --mobile-bar: 52px; }
  .nav { height: var(--nav-h); }
  .nav-logo { font-size: 1rem; }
  .burger { width: 42px; height: 42px; min-width: 42px; min-height: 42px; }
  .hero-title .line1, .hero-title .line3 { font-size: clamp(2rem, 10vw, 2.6rem); }
  .hero-title .line2, .hero-title .f-line2 { font-size: clamp(1.6rem, 8.5vw, 2.1rem); }
  .hero-stat .num { font-size: 1.45rem; }
  .hero-stat .label { font-size: 0.58rem; }
  .mobile-menu > a:not(.btn), .mobile-menu-toggle { font-size: 1.4rem; }
  .price-amount .number { font-size: 2.4rem; }
  .contact-info-cards { grid-template-columns: 1fr !important; }
  .dashboard-stat-grid { grid-template-columns: 1fr; }
  .discipline-full .d-overlay h2 { font-size: 1.75rem !important; }
  .tab-btn { font-size: 0.64rem !important; padding: 11px 9px !important; }
  .cta-banner { padding: 32px 18px; }
  .page-hero h1 { font-size: clamp(1.8rem, 9vw, 2.3rem); }
  .section-heading h2 { font-size: clamp(1.5rem, 7vw, 1.95rem); }
  .trainer-info { padding: 18px !important; }
  .path-card-body { padding: 20px; }
  .feature-icon { width: 48px; height: 48px; }
}

/* ---- Tiny phones ---- */
@media (max-width: 360px) {
  :root { --pad: 14px; --section-y: 38px; }
  .hero-title .line1, .hero-title .line3 { font-size: 1.9rem; }
  .hero-title .line2, .hero-title .f-line2 { font-size: 1.5rem; }
  .hero-stat { padding: 14px 10px; }
  .hero-stat .num { font-size: 1.3rem; }
  .mobile-menu > a:not(.btn), .mobile-menu-toggle { font-size: 1.25rem; }
  .path-card h2 { font-size: 1.7rem; }
  .cta-banner h2 { font-size: 1.35rem; }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
  .btn:hover::before { left: -150%; }
  .trainer-card:hover .trainer-img img { transform: none; }
  .contact-info-card:hover { transform: none; }
  .filter-bar, .tabs-nav { -webkit-overflow-scrolling: touch; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .feature-icon, .cta-banner, #floating-cta,
  .mobile-menu.open > *, .mobile-menu.open .mobile-menu-group,
  .hero-stat, .price-card.featured { animation: none !important; }
  * { transition-duration: 0.01ms !important; }
}
