
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0a0a0a;
      --dark: #111111;
      --card: #161616;
      --red: #e8281e;
      --red-dark: #b51e16;
      --red-glow: rgba(232, 40, 30, 0.25);
      --white: #f5f0eb;
      --grey: #888880;
      --light-grey: #c8c4be;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      cursor: none;
    }

    /* Custom cursor */
    .cursor {
      position: fixed;
      width: 12px; height: 12px;
      background: var(--red);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1px solid rgba(232,40,30,0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: all 0.15s ease;
    }
    body:hover .cursor { opacity: 1; }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 60px;
      background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
      transition: background 0.4s;
    }
    nav.scrolled { background: rgba(10,10,10,0.97); border-bottom: 1px solid rgba(255,255,255,0.05); }

    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 3px;
      color: var(--white);
      text-decoration: none;
    }
    .nav-logo span { color: var(--red); }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--light-grey);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--red); }

    .nav-cta {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      background: var(--red);
      border: none;
      padding: 11px 28px;
      cursor: none;
      transition: background 0.2s, transform 0.2s;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
    .nav-cta:hover { background: var(--red-dark); transform: scale(1.03); }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 0 60px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(10,10,10,0.92) 45%, rgba(10,10,10,0.4) 100%),
        url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center/cover no-repeat;
      z-index: 0;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, var(--red-glow) 0%, transparent 60%);
    }

    /* Diagonal red accent */
    .hero-accent {
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 6px;
      background: var(--red);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .hero-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }
    .hero-tag::before {
      content: '';
      display: block;
      width: 40px;
      height: 2px;
      background: var(--red);
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 12vw, 160px);
      line-height: 0.9;
      letter-spacing: 2px;
      color: var(--white);
      opacity: 0;
      animation: fadeUp 0.8s 0.4s forwards;
    }
    .hero-title em {
      font-style: normal;
      color: var(--red);
      -webkit-text-stroke: 0px;
    }
    .hero-title .outline {
      -webkit-text-stroke: 2px var(--white);
      color: transparent;
    }

    .hero-sub {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--light-grey);
      max-width: 440px;
      margin: 28px 0 44px;
      opacity: 0;
      animation: fadeUp 0.8s 0.6s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 20px;
      align-items: center;
      opacity: 0;
      animation: fadeUp 0.8s 0.8s forwards;
    }

    .btn-primary {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--white);
      background: var(--red);
      border: none;
      padding: 16px 40px;
      cursor: none;
      text-decoration: none;
      display: inline-block;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: background 0.2s, letter-spacing 0.3s;
    }
    .btn-primary:hover { background: var(--red-dark); letter-spacing: 4px; }

    .btn-secondary {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: gap 0.3s, color 0.2s;
    }
    .btn-secondary:hover { gap: 16px; color: var(--red); }
    .btn-secondary .arrow {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-secondary:hover .arrow { border-color: var(--red); background: var(--red-glow); }

    /* Hero stats */
    .hero-stats {
      position: absolute;
      bottom: 60px;
      left: 60px;
      right: 60px;
      display: flex;
      gap: 60px;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 1s forwards;
    }
    .stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      color: var(--white);
      line-height: 1;
    }
    .stat-num span { color: var(--red); }
    .stat-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--grey);
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,0.1);
      align-self: stretch;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* TICKER */
    .ticker {
      background: var(--red);
      overflow: hidden;
      white-space: nowrap;
      padding: 14px 0;
    }
    .ticker-track {
      display: inline-flex;
      animation: ticker 25s linear infinite;
    }
    .ticker-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      letter-spacing: 3px;
      padding: 0 40px;
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .ticker-item::after {
      content: '✦';
      font-size: 10px;
      opacity: 0.7;
    }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ABOUT / INTRO */
    section { padding: 120px 60px; }

    .section-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .section-tag::before {
      content: '';
      display: block;
      width: 30px; height: 2px;
      background: var(--red);
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 7vw, 90px);
      line-height: 0.95;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }

    /* ABOUT */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-text p {
      font-size: 16px;
      line-height: 1.8;
      color: var(--light-grey);
      margin-bottom: 20px;
    }
    .about-image-wrap {
      position: relative;
    }
    .about-image-wrap img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      display: block;
      filter: grayscale(20%);
    }
    .about-image-wrap::before {
      content: '';
      position: absolute;
      top: -20px; left: -20px;
      right: 20px; bottom: 20px;
      border: 2px solid var(--red);
      z-index: -1;
    }
    .about-image-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.5), transparent 50%);
    }
    .about-badge {
      position: absolute;
      bottom: -20px; left: -20px;
      background: var(--red);
      padding: 20px 28px;
      z-index: 1;
    }
    .about-badge-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      line-height: 1;
      display: block;
    }
    .about-badge-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* PROGRAMS */
    .programs-section { background: var(--dark); }
    .programs-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .program-card {
      position: relative;
      overflow: hidden;
      cursor: none;
    }
    .program-card img {
      width: 100%; height: 460px;
      object-fit: cover;
      display: block;
      filter: grayscale(40%) brightness(0.7);
      transition: filter 0.5s, transform 0.6s;
    }
    .program-card:hover img {
      filter: grayscale(0%) brightness(0.5);
      transform: scale(1.05);
    }
    .program-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 36px;
      transition: background 0.4s;
    }
    .program-card:hover .program-overlay {
      background: linear-gradient(to top, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.5) 70%, rgba(232,40,30,0.1) 100%);
    }
    .program-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      letter-spacing: 3px;
      color: var(--red);
      margin-bottom: 8px;
    }
    .program-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 38px;
      letter-spacing: 1px;
      color: var(--white);
      margin-bottom: 12px;
    }
    .program-desc {
      font-size: 14px;
      line-height: 1.6;
      color: var(--light-grey);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, opacity 0.4s;
      opacity: 0;
    }
    .program-card:hover .program-desc { max-height: 100px; opacity: 1; }
    .program-tag {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: rgba(232,40,30,0.2);
      color: var(--red);
      padding: 5px 12px;
      border: 1px solid var(--red);
      margin-bottom: 12px;
    }

    /* SCHEDULE */
    .schedule-section { padding: 120px 60px; }
    .schedule-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 50px;
    }
    .schedule-table th {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--grey);
      text-align: left;
      padding: 16px 24px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .schedule-table td {
      padding: 20px 24px;
      font-size: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: background 0.2s;
    }
    .schedule-table tr:hover td { background: rgba(232,40,30,0.05); }
    .schedule-table .class-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--white);
    }
    .schedule-table .trainer {
      color: var(--grey);
      font-size: 13px;
    }
    .schedule-table .time {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      color: var(--red);
      letter-spacing: 2px;
    }
    .intensity {
      display: flex;
      gap: 4px;
    }
    .intensity-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(232,40,30,0.2);
    }
    .intensity-dot.active { background: var(--red); }

    /* TRAINERS */
    .trainers-section { background: var(--dark); padding: 120px 60px; }
    .trainers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .trainer-card {
      position: relative;
      overflow: hidden;
      cursor: none;
    }
    .trainer-card img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      object-position: top;
      display: block;
      filter: grayscale(50%);
      transition: filter 0.4s, transform 0.5s;
    }
    .trainer-card:hover img { filter: grayscale(0%); transform: scale(1.04); }
    .trainer-info {
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }
    .trainer-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: 1px;
    }
    .trainer-spec {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      margin-top: 4px;
    }
    .trainer-socials { display: flex; gap: 12px; margin-top: 8px; }
    .trainer-socials a {
      width: 32px; height: 32px;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      color: var(--grey);
      text-decoration: none;
      font-size: 13px;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .trainer-socials a:hover { border-color: var(--red); color: var(--red); background: var(--red-glow); }

    /* PRICING */
    .pricing-section { padding: 120px 60px; }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
    }
    .pricing-card {
      background: var(--card);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s;
      cursor: none;
    }
    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: rgba(255,255,255,0.08);
      transition: background 0.3s;
    }
    .pricing-card.featured { background: var(--red); }
    .pricing-card.featured::before { background: rgba(255,255,255,0.4); }
    .pricing-card:hover { transform: translateY(-6px); }
    .pricing-card.featured:hover { transform: translateY(-10px); }

    .pricing-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 24px;
    }
    .pricing-card.featured .pricing-label { color: rgba(255,255,255,0.7); }

    .pricing-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 80px;
      line-height: 1;
      letter-spacing: -2px;
      display: flex;
      align-items: flex-start;
      gap: 4px;
      margin-bottom: 8px;
    }
    .pricing-price sup {
      font-size: 30px;
      margin-top: 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 300;
    }
    .pricing-period {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--grey);
      margin-bottom: 36px;
    }
    .pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }
    .pricing-features {
      list-style: none;
      margin-bottom: 40px;
    }
    .pricing-features li {
      font-size: 14px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--light-grey);
    }
    .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.15); }
    .pricing-features li::before {
      content: '✓';
      color: var(--red);
      font-weight: 700;
      font-size: 13px;
      flex-shrink: 0;
    }
    .pricing-card.featured .pricing-features li::before { color: var(--white); }

    .pricing-features li.no::before {
      content: '✕';
      color: var(--grey);
    }
    .pricing-features li.no { opacity: 0.5; }

    .btn-plan {
      display: block;
      width: 100%;
      padding: 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-align: center;
      text-decoration: none;
      background: transparent;
      border: 2px solid rgba(255,255,255,0.2);
      color: var(--white);
      cursor: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-plan:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
    .pricing-card.featured .btn-plan {
      background: var(--white);
      color: var(--red);
      border-color: var(--white);
    }
    .pricing-card.featured .btn-plan:hover { background: rgba(255,255,255,0.88); }

    .pricing-badge {
      position: absolute;
      top: 24px; right: 24px;
      background: var(--white);
      color: var(--red);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      padding: 6px 14px;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }

    /* TESTIMONIALS */
    .testimonials-section { background: var(--dark); padding: 120px 60px; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .testimonial-card {
      background: var(--card);
      padding: 36px;
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      font-family: 'Bebas Neue', sans-serif;
      font-size: 120px;
      line-height: 0.8;
      color: var(--red);
      opacity: 0.15;
      position: absolute;
      top: 20px; left: 24px;
      pointer-events: none;
    }
    .testimonial-text {
      font-size: 15px;
      line-height: 1.8;
      color: var(--light-grey);
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .author-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      object-fit: cover;
      filter: grayscale(30%);
      border: 2px solid var(--red);
    }
    .author-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 1px;
    }
    .author-since {
      font-size: 12px;
      color: var(--grey);
      margin-top: 2px;
    }
    .stars { color: var(--red); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }

    /* CTA BANNER */
    .cta-banner {
      background: var(--red);
      padding: 100px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: 'JOIN';
      font-family: 'Bebas Neue', sans-serif;
      font-size: 400px;
      color: rgba(0,0,0,0.08);
      position: absolute;
      right: -40px; top: -80px;
      pointer-events: none;
      letter-spacing: -10px;
      line-height: 1;
    }
    .cta-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 6vw, 80px);
      line-height: 0.95;
      letter-spacing: 1px;
    }
    .cta-sub {
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.8);
      margin-top: 16px;
      max-width: 400px;
    }
    .btn-white {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      background: var(--white);
      border: none;
      padding: 18px 48px;
      cursor: none;
      text-decoration: none;
      display: inline-block;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: background 0.2s, letter-spacing 0.3s;
      flex-shrink: 0;
    }
    .btn-white:hover { background: #e8e0d8; letter-spacing: 4px; }

    /* CONTACT */
    .contact-section { padding: 120px 60px; }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      margin-top: 60px;
    }
    .contact-item {
      display: flex;
      gap: 20px;
      margin-bottom: 36px;
    }
    .contact-icon {
      width: 48px; height: 48px;
      border: 1px solid rgba(232,40,30,0.4);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      color: var(--red);
      flex-shrink: 0;
    }
    .contact-detail-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 6px;
    }
    .contact-detail-value {
      font-size: 16px;
      color: var(--white);
      line-height: 1.5;
    }

    /* Form */
    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-field { display: flex; flex-direction: column; gap: 8px; }
    .form-field label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--grey);
    }
    .form-field input, .form-field select, .form-field textarea {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--white);
      padding: 14px 18px;
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s;
      cursor: none;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
      border-color: var(--red);
    }
    .form-field textarea { min-height: 120px; resize: vertical; }
    .form-field select option { background: var(--dark); }

    .btn-submit {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--white);
      background: var(--red);
      border: none;
      padding: 18px;
      cursor: none;
      width: 100%;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: background 0.2s, letter-spacing 0.3s;
    }
    .btn-submit:hover { background: var(--red-dark); letter-spacing: 4px; }

    /* FOOTER */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 80px 60px 40px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      letter-spacing: 3px;
      margin-bottom: 16px;
    }
    .footer-logo span { color: var(--red); }
    .footer-desc {
      font-size: 14px;
      line-height: 1.7;
      color: var(--grey);
      margin-bottom: 28px;
    }
    .footer-socials { display: flex; gap: 12px; }
    .footer-socials a {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: var(--grey);
      text-decoration: none;
      font-size: 14px;
      transition: all 0.2s;
    }
    .footer-socials a:hover { border-color: var(--red); color: var(--red); background: var(--red-glow); }

    .footer-col-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 24px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a {
      font-size: 14px;
      color: var(--grey);
      text-decoration: none;
      transition: color 0.2s, padding-left 0.2s;
      display: inline-block;
    }
    .footer-links a:hover { color: var(--red); padding-left: 6px; }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 36px;
      border-top: 1px solid rgba(255,255,255,0.06);
      font-size: 13px;
      color: var(--grey);
    }

    /* ANIMATIONS on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--red); }

    /* Mobile menu */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: all 0.3s; }

    @media (max-width: 900px) {
      nav { padding: 20px 24px; }
      section { padding: 80px 24px; }
      .hero { padding: 0 24px; }
      .hero-title { font-size: 72px; }
      .hero-stats { left: 24px; right: 24px; flex-wrap: wrap; gap: 30px; }
      .about { grid-template-columns: 1fr; gap: 40px; }
      .programs-grid { grid-template-columns: 1fr; }
      .program-card img { height: 300px; }
      .trainers-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .cta-banner { flex-direction: column; gap: 36px; text-align: center; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }
  
    /* ── Mobile nav open ── */
    .nav-links.mobile-open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: rgba(10,10,10,0.98);
      padding: 24px;
      gap: 20px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    /* ── Modal overlay ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(6px);
      padding: 20px;
    }
    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .modal {
      background: var(--dark);
      border: 1px solid rgba(232,40,30,0.25);
      max-width: 560px;
      width: 100%;
      padding: 48px;
      position: relative;
      transform: translateY(20px);
      transition: transform 0.3s ease;
      max-height: 90vh;
      overflow-y: auto;
    }
    .modal-overlay.open .modal { transform: translateY(0); }
    .modal-close {
      position: absolute;
      top: 20px; right: 20px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--grey);
      width: 36px; height: 36px;
      cursor: pointer;
      font-size: 14px;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .modal-close:hover { border-color: var(--red); color: var(--white); background: var(--red-glow); }

    .modal-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
      display: flex; align-items: center; gap: 10px;
    }
    .modal-tag::before {
      content: ''; display: block; width: 24px; height: 2px; background: var(--red);
    }
    .modal-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      line-height: 0.95;
      letter-spacing: 2px;
      margin-bottom: 28px;
    }
    .modal-title span { color: var(--red); }
    .modal-sub {
      font-size: 14px;
      color: var(--grey);
      margin-bottom: 20px;
      font-family: 'Barlow Condensed';
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: 600;
    }

    /* Plan selector */
    .modal-plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .modal-plan-option input[type="radio"] { display: none; }
    .plan-box {
      border: 1px solid rgba(255,255,255,0.1);
      padding: 20px 12px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      position: relative;
    }
    .plan-box:hover { border-color: rgba(232,40,30,0.4); }
    .modal-plan-option input:checked + .plan-box {
      border-color: var(--red);
      background: var(--red-glow);
    }
    .plan-box.featured { border-color: rgba(232,40,30,0.4); }
    .plan-badge {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: var(--red);
      color: var(--white);
      padding: 2px 8px;
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
    }
    .plan-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 8px;
    }
    .plan-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      color: var(--white);
      line-height: 1;
    }
    .plan-price span { font-size: 14px; color: var(--grey); }

    /* Back button outline */
    .btn-secondary-outline {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--grey);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.12);
      padding: 18px 20px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-secondary-outline:hover { border-color: var(--white); color: var(--white); }

    /* Success step */
    .modal-success { text-align: center; padding: 20px 0; }
    .success-icon {
      width: 64px; height: 64px;
      background: var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      margin: 0 auto 24px;
    }
    .success-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .success-msg {
      font-size: 16px;
      color: var(--white);
      margin-bottom: 8px;
    }
    .success-sub {
      font-size: 14px;
      color: var(--grey);
    }

    /* ── Admin panel ── */
    .admin-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.9);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .admin-panel {
      background: var(--dark);
      border: 1px solid rgba(232,40,30,0.3);
      max-width: 600px;
      width: 100%;
      padding: 32px;
      position: relative;
      max-height: 80vh;
      overflow-y: auto;
    }
    .admin-entry {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 14px 16px;
      border-left: 3px solid var(--red);
    }
    .admin-entry-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 4px;
    }
    .admin-plan-badge {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: var(--red-glow);
      color: var(--red);
      border: 1px solid rgba(232,40,30,0.3);
      padding: 3px 8px;
    }

    /* ── Program "Learn More" button ──────────────────── */
    .program-learn-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      background: transparent;
      border: 1px solid rgba(232,40,30,0.6);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 8px 18px;
      cursor: pointer;
      transition: background 0.25s, border-color 0.25s, transform 0.2s;
    }
    .program-learn-btn:hover {
      background: var(--red);
      border-color: var(--red);
      transform: translateX(4px);
    }
    .program-learn-btn span { transition: transform 0.2s; }
    .program-learn-btn:hover span { transform: translateX(4px); }

    .program-card { cursor: pointer; }

    /* ── Program Detail Popup ─────────────────────────── */
    .prog-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(6px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .prog-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .prog-modal {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.07);
      max-width: 900px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: translateY(30px) scale(0.97);
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }
    .prog-overlay.open .prog-modal {
      transform: translateY(0) scale(1);
    }
    .prog-close {
      position: absolute;
      top: 16px; right: 20px;
      background: none;
      border: none;
      color: var(--grey);
      font-size: 20px;
      cursor: pointer;
      z-index: 10;
      line-height: 1;
      transition: color 0.2s;
    }
    .prog-close:hover { color: var(--red); }

    .prog-modal-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .prog-modal-img-wrap {
      position: relative;
      min-height: 360px;
    }
    .prog-modal-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .prog-modal-num {
      position: absolute;
      bottom: 16px; left: 20px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 80px;
      line-height: 1;
      color: rgba(255,255,255,0.08);
      pointer-events: none;
    }

    .prog-modal-content {
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .prog-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      letter-spacing: 2px;
      line-height: 1;
      color: var(--white);
    }
    .prog-summary {
      font-size: 14px;
      line-height: 1.7;
      color: var(--light-grey);
    }

    .prog-details {
      display: flex;
      gap: 20px;
      padding: 16px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .prog-detail-block { flex: 1; }
    .prog-detail-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 4px;
    }
    .prog-detail-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
    }

    .prog-highlights-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }
    .prog-highlights ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .prog-highlights li {
      font-size: 13px;
      color: var(--light-grey);
      padding-left: 16px;
      position: relative;
      line-height: 1.5;
    }
    .prog-highlights li::before {
      content: '';
      position: absolute;
      left: 0; top: 8px;
      width: 6px; height: 1px;
      background: var(--red);
    }

    .prog-actions { margin-top: auto; padding-top: 8px; }

    @media (max-width: 700px) {
      .prog-modal-inner { grid-template-columns: 1fr; }
      .prog-modal-img-wrap { min-height: 220px; }
      .prog-modal-content { padding: 28px 24px; }
      .prog-title { font-size: 32px; }
      .prog-details { flex-direction: column; gap: 12px; }
    }

    /* ── Footer link tooltips ─────────────────────────── */
    .footer-links a.ft {
      position: relative;
    }
    .footer-links a.ft::after {
      content: attr(data-tip);
      position: absolute;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      background: var(--card);
      border: 1px solid rgba(232,40,30,0.35);
      color: var(--light-grey);
      font-family: 'Barlow', sans-serif;
      font-size: 12px;
      font-weight: 300;
      line-height: 1.5;
      white-space: nowrap;
      padding: 8px 14px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 500;
      max-width: 240px;
      white-space: normal;
      text-align: center;
      width: max-content;
      max-width: 220px;
    }
    .footer-links a.ft::before {
      content: '';
      position: absolute;
      bottom: calc(100% + 4px);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      border: 5px solid transparent;
      border-top-color: rgba(232,40,30,0.35);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 500;
    }
    .footer-links a.ft:hover::after,
    .footer-links a.ft:hover::before {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
