/* PAGE HEADER */
    .page-header {
      padding: 100px 40px 80px; position: relative; overflow: hidden; text-align: center;
    }
    .page-header-glow {
      position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 600px;
      background: radial-gradient(ellipse, rgba(217,28,181,0.15) 0%, rgba(139,0,212,0.06) 45%, transparent 70%);
      border-radius: 50%; pointer-events: none; animation: glow 5s ease-in-out infinite;
    }
    .eyebrow {
      font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
      color: #FF7A1A; margin-bottom: 20px; font-weight: 600;
    }
    .page-h1 {
      font-family: 'League Spartan', sans-serif;
      font-size: clamp(56px, 10vw, 120px);
      font-weight: 900; line-height: 0.85; color: #f0f0f0;
      letter-spacing: -0.025em;
    }

    /* SERVICE CARDS */
    .services-section { padding: 16px 40px 100px; }
    .services-grid {
      max-width: 1240px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    }
    .svc-card {
      background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px; padding: 40px 32px;
      display: flex; flex-direction: column; gap: 20px;
    }
    .svc-icon {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, rgba(255,122,26,0.1), rgba(139,0,212,0.14));
      border-radius: 14px; border: 1px solid rgba(255,255,255,0.05);
      display: flex; align-items: center; justify-content: center; font-size: 28px;
    }
    .svc-title {
      font-family: 'League Spartan', sans-serif; font-size: 26px; font-weight: 900;
      color: #ebebf5; margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.05;
    }
    .svc-desc { font-size: 15px; line-height: 1.65; color: #484858; }
    .svc-link {
      display: inline-block; font-size: 11px; font-weight: 700; color: #FF7A1A;
      text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase;
      transition: color 0.2s; margin-top: auto;
    }
    .svc-link:hover { color: #D91CB5; }

    /* WHERE WE RIDE */
    .locations { padding: 100px 40px; background: #040406; position: relative; overflow: hidden; }
    .locations-glow {
      position: absolute; bottom: -60px; right: -60px; width: 500px; height: 500px;
      background: radial-gradient(ellipse, rgba(255,122,26,0.07) 0%, transparent 65%);
      border-radius: 50%; pointer-events: none;
    }
    .locations-inner { max-width: 1240px; margin: 0 auto; position: relative; }
    .section-eyebrow {
      font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
      color: #FF7A1A; margin-bottom: 16px; font-weight: 600;
    }
    .section-h2 {
      font-family: 'League Spartan', sans-serif; font-size: clamp(40px, 6vw, 76px);
      font-weight: 900; color: #f0f0f0; line-height: 0.88;
      letter-spacing: -0.02em; max-width: 600px; margin-bottom: 56px;
    }
    .venues-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 48px;
    }
    .venue-item {
      background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
      border-radius: 10px; padding: 20px 22px; display: flex; gap: 12px; align-items: flex-start;
    }
    .venue-dot {
      width: 6px; height: 6px; min-width: 6px;
      background: linear-gradient(135deg, #FF7A1A, #D91CB5);
      border-radius: 50%; display: inline-block; margin-top: 5px; flex-shrink: 0;
    }
    .venue-name { font-size: 14px; color: #555; line-height: 1.4; }
    .btn-grad {
      background: linear-gradient(135deg, #FF7A1A, #D91CB5, #8B00D4);
      color: #fff; text-decoration: none; padding: 16px 36px;
      border-radius: 8px; font-size: 15px; font-weight: 700;
      display: inline-block; transition: opacity 0.2s;
    }
    .btn-grad:hover { opacity: 0.88; }

    /* TIER PROGRAM CARDS */
    .tier-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 14px;
      padding: 32px 28px;
    }
    .tier-card--featured {
      background: linear-gradient(135deg, #FF7A1A, #D91CB5, #8B00D4);
      border: none;
    }
    .tier-card-divider {
      height: 1px;
      margin: 16px 0;
    }
    .tier-card-divider--plain { background: rgba(255,255,255,0.07); }
    .tier-card-divider--featured { background: rgba(255,255,255,0.2); }
    .tier-features {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .tier-feature {
      display: flex;
      gap: 10px;
      align-items: baseline;
    }
    .tier-feature-check--plain { color: #D91CB5; font-weight: 700; flex-shrink: 0; }
    .tier-feature-check--featured { color: #fff; font-weight: 700; flex-shrink: 0; }
