    /* =========================================
       VARIABLES & RESET
    ========================================= */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --black:       #080808;
      --dark:        #111111;
      --darker:      #0a0a0a;
      --red:         #C41E1E;
      --red-dark:    #8B1515;
      --red-glow:    rgba(196, 30, 30, 0.30);
      --white:       #F0F0F0;
      --off-white:   #BBBBBB;
      --gray:        #777777;
      --gray-light:  #999999;
      --surface:     rgba(255,255,255,0.04);
      --surface-h:   rgba(255,255,255,0.08);
      --border:      rgba(255,255,255,0.07);
      --border-red:  rgba(196,30,30,0.35);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Open Sans', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
    img  { max-width: 100%; display: block; }
    a    { text-decoration: none; color: inherit; }

    .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

    /* Typography helpers */
    .section-label {
      font-family: 'Rajdhani', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 5px; text-transform: uppercase;
      color: var(--red); margin-bottom: 12px; display: block;
    }
    .section-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700; text-transform: uppercase;
      line-height: 1.05; color: var(--white);
    }
    .section-title span { color: var(--red); }

    /* Scroll-reveal — only hide elements when JS is confirmed active */
    .js [data-reveal] {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .js [data-reveal].visible { opacity: 1; transform: none; }
    [data-reveal][data-delay="1"] { transition-delay: 0.10s; }
    [data-reveal][data-delay="2"] { transition-delay: 0.20s; }
    [data-reveal][data-delay="3"] { transition-delay: 0.30s; }
    [data-reveal][data-delay="4"] { transition-delay: 0.40s; }
    [data-reveal][data-delay="5"] { transition-delay: 0.50s; }
    [data-reveal][data-delay="6"] { transition-delay: 0.60s; }
    [data-reveal][data-delay="7"] { transition-delay: 0.70s; }

    /* Buttons */
    .btn-red {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--red); color: white;
      font-family: 'Oswald', sans-serif; font-weight: 600;
      font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
      padding: 16px 36px; border-radius: 3px; border: none;
      cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-red:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(196,30,30,0.4);
    }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: white;
      font-family: 'Oswald', sans-serif; font-weight: 600;
      font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
      padding: 16px 36px; border-radius: 3px;
      border: 1px solid rgba(255,255,255,0.28);
      cursor: pointer; transition: all 0.2s;
    }
    .btn-ghost:hover {
      border-color: white; background: rgba(255,255,255,0.08);
      transform: translateY(-2px);
    }
    .btn-white {
      display: inline-flex; align-items: center; gap: 10px;
      background: white; color: var(--red);
      font-family: 'Oswald', sans-serif; font-weight: 700;
      font-size: 16px; letter-spacing: 2px; text-transform: uppercase;
      padding: 18px 48px; border-radius: 3px;
      transition: all 0.2s;
    }
    .btn-white:hover {
      background: var(--black); color: white;
      transform: translateY(-2px);
    }

    /* =========================================
       ANNOUNCEMENT BAR
    ========================================= */
    .ann-bar {
      background: var(--red);
      text-align: center; padding: 11px 24px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600; font-size: 14px;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: white;
    }
    .ann-bar a { color: white; text-decoration: underline; text-underline-offset: 3px; }

    /* =========================================
       NAVIGATION
    ========================================= */
    .nav {
      position: fixed; left: 0; right: 0;
      top: var(--ann-h, 42px);
      z-index: 1000; padding: 22px 0;
      transition: padding 0.3s, background 0.3s, border-color 0.3s,
                  backdrop-filter 0.3s, top 0.3s;
    }
    .nav.scrolled {
      top: 0;
      padding: 14px 0;
      background: rgba(8,8,8,0.90);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex; align-items: center;
      justify-content: space-between; gap: 24px;
    }
    .nav-logo img { height: 54px; width: auto; }
    .nav-links {
      display: flex; align-items: center;
      gap: 4px; list-style: none;
    }
    .nav-links a {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--off-white); padding: 8px 12px; border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: white; background: var(--surface-h); }
    .nav-cta {
      background: var(--red) !important; color: white !important;
      padding: 10px 20px !important; border-radius: 4px;
    }
    .nav-cta:hover { background: var(--red-dark) !important; }

    .hamburger {
      display: none; background: none; border: none;
      color: white; font-size: 24px; cursor: pointer; padding: 4px;
    }

    /* Mobile overlay menu */
    .mobile-menu {
      display: none; position: fixed; inset: 0;
      background: rgba(8,8,8,0.98); z-index: 1100;
      flex-direction: column; align-items: center;
      justify-content: center; gap: 6px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-close {
      position: absolute; top: 24px; right: 28px;
      background: none; border: none;
      color: white; font-size: 30px; cursor: pointer;
    }
    .mobile-menu a {
      font-family: 'Oswald', sans-serif;
      font-size: 30px; font-weight: 500;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--white); padding: 10px 0;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--red); }

    /* =========================================
       HERO
    ========================================= */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; overflow: hidden;
      background: var(--black);
    }
    /* Dark textured BG image */
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('../Assets/C9BDBF71-8B61-46AD-9995-BAFAB96C6138.jpg');
      background-size: cover; background-position: center right;
      background-attachment: fixed;
      opacity: 0.50;
      will-change: transform;
    }
    /* Gradient overlay */
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        115deg,
        rgba(8,8,8,0.92) 0%,
        rgba(8,8,8,0.65) 38%,
        rgba(8,8,8,0.08) 65%,
        rgba(8,8,8,0.45) 100%
      );
    }
    /* Animated vertical red slashes */
    .hero-slashes {
      position: absolute; right: 80px; top: 0; bottom: 0;
      display: flex; gap: 18px; pointer-events: none;
    }
    .slash {
      width: 3px; background: var(--red);
      transform: skewX(-6deg);
      animation: slashPulse 3s ease-in-out infinite;
    }
    .slash:nth-child(1) { opacity: 0.7; animation-delay: 0s; }
    .slash:nth-child(2) { opacity: 0.35; animation-delay: 0.4s; }
    .slash:nth-child(3) { opacity: 0.15; animation-delay: 0.8s; }
    @keyframes slashPulse {
      0%, 100% { opacity: 0.7; } 50% { opacity: 0.4; }
    }
    .slash:nth-child(2) { animation-name: slashPulse2; }
    @keyframes slashPulse2 {
      0%, 100% { opacity: 0.35; } 50% { opacity: 0.15; }
    }
    .slash:nth-child(3) { animation-name: slashPulse3; }
    @keyframes slashPulse3 {
      0%, 100% { opacity: 0.15; } 50% { opacity: 0.06; }
    }

    .hero-content {
      position: relative; z-index: 2;
      padding: calc(120px + var(--ann-h, 42px)) 0 100px;
    }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
    }
    .hero-eyebrow::before {
      content: ''; display: block; width: 44px;
      height: 2px; background: var(--red); flex-shrink: 0;
    }
    .hero-eyebrow span {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 13px; letter-spacing: 5px;
      text-transform: uppercase; color: var(--red);
    }
    .hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(60px, 9vw, 112px);
      font-weight: 700; text-transform: uppercase;
      line-height: 0.93; color: white;
      margin-bottom: 30px;
    }
    .hero-title .red { color: var(--red); display: block; }
    .hero-sub {
      font-size: 16px; color: var(--off-white);
      max-width: 460px; line-height: 1.75;
      margin-bottom: 40px;
    }
    .hero-pillars {
      display: flex; flex-wrap: wrap; gap: 28px;
      margin-bottom: 44px;
    }
    .pillar {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 13px; letter-spacing: 3px;
      text-transform: uppercase; color: var(--off-white);
      display: flex; align-items: center; gap: 10px;
    }
    .pillar::before {
      content: ''; width: 7px; height: 7px;
      background: var(--red); transform: rotate(45deg);
      flex-shrink: 0;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-meta {
      display: flex; flex-wrap: wrap; align-items: center;
      gap: 32px; margin-top: 64px; padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .hero-meta-item {
      display: flex; align-items: center; gap: 12px;
    }
    .hero-meta-item i { color: var(--red); font-size: 18px; }
    .hero-meta-item span {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 14px; letter-spacing: 1px; color: var(--off-white);
    }

    /* =========================================
       MARQUEE BAND
    ========================================= */
    .marquee-wrap {
      background: var(--red); padding: 16px 0; overflow: hidden;
    }
    .marquee-track {
      display: flex; gap: 0;
      animation: marquee 24s linear infinite; white-space: nowrap;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .marquee-item {
      font-family: 'Oswald', sans-serif; font-weight: 600;
      font-size: 15px; letter-spacing: 3px; text-transform: uppercase;
      color: rgba(255,255,255,0.9); padding: 0 40px;
      display: inline-flex; align-items: center; gap: 40px; flex-shrink: 0;
    }
    .marquee-item::after {
      content: '◆'; color: rgba(255,255,255,0.45); font-size: 9px;
    }

    /* =========================================
       ABOUT
    ========================================= */
    .about { padding: 130px 0; background: var(--darker); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .about-img-wrap { position: relative; }
    .about-img {
      width: 100%; aspect-ratio: 16/10; object-fit: cover;
      border-radius: 6px;
    }
    .about-img-frame {
      position: absolute; top: -20px; left: -20px;
      right: 20px; bottom: 20px;
      border: 2px solid rgba(196,30,30,0.45);
      border-radius: 4px; pointer-events: none;
    }
    .about-badge {
      position: absolute; bottom: -24px; right: -24px;
      width: 130px; height: 130px; background: var(--red);
      border-radius: 50%; display: flex; flex-direction: column;
      align-items: center; justify-content: center; text-align: center;
      box-shadow: 0 0 40px rgba(196,30,30,0.5);
    }
    .about-badge .num {
      font-family: 'Oswald', sans-serif; font-size: 38px;
      font-weight: 700; color: white; line-height: 1;
    }
    .about-badge .lbl {
      font-family: 'Rajdhani', sans-serif; font-size: 11px;
      font-weight: 700; letter-spacing: 1px;
      color: rgba(255,255,255,0.8); text-transform: uppercase;
      text-align: center; padding: 0 12px; margin-top: 4px;
    }
    .about-text { padding-right: 20px; }
    .about-text p {
      color: var(--off-white); font-size: 15px;
      line-height: 1.85; margin-top: 24px;
    }
    .about-features {
      margin-top: 44px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
    }
    .feat {
      display: flex; gap: 16px; align-items: flex-start;
    }
    .feat-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: rgba(196,30,30,0.1);
      border: 1px solid var(--border-red);
      border-radius: 5px; display: flex;
      align-items: center; justify-content: center;
      color: var(--red); font-size: 17px;
    }
    .feat-body strong {
      display: block; font-family: 'Rajdhani', sans-serif;
      font-weight: 700; font-size: 15px; color: white;
    }
    .feat-body span {
      display: block; font-size: 13px; color: var(--gray); margin-top: 3px;
    }

    /* =========================================
       PROGRAMS
    ========================================= */
    .programs { padding: 130px 0; background: var(--black); }
    .programs-hdr {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 64px;
      flex-wrap: wrap; gap: 24px;
    }
    .programs-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .prog-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 6px; padding: 36px 28px;
      position: relative; overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, background 0.3s;
    }
    .prog-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--red);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s ease;
    }
    .prog-card:hover {
      border-color: var(--border-red);
      transform: translateY(-8px);
      background: rgba(196,30,30,0.04);
    }
    .prog-card:hover::after { transform: scaleX(1); }
    .prog-card.featured {
      border-color: var(--border-red);
      background: rgba(196,30,30,0.06);
    }
    .prog-card.featured::after { transform: scaleX(1); }
    .prog-icon {
      width: 52px; height: 52px; border-radius: 6px;
      background: rgba(196,30,30,0.12);
      border: 1px solid var(--border-red);
      display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 22px; margin-bottom: 24px;
    }
    .prog-name {
      font-family: 'Oswald', sans-serif; font-size: 21px;
      font-weight: 600; text-transform: uppercase;
      color: white; margin-bottom: 12px;
    }
    .prog-desc {
      font-size: 13.5px; color: var(--gray-light);
      line-height: 1.72; margin-bottom: 18px;
    }
    .prog-meta {
      font-family: 'Rajdhani', sans-serif; font-size: 12px;
      font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--red);
    }

    /* =========================================
       STATS
    ========================================= */
    .stats {
      background: var(--darker);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      background: var(--border); gap: 1px;
    }
    .stat {
      background: var(--darker); padding: 60px 32px;
      text-align: center;
    }
    .stat-num {
      font-family: 'Oswald', sans-serif; font-size: 68px;
      font-weight: 700; color: var(--red); line-height: 1; display: block;
    }
    .stat-suf { font-size: 40px; }
    .stat-lbl {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 13px; letter-spacing: 3.5px; text-transform: uppercase;
      color: var(--gray); margin-top: 10px; display: block;
    }

    /* =========================================
       INSTRUCTORS
    ========================================= */
    .instructors { padding: 130px 0; background: var(--black); }
    .instructors-hdr { text-align: center; margin-bottom: 64px; }
    .instructors-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    }
    .inst-card {
      position: relative; border-radius: 6px;
      overflow: hidden; aspect-ratio: 3/4;
      background: var(--surface); cursor: default;
    }
    .inst-card img {
      width: 100%; height: 100%; object-fit: cover;
      filter: grayscale(35%) contrast(1.1) brightness(0.88);
      transition: transform 0.55s ease, filter 0.55s ease;
    }
    .inst-card:hover img {
      transform: scale(1.06);
      filter: grayscale(0%) contrast(1.1) brightness(0.95);
    }
    .inst-base {
      position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(8,8,8,0.96) 0%,
        rgba(8,8,8,0.55) 38%,
        rgba(8,8,8,0) 65%
      );
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 22px 18px;
      transition: opacity 0.3s;
    }
    .inst-card:hover .inst-base { opacity: 0; }
    .inst-hover {
      position: absolute; inset: 0;
      background: rgba(8,8,8,0.93);
      padding: 24px 18px;
      display: flex; flex-direction: column;
      justify-content: center; opacity: 0;
      transition: opacity 0.35s ease;
      overflow-y: auto;
    }
    .inst-card:hover .inst-hover { opacity: 1; }
    .inst-name {
      font-family: 'Oswald', sans-serif; font-size: 17px;
      font-weight: 600; text-transform: uppercase;
      color: white; line-height: 1.2;
    }
    .inst-role {
      font-family: 'Rajdhani', sans-serif; font-size: 11px;
      font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--red); margin-top: 4px;
    }
    .inst-bio {
      font-size: 11.5px; color: var(--off-white);
      line-height: 1.6; margin-top: 12px; opacity: 0.88;
    }

    /* =========================================
       PRICING
    ========================================= */
    .pricing { padding: 130px 0; background: var(--darker); }
    .pricing-hdr { text-align: center; margin-bottom: 64px; }
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; max-width: 1000px; margin: 0 auto;
    }
    .price-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 8px; padding: 44px 32px;
      text-align: center; position: relative;
      transition: transform 0.3s, border-color 0.3s, background 0.3s;
    }
    .price-card:hover { transform: translateY(-8px); }
    .price-card.featured {
      border-color: var(--red);
      background: rgba(196,30,30,0.06);
    }
    .price-badge {
      display: none; position: absolute; top: -13px;
      left: 50%; transform: translateX(-50%);
      background: var(--red); color: white;
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      padding: 4px 18px; border-radius: 20px; white-space: nowrap;
    }
    .price-card.featured .price-badge { display: block; }
    .price-name {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 13px; letter-spacing: 3px;
      text-transform: uppercase; color: var(--gray); margin-bottom: 20px;
    }
    .price-amount {
      font-family: 'Oswald', sans-serif; font-size: 56px;
      font-weight: 700; color: white; line-height: 1;
    }
    .price-amount sup {
      font-size: 26px; vertical-align: top;
      margin-top: 10px; display: inline-block;
    }
    .price-period {
      font-family: 'Rajdhani', sans-serif; font-size: 13px;
      color: var(--gray); letter-spacing: 1px;
      margin-top: 6px; margin-bottom: 28px;
    }
    .price-div {
      width: 40px; height: 2px; background: var(--red);
      margin: 0 auto 28px; opacity: 0.5;
    }
    .price-features {
      list-style: none; margin-bottom: 36px; text-align: left;
    }
    .price-features li {
      font-size: 14px; color: var(--off-white);
      padding: 9px 0;
      display: flex; align-items: center; gap: 11px;
      border-bottom: 1px solid var(--border);
    }
    .price-features li i { color: var(--red); font-size: 11px; flex-shrink: 0; }

    /* =========================================
       ESA SECTION
    ========================================= */
    .esa {
      padding: 100px 0;
      background: var(--black);
      border-top: 1px solid var(--border);
    }
    .esa-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .esa-text p { color: var(--off-white); font-size: 15px; line-height: 1.85; margin-top: 24px; }
    .esa-cards {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    }
    .esa-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 6px; padding: 28px 22px;
      transition: border-color 0.3s;
    }
    .esa-card:hover { border-color: var(--border-red); }
    .esa-card i { color: var(--red); font-size: 24px; margin-bottom: 14px; }
    .esa-card strong {
      display: block; font-family: 'Oswald', sans-serif;
      font-size: 16px; font-weight: 600; text-transform: uppercase;
      color: white; margin-bottom: 8px;
    }
    .esa-card span { font-size: 13px; color: var(--gray); line-height: 1.6; }

    /* =========================================
       CTA BANNER
    ========================================= */
    .cta-banner {
      background: var(--red); padding: 110px 0;
      position: relative; overflow: hidden; text-align: center;
    }
    .cta-banner::before {
      content: 'ETHOS';
      position: absolute; right: -80px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Oswald', sans-serif;
      font-size: 260px; font-weight: 900;
      color: rgba(0,0,0,0.10); text-transform: uppercase;
      pointer-events: none; line-height: 1; user-select: none;
    }
    .cta-banner .section-label { color: rgba(255,255,255,0.65); }
    .cta-banner .section-title { color: white; }
    .cta-banner p {
      color: rgba(255,255,255,0.78); font-size: 16px;
      max-width: 520px; margin: 20px auto 44px; line-height: 1.7;
    }
    .cta-banner .cta-inner { position: relative; z-index: 1; }

    /* =========================================
       CONTACT
    ========================================= */
    .contact { padding: 130px 0; background: var(--darker); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .contact-info { padding-right: 20px; }
    .c-info-item { display: flex; gap: 20px; margin-bottom: 36px; }
    .c-icon {
      width: 50px; height: 50px; flex-shrink: 0;
      background: rgba(196,30,30,0.1);
      border: 1px solid var(--border-red);
      border-radius: 6px; display: flex;
      align-items: center; justify-content: center;
      color: var(--red); font-size: 18px;
    }
    .c-body strong {
      display: block; font-family: 'Rajdhani', sans-serif;
      font-weight: 700; font-size: 12px; letter-spacing: 3px;
      text-transform: uppercase; color: var(--gray); margin-bottom: 7px;
    }
    .c-body a, .c-body span {
      color: var(--white); font-size: 15px; transition: color 0.2s;
    }
    .c-body a:hover { color: var(--red); }

    .contact-form {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 8px; padding: 44px;
    }
    .contact-form h3 {
      font-family: 'Oswald', sans-serif; font-size: 22px;
      font-weight: 600; text-transform: uppercase;
      color: white; margin-bottom: 28px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block; font-family: 'Rajdhani', sans-serif;
      font-weight: 700; font-size: 11px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gray); margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; background: rgba(8,8,8,0.8);
      border: 1px solid var(--border); border-radius: 4px;
      padding: 13px 16px; color: white;
      font-family: 'Open Sans', sans-serif; font-size: 14px;
      transition: border-color 0.2s; appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--gray); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none; border-color: var(--red);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }

    /* =========================================
       FOOTER
    ========================================= */
    .footer { background: var(--darker); border-top: 1px solid var(--border); padding: 72px 0 32px; }
    .footer-top {
      display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
      gap: 60px; padding-bottom: 52px;
      border-bottom: 1px solid var(--border);
    }
    .footer-brand img { height: 48px; margin-bottom: 20px; }
    .footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.7; max-width: 260px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 24px; }
    .f-social {
      width: 36px; height: 36px; background: var(--surface-h);
      border: 1px solid var(--border); border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gray); font-size: 14px; transition: all 0.2s;
    }
    .f-social:hover { background: var(--red); border-color: var(--red); color: white; }
    .footer-col h4 {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
      color: white; margin-bottom: 22px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 11px; }
    .footer-links a { font-size: 14px; color: var(--gray); transition: color 0.2s; }
    .footer-links a:hover { color: white; }
    .footer-bottom {
      display: flex; justify-content: space-between;
      align-items: center; padding-top: 32px;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom span { font-size: 13px; color: var(--gray); }
    .footer-bottom a { color: var(--red); }

    /* =========================================
       RESPONSIVE
    ========================================= */
    @media (max-width: 1100px) {
      .instructors-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: block; }
      .about-grid { grid-template-columns: 1fr; gap: 80px; }
      .about-img-wrap { max-width: 420px; }
      .programs-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .instructors-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
      .esa-inner { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .hero-slashes { display: none; }
      /* Disable parallax - broken on iOS Safari */
      .hero-bg, .page-hero-bg { background-attachment: scroll !important; }
      /* Stat numbers too large at 2-col */
      .stat-num { font-size: 48px; }
      .stat-suf { font-size: 30px; }
      .stat { padding: 40px 20px; }
      /* Contact form */
      .contact-form { padding: 28px 24px; }
      /* About section padding */
      .about { padding: 80px 0; }
      .instructors { padding: 80px 0; }
      .pricing { padding: 80px 0; }
      .contact { padding: 80px 0; }
      .programs { padding: 80px 0; }
    }
    @media (max-width: 600px) {
      .container { padding: 0 20px; }
      .programs-grid { grid-template-columns: 1fr; }
      .about-features { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn-red,
      .hero-actions .btn-ghost { text-align: center; justify-content: center; }
      .footer-top { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .esa-cards { grid-template-columns: 1fr; }
      .hero-meta { gap: 20px; }
      /* Nav — smaller logo + tighter padding on mobile */
      .nav { padding: 14px 0; }
      .nav-logo img { height: 40px; }
      /* Hero — top-align on mobile so flex centering doesn't add unwanted offset */
      .hero { align-items: flex-start; }
      /* Hero content — fixed padding: ann-bar (~52px) + nav (~68px) + tight gap */
      .hero-content { padding-top: 88px; padding-bottom: 60px; }
      /* Hero title - 60px min is too large on phones */
      .hero-title { font-size: clamp(42px, 11vw, 112px); }
      /* Stats single column on very small screens */
      .stats-grid { grid-template-columns: 1fr; }
      .stat-num { font-size: 56px; }
      .stat-suf { font-size: 34px; }
      /* Announcement bar wrap */
      .ann-bar { font-size: 12px; padding: 10px 16px; }
      /* Footer bottom stack */
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      /* Section padding */
      .about, .programs, .instructors, .pricing, .contact { padding: 60px 0; }
      .cta-banner { padding: 72px 0; }
    }
    @media (max-width: 400px) {
      .container { padding: 0 16px; }
      .hero-title { font-size: 38px; }
      .nav-logo img { height: 36px; }
      .hero-content { padding-top: 84px; }
    }


/* =========================================
   PULSATING RED GLOW — LHI Image
========================================= */
@keyframes redAura {
  0%, 100% {
    box-shadow:
      0 0 18px  5px  rgba(196,30,30,0.32),
      0 0 50px  16px rgba(196,30,30,0.16),
      0 0 90px  30px rgba(196,30,30,0.07);
  }
  50% {
    box-shadow:
      0 0 30px  10px rgba(196,30,30,0.64),
      0 0 76px  26px rgba(196,30,30,0.30),
      0 0 130px 46px rgba(196,30,30,0.13);
  }
}

.about-img,
.story-img {
  animation: redAura 3s ease-in-out infinite;
}


/* =========================================
   PRICING — CLEAN REDESIGN
   Overrides original price-card styles
========================================= */
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 44px 36px;
  display: flex; flex-direction: column;
  text-align: left; position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.45);
}
.price-card.featured {
  border-color: var(--red);
  background: rgba(196,30,30,0.04);
}
.price-badge {
  display: none; position: absolute; top: -13px;
  left: 50%; transform: translateX(-50%);
  background: var(--red); color: white;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 18px; border-radius: 20px; white-space: nowrap;
}
.price-card.featured .price-badge { display: block; }

/* New element classes */
.pc-tag {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 10px;
}
.price-card.featured .pc-tag { color: var(--red); }

.pc-name {
  font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700;
  text-transform: uppercase; color: white; margin-bottom: 28px; line-height: 1.1;
}

.pc-price { display: flex; align-items: flex-start; gap: 3px; margin-bottom: 4px; }
.pc-dollar {
  font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 600;
  color: var(--red); margin-top: 12px; line-height: 1;
}
.pc-amount {
  font-family: 'Oswald', sans-serif; font-size: 76px; font-weight: 700;
  color: white; line-height: 1;
}

.pc-period {
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; color: var(--gray); margin-bottom: 28px;
}

.pc-line { height: 1px; background: var(--border); margin-bottom: 24px; }

.pc-features {
  list-style: none; margin-bottom: 36px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.pc-features li {
  font-size: 14px; color: var(--off-white);
  display: flex; align-items: center; gap: 12px; line-height: 1.45;
}
.pc-features li::before {
  content: ''; width: 5px; height: 5px; flex-shrink: 0;
  background: var(--red); border-radius: 50%;
}
